Perform DNS Lookup:
https://github.com/phallstrom/AlfredDig
WordPress Function Reference:
http://www.alfredforum.com/topic/2153-search-the-wordpress-function-reference/
Send URL:
| # See https://github.com/jchonig/pfsense_scripts/blob/main/scripts/gw_leds |
| #!/bin/sh | |
| # multi SSID with VLAN script, for ASUS AC86U with merlin | |
| # | |
| # setup before hand: | |
| # set "router" to "AP Mode" | |
| # this will put all ports and wireless in br0 | |
| # create 2 guest network | |
| # enable Administration => System => Enable JFFS custom scripts and configs | |
| # put this script in /jffs/scripts/, name should be "services-start" |
| ## within current branch, squashes all commits that are ahead of master down into one | |
| ## useful if you merged with upstream in the middle of your commits (rebase could get very ugly if this is the case) | |
| ## commit any working changes on branch "mybranchname", then... | |
| git checkout master | |
| git checkout -b mybranchname_temp | |
| git merge --squash mybranchname | |
| git commit -am "Message describing all squashed commits" | |
| git branch -m mybranchname mybranchname_unsquashed | |
| git branch -m mybranchname |
| 55 westonruter | |
| 11 DrewAPicture | |
| 11 ocean90 | |
| 10 afercia | |
| 8 obenland | |
| 6 celloexpressions | |
| 4 adamsilverstein | |
| 3 melchoyce | |
| 3 sergeybiryukov | |
| 2 boonebgorges |
| location ~* \.(jpe?g|gif|png)$ { | |
| try_files $uri @photon; | |
| } | |
| location @photon { | |
| rewrite ^(.*)-([0-9]+)x([0-9]+)\.(jpe?g|gif|png)$ http://i0.wp.com/$host$1.$4?resize=$2,$3; | |
| rewrite . http://i0.wp.com/$host$request_uri; | |
| } |
Perform DNS Lookup:
https://github.com/phallstrom/AlfredDig
WordPress Function Reference:
http://www.alfredforum.com/topic/2153-search-the-wordpress-function-reference/
Send URL:
| #!/bin/sh | |
| # A script that leverages Trac XML-RPC (I know, I know) to upload patches. | |
| # | |
| # This script is written specifically for the Mac, in that it reads from | |
| # your keychain to derive your SVN password. You can change the SVN_PASS | |
| # line below if you wanted to pull from ~/.svn/ or what not. | |
| # | |
| # Basic usage: `trac-attach.sh 12345` uploads a patch to ticket #12345, | |
| # using the name 12345.diff. If there exists a 12345.diff, the patch is |
| <?php | |
| /* | |
| Plugin Name: Secret Place | |
| Plugin URI: http://github.com/getsource | |
| Description: Make your dashboard your secret place. | |
| Author: Mike Schroder and Jason Cosper | |
| Version: 0.1 | |
| Author URI: http://www.getsource.net/ | |
| */ |
| <?php | |
| error_reporting(-1); | |
| require( 'wp-load.php' ); | |
| require_once( ABSPATH . WPINC . '/class-wp-image-editor.php' ); | |
| require_once( ABSPATH . WPINC . '/class-wp-image-editor-imagick.php' ); | |
| /** | |
| * Tosses Imagick methods up the chain to WP_Image_Editor_Imagick::image. | |
| * WP_Image_Editor_Imagick::image is protected, so you can't act on |
| <?php | |
| /* | |
| Plugin Name: Plugin Last Updated | |
| Version: 1.0 | |
| License: GPL | |
| Author: Pete Mall, Range | |
| Author URI: http://petemall.com/ | |
| Description: Display the last updated date for all plugins from the <a href="http://wordpress.org/extend/plugins/">WordPress.org plugins repo</a>. | |
| */ |