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
| #!/usr/bin/env bash | |
| args=() | |
| while true; do | |
| if [ "$1" = "-title" -o "$1" = "-t" ]; then | |
| shift | |
| args=( "${args[@]}" with title "\"$1\"" ) | |
| shift | |
| elif [ "$1" = "-subtitle" -o "$1" = "-st" ]; then |
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 | |
| # To use, create ~/.myimgurup, and put in your client ID and secret | |
| # E.g.: | |
| # CLIENT_ID=80238f8092 | |
| # CLIENT_SECRET=239a482b034c820 | |
| # | |
| # Next run `base /path/to/my_imgurup.sh auth` to get your PIN and access token | |
| # Finally, `base /path/to/my_imgurup.sh up /path/to/image.png` to upload an image |
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 | |
| # This requires the commit summary to start like this: | |
| # [XXX]: message | |
| # * Add | |
| # * Mod(ify) | |
| # * Ref(actor) | |
| # * Fix | |
| # * Rem(ove) | |
| # * Rea(dability) |
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 | |
| /** | |
| * Generates a Cyanide & Happiness feed with the images included | |
| * Caches the results to be nice to the server | |
| * Requires memcache and simplehtmldom | |
| * Gist: https://gist.github.com/ec1a3af05246e08be951 | |
| */ | |
| // See http://simplehtmldom.sourceforge.net/ |
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 custom_feed { | |
| public $feed = 'custom-xml'; | |
| public function __construct() { | |
| add_action( 'init', array( $this, 'init' ) ); | |
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
| # cheat_sheet.org.sh | |
| # The contents of this file are released under the GNU General Public License. Feel free to reuse the contents of this work, as long as the resultant works give proper attribution and are made publicly available under the GNU General Public License. | |
| # Best viewed in emacs org-mode. | |
| # Alternately, one can keep this cheat sheet handy by adding the following line to ~/.bashrc: | |
| # | |
| # alias cheatsheet="less ~/path_to_cheat_sheet.org.sh" | |
| # | |
| # Originally by WilliamHackmore: https://github.com/WilliamHackmore/linuxgems | |
| # This version by goodevilgenius: https://gist.github.com/goodevilgenius/2d1c01251c524610a2cd |
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
| <?xml version='1.0' encoding='UTF-8' standalone='yes' ?><mappings version="1" appName="com.ea.game.simpsons4_na" appVersion="30" resX="1280" resY="720" dataVersion="0" GUID="0b2a33e0-249b-4b33-898a-0fdb72c771cd" rating="0.0"><page name="Page 1" isdefault="1"><mapping type="1" x="64" y="57" key="102" /><mapping type="1" x="1219" y="674" key="100" /><mapping type="1" x="1108" y="671" key="99" /><mapping type="1" x="1001" y="673" key="97" /><mapping type="1" x="865" y="657" key="96" /><mapping type="1" x="62" y="664" key="230" /><mapping type="2" x="926" y="561" key="22"><record><![CDATA[AAAAAAAAAAADTFJmAAAAAAAAAAEAAAABAAAAAANMUmYAAAAARGeAAEQMQAA+WZmaPYiIiQAAAAAA | |
| AAAAA0xSZgAAAAIAAAABAAAACgAAAAADTFJsAAAAAERngABEDEAAPlmZmj2IiIkAAAAAA0xScwAA | |
| AABEZ4AARAxAAD5ZmZo9iIiJAAAAAANMUnoAAAAARGeAAEQMQAA+WZmaPYiIiQAAAAADTFJ/AAAA | |
| AERngABEDEAAPlmZmj2IiIkAAAAAA0xShgAAAABEZ4AARAxAAD5ZmZo9iIiJAAAAAANMUowAAAAA | |
| RGaAAEQMQAA+czMzPZiYmQAAAAADTFKTAAAAAERhgABEC4AAPrmZmj3o6OoAAAAAA0xSmQAAAABE | |
| XwAARArAAD6zMzM94ODiAAAAAANMUp8AAAAARFzAAEQJwAA |
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
| _ |
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 | |
| # Usage: /path/to/screenshot.sh /path/to/screenshot/directory http://url.com/ | |
| # To display on a website, use index.php (and http_build_url) | |
| dir="$(readlink -f "$1")" | |
| if [ ! \( -d "$dir" -a -w "$dir" \) ] | |
| then | |
| echo "$dir is not a valid writeable directory" >&2 | |
| exit 4 |
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
| #!/usr/bin/python | |
| from variety.plugins.IQuoteSource import IQuoteSource | |
| import subprocess, re | |
| from locale import gettext as _ | |
| class FortuneSource(IQuoteSource): | |
| @classmethod | |
| def get_info(cls): | |
| return { |