Skip to content

Instantly share code, notes, and snippets.

View wilhelm-murdoch's full-sized avatar
💀
Busy being spoopy.

Wilhelm Murdoch wilhelm-murdoch

💀
Busy being spoopy.
View GitHub Profile
Gost - A simple command line utility for easily creating Gists for Github
Usage:
gost (--file=<file> | --clip) [--name=<name>] [--description=<description>] [--token=<token>] [--public]
gost (--help | --version)
Options:
-t --token=<token> Optional Github API authentication token. If excluded, your Gist will be created anonymously.
-f --file=<file> Create a Gist from file.
-n --name=<name> Optional name for your new Gist.
Gost - A simple command line utility for easily creating Gists for Github
Usage:
gost (--file=<file> | --clip) [--name=<name>] [--description=<description>] [--token=<token>] [--public]
gost (--help | --version)
Options:
-t --token=<token> Optional Github API authentication token. If excluded, your Gist will be created anonymously.
-f --file=<file> Create a Gist from file.
-n --name=<name> Optional name for your new Gist.
Gost - A simple command line utility for easily creating Gists for Github
Usage:
gost (--file=<file> | --clip) [--name=<name>] [--description=<description>] [--token=<token>] [--public]
gost (--help | --version)
Options:
-t --token=<token> Optional Github API authentication token. If excluded, your Gist will be created anonymously.
-f --file=<file> Create a Gist from file.
-n --name=<name> Optional name for your new Gist.
@wilhelm-murdoch
wilhelm-murdoch / Tweet Parser
Created February 1, 2010 13:55
Properly parse tweets using PHP.
function parse($tweet)
{
$regex = array
(
'#([a-z]{3,9}://[a-z0-9-_./\\\?&\+]*)#i',
'#[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,6}#i',
'#@([a-z0-9-_]+)#i',
'#\#([a-z0-9-_]+)#i'
);
@wilhelm-murdoch
wilhelm-murdoch / Relative Time Function
Created February 2, 2010 12:09
Used to print out the given timestamp in relative format.
function relative($timestamp, $format = 'M jS \of Y')
{
$difference = time() - $timestamp;
if($months = floor($difference / 2592000))
{
return date($format, $timestamp);
}
$difference -= $months * 2419200;
function generate_osid($length)
{
$rand = '';
for($i = 0; $i < $length; $i++)
{
$number = mt_rand(0, 61);
if($number < 10)
{
/**
* Completely strips a string of carriage returns and line feeds.
*
* @param $string String to parse
* @return String
*/
function stripReturns($string)
{
return str_replace(array("\r\n", "\r", "\n"), array("\n", "\n", ''), $string);
}
@wilhelm-murdoch
wilhelm-murdoch / chunkFile(path, chunks);
Created March 12, 2010 08:15
Does a binary-safe split of a specified file. The number of chunks generated is determined by the $chunks parameter.
function chunkFile($file, $chunks = 2)
{
$handle = fopen($file, 'rb');
$count = 1;
while(false == feof($handle))
{
if($data = fread($handle, round(filesize($file) / $chunks)))
{
file_put_contents(basename($file) . "-chunk-{$count}.txt", $data);
@wilhelm-murdoch
wilhelm-murdoch / outerHtml
Created May 30, 2011 14:12
IE's 'outerHTML' method for jQuery
jQuery.fn.outerHTML = function() {
return $('<div>').append(this.eq(0).clone()).html();
};
@wilhelm-murdoch
wilhelm-murdoch / $.fn.disableSelection();
Created September 16, 2011 05:23
Prevents the "bubbling" effect for text selections in the DOM. For example, when you double-click a block of text on a web page and the entire block gets highlighted and selected. Yeah, this prevents that.
(function($){
$.fn.disableSelection = function() {
return this.each(function() {
$(this).attr('unselectable', 'on')
.css({
'-moz-user-select':'none',
'-webkit-user-select':'none',
'user-select':'none'
})
.each(function() {