Posts by Ailton Bayma • 158 points
5 posts
-
1
votes2
answers6656
viewsA: Help with SQL error 1064
There are syntax errors in table creation and data insertion. CREATE TABLE login(nome varchar(10),senha varchar(10)); INSERT into login VALUES ('root','root'); Tutorial create table -…
-
7
votes2
answers221
viewsA: Can you leave a commit only local?
The ideal is to separate the development of new functionalities by branches. That way, you avoid this kind of problem. A methodology for development across different branches is the Git Flow:…
-
2
votes4
answers7933
viewsA: How to upgrade Node.js from version 8 to 10 on Linux Ubuntu, via SSH?
Go to /etc/apt/sources.list. d , and check the Node.sourcelist file for any reference to the node_8.x. If you do, delete, make Curl to version 10 again by default, apt update, and then apt install…
-
1
votes1
answer178
viewsA: Force a shell script to run in the terminal
Depending on the graphical interface, right-clicking and going into properties you can direct to what you want to open by default, similar to what exists in Windows as well.
-
0
votes2
answers741
viewsA: Is it possible to install Python on Windows 10 without administrator privileges?
You can install in any directory, you will only have problems adding the path installed in the system path variable. For this I believe that adding the user variables works in a good. On my…