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 re | |
import urllib | |
import string | |
def parseUrl(baseUrl): | |
urlContent = [] | |
f = urllib.urlopen(baseUrl) | |
buffer = '' | |
for line in f.read(): | |
buffer += line |
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 os | |
import pygame | |
from pygame.locals import * | |
import pygame.surfarray as surfarray | |
def init(): | |
pygame.init() | |
screen = pygame.display.set_mode((500,500)) | |
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 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) |
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
-- 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 | |
返回格式: | |
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
// ==UserScript== | |
// @name SongTasteHelper | |
// @namespace com.youngershen.songtaste | |
// @description 安装该插件之后会自动在songtaste的音乐播放页面显示获取歌曲链接的按钮,然后点击之,再然后,你懂的.... | |
// @include http://www.songtaste.com/song/* | |
// @version 1 | |
// ==/UserScript== | |
var button_str = "<button onclick = 'window.getSongURL()'>获取链接</button>"; | |
document.body.innerHTML = button_str + document.body.innerHTML; |
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
(function(window, document){ | |
if(window.jigs4w){ | |
return window.jigs4w; | |
}else{ | |
jigs4w = {}; | |
window.jigs4w = jigs4w; |
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
<html> | |
<head> | |
<style> | |
.jigsaw{ | |
position: relative; | |
border: 2px solid #7f9db9; | |
overflow: hidden; | |
} | |
.jigsaw div{ |
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
(function(window,document) { | |
if (!window.jigsaw) { | |
jigsaw = {}; | |
window.jigsaw = jigsaw; | |
} | |
jigsaw.clip_buffer = []; | |
jigsaw.total_steps = 0; | |
jigsaw.total_clip = 0; | |
jigsaw.current_index = 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
#!/usr/bin/env python | |
#-*- coding: utf-8 -*- | |
# author : younger shen | |
# email : [email protected] | |
# implement all of the task except extra bonus 3 | |
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
// author : youngershen | |
// email : [email protected] | |
// | |
var SUPERCLASS = function(){}; | |
(function(SUPERCLASS){ | |
SUPERCLASS = SUPERCLASS || {}; | |
var CLASS = SUPERCLASS; |
OlderNewer