This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Demo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| ### USAGE | |
| #Require the autoload in your bootstrap, and use the Application to start your app | |
| require __DIR__ . '/../Autoload.php'; | |
| $app = new Fastpress\Application; | |
| $app->get('/hello/{:name}', function($name) use ($app){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### USAGE | |
| Require the autoload in your bootstrap, and use the Application to start your app | |
| require __DIR__ . '/../Autoload.php'; | |
| $app = new Fastpress\Application; | |
| $app->get('/hello/{:name}', function($name) use ($app){ | |
| echo 'Hello ' $app->escape($name); // Hello world | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class SecureSessionHandler extends SessionHandler { | |
| protected $key, $name, $cookie; | |
| public function __construct($key, $name = 'MY_SESSION', $cookie = []) | |
| { | |
| $this->key = $key; | |
| $this->name = $name; |
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| user nginx; | |
| worker_processes 4; | |
| #error_log logs/error.log; | |
| #error_log logs/error.log notice; | |
| #error_log logs/error.log info; | |
| #pid logs/nginx.pid; | |
| events { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| server { | |
| listen 80; | |
| server_name example.com dev.example.com; | |
| root /var/www/sites/public/dev.example/; | |
| index index.html index.htm index.php; | |
| access_log /var/log/nginx/example.com_access.log; | |
| error_log /var/log/nginx/example.com_error.log; | |
| charset utf-8; |