Skip to content

Instantly share code, notes, and snippets.

@jongyeol
Created March 9, 2012 16:46
Show Gist options
  • Save jongyeol/2007439 to your computer and use it in GitHub Desktop.
Save jongyeol/2007439 to your computer and use it in GitHub Desktop.
search happyhacking in keyboard mania
#!/usr/bin/env ruby
require 'open-uri'
page = open("http://www.kbdmania.net/xe/?mid=market&category=&search_target=title&search_keyword=%ED%95%B4%ED%94%BC%ED%95%B4%ED%82%B9") {|f| f.read}
links = page.scan(/<strong class="category" >판매<\/strong>[ \t\r\n]*<a href=[^<]*<\/a>/m).map {|a| a.scan(/(document_srl=)([^"]*)(">)([^<]*)/)[0]}
links.each {|_, no, _, title| puts "http://www.kbdmania.net/xe/market/#{no} => #{title}"}
@jongyeol
Copy link
Author

jongyeol commented Mar 9, 2012

실행 결과

$ ./happyhacking.rb
http://www.kbdmania.net/xe/market/3745183 => 해피해킹 라이트 팝니다.
http://www.kbdmania.net/xe/market/3740172 => 해피해킹 라이트나 체리 g86 구매하고 싶습니다~~
http://www.kbdmania.net/xe/market/3737820 => 해피해킹 프로2 흑각 팝니다
http://www.kbdmania.net/xe/market/3727066 => 해피해킹프로2 팝니다
http://www.kbdmania.net/xe/market/3706307 => 해피해킹프로2 / 해피해킹라이트2 / 리얼86,87 / 필코 리니어 팝니다
http://www.kbdmania.net/xe/market/3688705 => 해피해킹프로 + 팜레 + 키캡 + 3700 모드4 + 아이스메이트 팝니다.
http://www.kbdmania.net/xe/market/3688309 => 해피해킹프로2 / 해피해킹라이트2 / 리얼86,87 / 필코 리니어 팝니다

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment