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
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> | |
| <script type="text/javascript" charset="utf-8"> | |
| window._page = 1; | |
| var fetcher = function(page) { | |
| var query = ''; | |
| var apikey = ''; |
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 ruby | |
| require 'rubygems' | |
| require 'termcolor' | |
| DNS = { | |
| :kt => ['168.126.63.1','168.126.63.2'], | |
| :sk => ['210.220.163.82','219.250.36.130','210.94.6.67'], | |
| :thrunet => ['210.117.65.1', '210.117.65.2'], | |
| :dacom => ['164.124.101.2','203.248.252.2'], |
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 flask import Flask, request, session, url_for, redirect, \ | |
| render_template, abort, g, flash | |
| from werkzeug.contrib.sessions import Session, SessionStore | |
| from cPickle import HIGHEST_PROTOCOL | |
| from random import random | |
| from flask import json | |
| class MemcachedSessionStore(SessionStore): | |
| def __init__(self, servers=None, key_prefix=None, default_timeout=300): |
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
| [PATCH] I Love Ruby! ... | |
| Content-Type: text/plain; charset="us-ascii" | |
| MIME-Version: 1.0 | |
| Content-Transfer-Encoding: 7bit | |
| Subject: [PATCH] I Love Ruby! | |
| X-Mercurial-Node: 2a4960d4df517d135cd0a783ee140e2b7bcec43a | |
| Message-Id: <[email protected]> | |
| User-Agent: Mercurial-patchbomb/1.6 | |
| Date: Fri, 01 Apr 2011 11:00:24 +0900 | |
| From: kkung <[email protected]> |
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 scala.util.parsing.combinator._ | |
| class IrcParser extends RegexParsers { | |
| /* | |
| RFC1459 2.3.1 Message format in 'pseudo' BNF | |
| <message> ::= [':' <prefix> <SPACE> ] <command> <params> <crlf> |
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
| SetMouseDelay, 0 | |
| SetKeyDelay, 5 | |
| ; 02/01 1159 | |
| ^+1:: | |
| SetTitleMatchMode, 2 | |
| IfWinExist, 대수송 | |
| { | |
| WinActivate | |
| } | |
| MouseClick, left, 166,194 |
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
| require 'httparty' | |
| class Me2dayApi | |
| include HTTParty | |
| base_uri 'me2day.net' | |
| def initialize(appkey) | |
| self.class.default_params :akey => appkey | |
| end |
NewerOlder