The Most Commonly Used Phrases in Programming
Who wrote this shit? Oh I did. Let’s see if this works. That didn’t work. This doesn’t make any sense. Just ship it.
sharing the power of code
sharing the power of code
Who wrote this shit? Oh I did. Let’s see if this works. That didn’t work. This doesn’t make any sense. Just ship it.
Test and restart an nginx configuration change The reload will not happen if the test fails. sudo nginx -t && service nginx reload or, on a bitnami image: sudo nginx -t && sudo restart nginx Redirect all subdomains…
This outputs your stuff in a folder called ‘packageName’: tar -xvzf packageName.tar.gz This can help tell you what version of linux or at least linux kernel you are running: uname -a Find a process and kill it: Run…
Change Drive from Command Line You are here: D:\ You want to go here: C:\ Type just: C: and hit enter. You are here: C:\Windows\System32\drivers\ You want to go here: C:\ Type: C:\ and hit enter. Notice you have to…
Log into mysql: (enter password on next prompt) Show all databases on server: To reset an auto_increment field to 1: To load a local csv file into an empty existing table: (This assumes you’ve already created your empty table with…