Skip to content

Instantly share code, notes, and snippets.

View Yunanw's full-sized avatar

samlinlin Yunanw

View GitHub Profile
@Yunanw
Yunanw / AutoPickTask
Last active August 29, 2015 14:01
当年某宝刷钻平台抢任务代码
# coding=utf-8
'''
Created on 2011-7-1
@author: Yunanw
'''
import cookielib, urllib2, urllib
import time
import lxml.html as H
@Yunanw
Yunanw / ReadUntil
Last active August 29, 2015 13:57
ReadUntil
public static String ReadUntil(this StreamReader reader, char delimeter)
{
StringBuilder sb = new StringBuilder();
char c;
while ((c = (char)reader.Read()) != 0)
{
if (c == delimeter)
return sb.ToString();
else
sb.Append(c);