Our server is in peril!
PocketFox, the spirit of OTD, can no longer stand the terrible trolling plaguing our server!
He gives five magic admin slots to five special OTD members!
From New York, GOOSE! With the power of RAGE!
From Toronto, CARTMAN! With the power of CANDEH!
From Winnipeg, MIKE.KENYON! With the power of 'Sorry'!
From California, ZUKE! With the power of NICENESS!
And from Vancouver, Q.! With the power of SOUND DESIGN!
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 python | |
# coding=UTF-8 | |
import math, subprocess | |
p = subprocess.Popen(["ioreg", "-rc", "AppleSmartBattery"], stdout=subprocess.PIPE) | |
output = p.communicate()[0] | |
o_max = [l for l in output.splitlines() if 'MaxCapacity' in l][0] | |
o_cur = [l for l in output.splitlines() if 'CurrentCapacity' in l][0] |
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
{ | |
/* Remap Home / End to be correct :-) */ | |
"\UF729" = "moveToBeginningOfLine:"; /* Home */ | |
"\UF72B" = "moveToEndOfLine:"; /* End */ | |
"$\UF729" = "moveToBeginningOfLineAndModifySelection:"; /* Shift + Home */ | |
"$\UF72B" = "moveToEndOfLineAndModifySelection:"; /* Shift + End */ | |
} |
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
Christopher Head: William Earl: | |
Mechanized systems, | |
half-baked ideas, | |
architect of destruction, | |
sharpshooter, | |
mysterious math, | |
fiery underworld. | |
Curtis Hodgins: | |
Combustion Savvy |
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
<!-- map.js --> | |
<!-- javascript function to set up a google map --> | |
<!-- centered on vancouver city hall --> | |
var map; | |
var vanCityHall = new google.maps.LatLng(49.260921, -123.113962); | |
function init(){ | |
geocoder = new google.maps.Geocoder(); | |
var mapOptions = { |
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
[Tracking] | |
Smooth=40 | |
invertYaw=false | |
invertPitch=true | |
invertRoll=false | |
invertX=true | |
invertY=false | |
invertZ=false | |
useEWMA=true | |
redYaw=60 |
[13/4/17 09:55:05] Daniel Plemmons: GEAR UP!
[13/4/17 09:56:02] Mike Two Kenyon: Three successful Gear 6 rolls in a row.
[13/4/17 09:58:51] Daniel Plemmons: Though Mike forced my car into a spin and into a barrier on the back half of the track. DNF on the second lap. I'm contesting his win with the race officials.
[13/4/17 10:02:00] Mike Two Kenyon: Two love taps in a row and his car explodes. He needs to tighten up his pacing in turn 3.
[13/4/17 10:02:11] Daniel Plemmons: (rofl)
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
res = re.findall('[a-zA-Z]{2,}\s*\+\+', testString) | |
if len(res) > 0: | |
for match in res: | |
pos_results.append(match.lower()) | |
res = re.findall('\+\+\s*[a-zA-Z]{2,}', testString) | |
if len(res) > 0: | |
for match in res: | |
pos_results.append(match.lower()) |
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 | |
* 2 | |
end | |
= 5 | |
puts # => 10 |
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
alias very='git checkout' | |
function such() { | |
git commit -m "$@" | |
} | |
alias wow='git push' | |
alias ?????='bundle exec cap staging deploy' | |
alias amaze='bundle exec cap production deploy' | |
alias doge=alias |
OlderNewer