Posts by rcmachado • 66 points
3 posts
-
1
votes1
answer724
viewsA: Vagrant - Changing the ssh connection password with the machine
According to the documentation for Vagrantfile, the value of the key config.ssh.password is used when logging into the virtual machine via SSH and not to set the password itself. The password is set…
-
1
votes1
answer182
viewsA: Problems with Python performance testing
In the example code you can only process one request at a time (there is no parallelism). In other words, the Python interpreter will be idle while waiting for the data to be sent to the client. In…
-
3
votes1
answer113
viewsA: Using two statment at the same time without giving "Fatal error: bind_param"
The PHP error message fools a little. You need to "close" the first statement by calling the method close after fetch. In this case, your code would look something like this: $stmt = $mysqli ->…