This file contains 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
class DjangoMethodOverrideMiddleware(object): | |
METHODS = ['GET', 'HEAD', 'POST', 'PUT', 'DELETE', 'TRACE', 'OPTIONS', 'CONNECT'] | |
def process_request(self, request): | |
method = request.REQUEST.get("_method", None) | |
if method is None: | |
return | |
else: | |
method = method.upper() | |
if method in self.METHODS: | |
request.method = method |
This file contains 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
(function() { | |
function Revive (evnt) { | |
onEvent = "on" + evnt; | |
if(window.addEventListener) { | |
window.addEventListener(onEvent, function (e) { | |
for (var node = e.originalTarget; node; node = node.parentNode) { | |
[node] = null; | |
} | |
}, true); | |
window[onEvent] = null; |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>3D links rolling on hover</title> | |
<style> | |
body { | |
font-family: sans-serif; | |
font-size: 40px; | |
font-weight: bold; | |
text-align: center; |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Sorting Color Nodes by Hue</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<style> | |
body { | |
overflow: hidden; | |
background: #333333; | |
} |
This file contains 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
--- Log opened Thu Apr 18 14:41:31 2013 | |
14:44 < dannvix> hello world! | |
15:45 < hcchien> just saw the picture that ingy got Taiwan beer! | |
20:12 -!- chihchun is now known as zz_chihchun | |
21:57 < clkao> miyagawa: muchomucho++ | |
21:58 < clkao> grr missing osdc! | |
22:08 < hcchien> miyagawa: ping | |
23:17 < hcchien> btw, we will have the hackathron on Sunday. | |
23:17 < lunastorm> woot | |
23:17 < lunastorm> where |
This file contains 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 java.io.*; | |
import java.net.*; | |
import java.lang.Thread; | |
public class EchoServer { | |
public static void main (String[] args) { | |
try { | |
ServerSocket server = new ServerSocket(5566); | |
while (true) { | |
Socket client = server.accept(); |
This file contains 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
# for P piles with N items, generate all possible combinations without redundant | |
# e.g. for piles(5, 3) -> [(5,0,0), (4,1,0), (3,2,0), (3,1,1), (2,2,1)] | |
def make_piles (num, pile, piles=[], c=Array.new(pile, 0), idx=0) | |
if num == 0 | |
piles.push(c.clone) | |
else | |
top = (c[idx-1] != 0) ? ((c[idx-1] > num) ? num : c[idx-1]) : (num) | |
top.downto(1).each do |i| | |
c[idx] = i | |
make_piles(num-i, pile, piles, c, idx+1) |
This file contains 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 coffee | |
class SubtitleParser | |
LINE_PATTERN = /// | |
subtitle #line prefix | |
\s+ | |
(\d+) # timestamp | |
\s+ | |
(\d+) # duration | |
\s+ |
This file contains 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 ruby | |
require "geocoder" | |
def latlng_to_addr (lat, lng) | |
query_result = Geocoder.search("#{lat},#{lng}") | |
return query_result.first.formatted_address | |
end | |
if ARGV.length < 2 | |
puts "usage: ./#{$0} <latitude> <longitude>" |
This file contains 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 | |
# -*- encoding: utf-8 -*- | |
import sys, traceback | |
import json, urllib2 | |
def latlng_to_addr (lat, lng): | |
# convert given latitude & longitude to formatted address with Google Maps API | |
# ref: http://techslides.com/convert-latitude-and-longitude-to-a-street-address/ | |
maps_api_url = 'http://maps.googleapis.com/maps/api/geocode/json?latlng=%s,%s&sensor=false' % (lat, lng) | |
try: |