The popular open-source contract for web professionals by Stuff & Nonsense
- Originally published: 23rd December 2008
- Revised date: March 15th 2016
- Original post
| <?php | |
| /* | |
| Additional notes for this gist: | |
| - You'll see that half of the constants are commented out. Nice to | |
| have them there when needed. | |
| - Using a non-standard WP directory structure. | |
| - See BuB note below. Possible items to change during migration: | |
| - $table_prefix | |
| - $dbname, $dbuser, $dbpass | |
| */ |
| #!/bin/bash | |
| ## Recursively delete all .DS_Store files in a directory on macOS. | |
| # ! WARNING: You assume any and all liability ! | |
| # Open your terminal app of choice | |
| # cd to folder | |
| cd /path/to/folder |
| namespace YourNamespace; | |
| class Minify { | |
| /* | |
| Use: | |
| Minify::html( string ) | |
| Minify::css( string ) |
| <?php | |
| // Here is a sample of the URLs this regex matches: (there can be more content after the given URL that will be ignored) | |
| // http://youtu.be/dQw4w9WgXcQ | |
| // http://www.youtube.com/embed/dQw4w9WgXcQ | |
| // http://www.youtube.com/watch?v=dQw4w9WgXcQ | |
| // http://www.youtube.com/?v=dQw4w9WgXcQ | |
| // http://www.youtube.com/v/dQw4w9WgXcQ | |
| // http://www.youtube.com/e/dQw4w9WgXcQ | |
| // http://www.youtube.com/user/username#p/u/11/dQw4w9WgXcQ |