Skip to content

Instantly share code, notes, and snippets.

View guiwuu's full-sized avatar

Dai Jun guiwuu

View GitHub Profile
@guiwuu
guiwuu / batch_wget.sh
Last active October 9, 2015 02:18
shell usage
for ((i=0;i<15;i++)) do
wget "http://www.sanqinji.com/ebook/lrws/lrws$i.html"
done
@guiwuu
guiwuu / http_client.rb
Created August 22, 2012 08:30
how to ruby
require 'net/http'
#inlitialize
uri = URI.parse("http://www.baidu.com")
# get
response = Net::HTTP.get(uri)
p response
# post