Magic words:
psql -U postgresMost \d commands support additional param of __schema__.name__ and accept wildcards like *.*
\q: Quit/Exit\c __database__: Connect to a database\d __table__: Show table definition including triggers
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| [ | |
| {name: 'Afghanistan', code: 'AF'}, | |
| {name: 'Åland Islands', code: 'AX'}, | |
| {name: 'Albania', code: 'AL'}, | |
| {name: 'Algeria', code: 'DZ'}, | |
| {name: 'American Samoa', code: 'AS'}, | |
| {name: 'AndorrA', code: 'AD'}, | |
| {name: 'Angola', code: 'AO'}, | |
| {name: 'Anguilla', code: 'AI'}, | |
| {name: 'Antarctica', code: 'AQ'}, |
Magic words:
psql -U postgresMost \d commands support additional param of __schema__.name__ and accept wildcards like *.*
\q: Quit/Exit\c __database__: Connect to a database\d __table__: Show table definition including triggers| <?php | |
| class SecureSessionHandler extends SessionHandler { | |
| protected $key, $name, $cookie; | |
| public function __construct($key, $name = 'MY_SESSION', $cookie = []) | |
| { | |
| $this->key = $key; | |
| $this->name = $name; |
| #!/bin/bash | |
| set -e | |
| set -x | |
| if [ $1 == "master" ] | |
| then | |
| wget https://github.com/php/php-src/archive/master.zip -q -O master.zip | |
| rm -rf php-src-master | |
| unzip -q master.zip |
| """ An example of a Linux daemon written in Python. | |
| Based on http://www.jejik.com/articles/2007/02/a_simple_unix_linux_daemon_in_python/ | |
| The changes are: | |
| 1 - Uses file open context managers instead of calls to file(). | |
| 2 - Forces stdin to /dev/null. stdout and stderr go to log files. | |
| 3 - Uses print instead of sys.stdout.write prior to pointing stdout to the log file. | |
| 4 - Omits try/excepts if they only wrap one error message w/ another. |
| <?php | |
| function getJsonPage($url) | |
| { | |
| $ch = curl_init(); | |
| curl_setopt($ch, CURLOPT_URL, $url); | |
| curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | |
| $result = curl_exec($ch); |
| # lol redhat | |
| su | |
| # Install deps | |
| yum install libyaml libyaml-devel openssl libxml2-devel bison libxslt-devel openssl-devel tcl tk libffi tcl-devel tk-devel libffi-devel | |
| # Download Ruby | |
| cd /usr/local/src/ | |
| wget http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p392.tar.gz | |
| tar -xvzf ruby-1.9.3-p392.tar.gz |