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 | |
function getMiddleDay($day, $month, $year) { | |
$thisMonth = mktime(0, 0, 0, $month, 0, $year); | |
$daysInMonth = date('t', $thisMonth); | |
$middleTimestamp = mktime(0, 0, 0, $month, floor($daysInMonth/2), $year); | |
$potentials = array(); | |
foreach (array(2,3) as $i) { |
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 | |
date_default_timezone_set('Europe/London'); | |
function getMiddleDay($day, $month, $year) { | |
$thisMonth = mktime(0, 0, 0, $month, 0, $year); | |
$daysInMonth = date('t', $thisMonth); | |
$middleTimestamp = mktime(0, 0, 0, $month, floor($daysInMonth/2), $year); |
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 | |
import sys | |
labels = [] | |
values = [] | |
for line in sys.stdin: | |
bits = line.strip().split(' ') | |
value = bits.pop(0) | |
label = ' '.join(bits) |
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
def just_one_kind_of_response?(item, controller) | |
case controller | |
when 'actions' | |
if item.comments.blank? || item.suggestions.blank? | |
return true | |
end | |
when 'thoughts' | |
if item.comments.blank? || item.suggestions.blank? |
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
#include <nfc/nfc.h> | |
#include <nfc/nfc-messages.h> | |
int main () | |
{ | |
nfc_device_t *nfcDev; | |
nfcDev = nfc_connect(NULL); | |
if (nfcDev == NULL) { | |
printf("Cannot connect to the RFID reader.\n"); |
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/sh | |
# An xkcd://318 URL handler, for linux types. | |
echo -n "#!/bin/sh\nexec xdg-open \`echo \"\$@\" | sed -e 's/xkcd:\//http:\/\/xkcd.com/'\`" > $HOME/.xkcdhandler | |
chmod +x $HOME/.xkcdhandler | |
gconftool-2 -t string -s /desktop/gnome/url-handlers/xkcd/command "$HOME/.xkcdhandler %s" | |
gconftool-2 -t bool -s /desktop/gnome/url-handlers/xkcd/needs_terminal false | |
gconftool-2 -t bool -s /desktop/gnome/url-handlers/xkcd/enabled true |
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
image/*; ~/.showinbrowser.sh %s | |
application/*; ~/.showinbrowser.sh %s | |
audio/*; ~/.showinbrowser.sh %s | |
text/*; ~/.showinbrowser.sh %s |
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
from github import Github # https://github.com/jacquev6/PyGithub | |
g = Github("USER", "PASSWORD") | |
repos = g.get_organization('ORGNAME').get_repos() | |
for repo in repos: | |
repo.create_hook( | |
"irc", | |
{ |
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
brew install mplayer && mplayer "http://livestream-f.akamaihd.net/398160_1594566_3e41227e_1_678@41915?v=2.10.3&fp=MAC%2011,5,31,2&r=HPMHI&g=MYFXUTYHSWLA" |
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
import os | |
import beanstalkc | |
beanstalk = beanstalkc.Connection(host='localhost', port=14711) | |
while True: | |
job = beanstalk.reserve() | |
print "Running %s" % job.body | |
os.system(job.body) | |
job.delete() |
OlderNewer