I hereby claim:
- I am mattread on github.
- I am mattread (https://keybase.io/mattread) on keybase.
- I have a public key whose fingerprint is B79D 293B 4732 9678 DABC 4C2B 9B8E 27DC 9A5F 62E1
To claim this, I am signing this object:
| <?php | |
| action_atom_get_collection { | |
| function b( $xml, $params, $handler_vars ){ | |
| $xml->title = 'FFFFFFFFFFFFFFFFFF'; | |
| } | |
| } | |
| $a = new AtomHandler; $a->get_collection(); |
| <?php | |
| class MrT extends Plugin | |
| { | |
| public function action_atom_get_collection( $xml, $params, $handler_vars ) | |
| { | |
| if ( Controller::get_action() == 'tag_collection' ) { | |
| $xml->title = _t( 'Posts Tagged %s', array( htmlentities(Controller::get_var('tag')) ), 'MrT' ); | |
| } | |
| } |
| <?php | |
| $url = 'https://api.github.com/repos/MattRead/conquistador/git/blobs/82c300571af3a69609466e51c3f057c75cc1df09'; | |
| $opts = array( | |
| 'http'=>array( | |
| 'method'=>"GET", | |
| 'header'=>"Accept-language: en\r\n" . | |
| "User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1.6) Gecko/20091201 Firefox/3.5.6\r\n". | |
| "Cookie: foo=bar\r\n" | |
| ) |
| RewriteEngine On | |
| RewriteCond %{HTTPS} !=on | |
| RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R=301,L] | |
| RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC] | |
| RewriteRule ^(.*)$ http://%1/$1 [R=301,L] | |
| RewriteRule ^(archives|blog)/[0-9]+/[0-9]+/(.+)$ $2 [R=301,L] | |
| RewriteRule ^(2005|2004|2006)/[0-9]+/(.+)$ $2 [R=301,L] | |
| RewriteRule ^(css/flag\.php)$ examples/$1 [R=301,L] | |
| RewriteRule ^(projects)/(.+) http://drunkenmonkey.org/$2 [R=301,L] |
| #!/bin/sh | |
| # | |
| # Paste a file directly to gist. | |
| # | |
| # * Put this file into your home binary dir: ~/bin/ | |
| # * Make it executable: chmod +x | |
| # | |
| # | |
| # Required Software: | |
| # ------------------------- |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env php | |
| <?php | |
| $type = trim(shell_exec('zenity --list --radiolist --column=Pick --column=Type TRUE Plugin FALSE Theme FALSE Other')); | |
| switch ($type) { | |
| case 'Plugin': | |
| $repo = trim(shell_exec('zenity --entry --text="Repo Name"')); | |
| $git = shell_exec("cd /home/matt/Projects/plugins; git clone git@github.com:habari-extras/{$repo}.git"); | |
| break; | |
| case 'Theme': |