The Laracasts PHPStorm theme.
https://www.dropbox.com/s/f4l3qc2falnvq61/laracasts_theme_updated.icls
(Add to ~/Library/Preferences/WebIde80/colors on Mac.)
The Laracasts PHPStorm theme.
https://www.dropbox.com/s/f4l3qc2falnvq61/laracasts_theme_updated.icls
(Add to ~/Library/Preferences/WebIde80/colors on Mac.)
| /** | |
| * Advanced Window Snap | |
| * Snaps the Active Window to one of nine different window positions. | |
| * | |
| * @author Andrew Moore <[email protected]> | |
| * @version 1.0 | |
| */ | |
| /** | |
| * SnapActiveWindow resizes and moves (snaps) the active window to a given position. | 
Taking Gmail as an example, put the following into /etc/postfix/main.cf.
 relayhost = [smtp.gmail.com]:587
 smtp_sasl_auth_enable = yes
 smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd
 smtp_sasl_security_options = noanonymous
 smtp_sasl_mechanism_filter = plain
 smtp_tls_CAfile = /etc/pki/tls/certs/ca-bundle.crt
 smtp_use_tls = yes
smtp_tls_security_level = encrypt
| { | |
| "name": "tomjn/composer-webtest", | |
| "description": "tests for web based composer uis", | |
| "license": "GPL-V2.0", | |
| "authors": [ | |
| { | |
| "name": "Tom J Nowell", | |
| "email": "[email protected]" | |
| } | |
| ], | 
| <?php function validate_youtube($videoid) { return strpos ( get_headers ( "http://gdata.youtube.com/feeds/api/videos/" . $videoid, 1) [0], '200') !== FALSE; } ?> | 
| # http://stackoverflow.com/questions/354763/common-mysql-fields-and-their-appropriate-data-types | |
| INT(11) for anything that is either an ID or references another ID | |
| DATETIME for time stamps | |
| VARCHAR(255) for anything guaranteed to be under 255 characters (page titles, names, etc) | |
| TEXT for pretty much everything else. | |
| VARCHAR(255) for emails | |
| TIMESTAMP for dates, tracking creation or changes | |
| DECIMAL(3,2) (unsigned) for 5-star rating value | 
| # ----------------------------------------------------------------- | |
| # .gitignore for WordPress | |
| # Bare Minimum Git | |
| # http://ironco.de/bare-minimum-git/ | |
| # ver 20150227 | |
| # | |
| # This file is tailored for a WordPress project | |
| # using the default directory structure | |
| # | |
| # This file specifies intentionally untracked files to ignore | 
| <?php | |
| namespace WCM; | |
| # USES PHP 5.3 + Closures | |
| // No white surrounding space | |
| $data = array_map( 'trim', $_POST['foo'] ); | |
| $data = filter_var_array( $data, array( |