Skip to content

Instantly share code, notes, and snippets.

View youngershen's full-sized avatar
🎯
Focusing

Younger Shen youngershen

🎯
Focusing
View GitHub Profile
@youngershen
youngershen / LolMatchLeader.lua
Created August 28, 2012 06:49
lol match leader
-- project : LolMatchLeader
-- author : younger.shen
-- filename : LolMatchLeader.lua
-- filepath : /C/Users/Administrator/Desktop/LolMatchLeader.lua
[[
该程序用来确定某一个lol队伍的leader.
请求格式:
/?gameid=xxx&server=xxx&teamid=xxx&player=xxx
返回格式:
@youngershen
youngershen / qvodFetch.py
Created April 24, 2012 11:35
fetch the qvod link in the qvodzy.me site
from bs4 import BeautifulSoup
import urllib
import os
import re
qvod_link_reg = re.compile(ur'qvod://[0-9]{9}\|[A-Z0-9]{40}\|[\u4e00-\u9fa50-9]+\.')
main_url = 'http://www.qvodzy.me'
def matchURL(url):
res = urllib.urlopen(url)
@youngershen
youngershen / gist:2421224
Created April 19, 2012 14:15
你妹的,晚上就敲了这几行,pygame还老假死,去你妹
import os
import pygame
from pygame.locals import *
import pygame.surfarray as surfarray
def init():
pygame.init()
screen = pygame.display.set_mode((500,500))
@youngershen
youngershen / qvodFetch.py
Created April 19, 2012 06:21
your sister 's qvod link spider
import re
import urllib
import string
def parseUrl(baseUrl):
urlContent = []
f = urllib.urlopen(baseUrl)
buffer = ''
for line in f.read():
buffer += line