Skip to content

Instantly share code, notes, and snippets.

@dannvix
dannvix / django-middlewares.py
Created July 29, 2014 12:10
_method override & request.params["id"]
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
@dannvix
dannvix / EnableCopy.js
Last active August 29, 2015 14:01
Bookmarklet which enables select, context menu, and so on.
(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;
@dannvix
dannvix / Sorting-Color-Nodes-by-Hue.html
Last active December 19, 2015 22:49
Simple visualization for sorting color nodes by hue
<!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;
}
@dannvix
dannvix / OSDC-2013-irc-logs.txt
Created April 20, 2013 15:45
#osdc.tw logs for OSDC 2013 (Apr 19 – 20)
--- 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
@dannvix
dannvix / EchoServer.java
Created April 15, 2013 02:55
simple multithreading TCP echo server in (ugly) Java
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();
@dannvix
dannvix / gen-piles.rb
Created April 12, 2013 16:42
for P piles with N items, generate all possible combinations without redundant
# 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)
@dannvix
dannvix / SubtitleParser.coffee
Last active December 15, 2015 21:19
very simple parser for 《蟲族之心》subtitles in CoffeeScript
#!/usr/bin/env coffee
class SubtitleParser
LINE_PATTERN = ///
subtitle #line prefix
\s+
(\d+) # timestamp
\s+
(\d+) # duration
\s+
@dannvix
dannvix / lat-lng-to-addr.rb
Created April 3, 2013 03:32
convert latitude & longitude with Geocoder (Google Maps API)
#!/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>"
@dannvix
dannvix / lat-lng-to-addr.py
Last active December 15, 2015 17:39
convert latitude & longitude to formatted address with Google Maps API
#!/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: