Update: please note that I have since switched to using a set of bash scripts instead of poluting the Git repository with git svn.
Author: Kaspars Dambis
kaspars.net / @konstruktors
| // ==UserScript== | |
| // @name Harvest Timer Growl Reminder | |
| // @namespace http://harvestapp.com | |
| // @description Displays Growl notifications at a user defined interval, reminding you to track your time. | |
| // @include * | |
| // @author Mike Green | |
| // @version 0.1.1 | |
| // ==/UserScript== | |
| (function () { |
| <?php | |
| /* | |
| Plugin Name: Custom-Post-Type Base | |
| Plugin URI: http://pmg.co/ | |
| Description: Dynamically change your custom post type slugs | |
| Version: n/a | |
| Author: Christopher Davis | |
| Author URI: http://pmg.co/people/chris | |
| License: GPL2/Creative Commons | |
| */ |
| #!/bin/bash | |
| # cd into the directory | |
| cd ~/gitsync/github-wordpress-sync/; | |
| # Make sure we are not already running | |
| if [ -f .sync-running ];then | |
| if test ! `find ".sync-running" -mmin +10`;then | |
| # Currently running, but not stuck | |
| exit 1; | |
| fi | |
| fi; |
Update: please note that I have since switched to using a set of bash scripts instead of poluting the Git repository with git svn.
Author: Kaspars Dambis
kaspars.net / @konstruktors
| <?php | |
| /** | |
| * Plugin Name: Add Blog and User ID on Network | |
| * Plugin URI: http://wpengineer.com/2188/view-blog-id-in-wordpress-multisite/ | |
| * Description: View Blog and User ID in WordPress Multisite | |
| * Version: 1.0.0 | |
| * Author: Frank Bültge | |
| * Author URI: http://bueltge.de | |
| * License: GPLv3 | |
| */ |
| <?php | |
| /** | |
| * Plugin Name: Deny Giant Image Uploads | |
| * Description: Prevents Uploads of images greater than 3.2MP | |
| * Author: TJNowell | |
| * Author URI: http://tomjn.com | |
| * Plugin URI: http://tomjn.com/164/clients-who-upload-huge-camera-photos-decompression-bombs/ | |
| * Version: 1.1 | |
| */ |
| <?php | |
| /** | |
| * Plugin Name: WP Composer | |
| * Require: something @ >=4.0, another @ latest | |
| */ | |
| add_action('extra_plugin_headers', function ($headers) { | |
| $headers['Require'] = 'Require'; | |
| return $headers; | |
| }); |
| <?php | |
| defined( 'ABSPATH' ) OR exit; | |
| /** | |
| * Plugin Name: (WCM) PHPMailer Exceptions & SMTP | |
| * Description: WordPress by default returns <code>FALSE</code> instead of an <code>Exception</code>. This plugin fixes that. | |
| */ | |
| add_action( 'phpmailer_init', 'WCMphpmailerException' ); | |
| function WCMphpmailerException( $phpmailer ) | |
| { |
| <?php | |
| defined( 'ABSPATH' ) OR exit; | |
| /** | |
| * Plugin Name: (WCM) Faster Admin Post Lists | |
| * Description: Reduces the queried fields inside WP_Query for WP_Post_List_Table screens | |
| * Author: Franz Josef Kaiser <[email protected]> | |
| * AuthorURL: http://unserkaiser.com | |
| * License: MIT | |
| */ |
| <?php | |
| namespace WCMFields; | |
| defined( 'ABSPATH' ) OR exit; | |
| /** | |
| * Plugin Name: (WCM) Fields | |
| * Plugin URl: | |
| * Description: <strong>Needs PHP 5.3+!</strong> | |
| * Author: wecodemore, Franz Josef Kaiser | |
| * Author URl: http://unserkaiser.com |