adblock
https://addons.mozilla.org/zh-CN/firefox/addon/adblock-plus/?src=cb-dl-users
firebug
https://addons.mozilla.org/zh-CN/firefox/addon/firebug/?src=cb-dl-users
Greasemonkey
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
__author__ = "Deepak.G.R." | |
__credits__ = "Sumod Hajela" | |
__license__ = 'Public Domain' | |
""" | |
usage: | |
Go to command line and type |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
__author__ = "Deepak.G.R." | |
__credits__ = "Sumod Hajela" | |
__license__ = 'Public Domain' | |
""" | |
usage: | |
Go to command line and type |
# Back-Propagation Neural Networks | |
# another way: solve it as a Regression Problem | |
# Written in Python. See http://www.python.org/ | |
# Modified by JSun to solve the problem here: http://www.weibo.com/1497035431/ynPEvC78V | |
# Neil Schemenauer <[email protected]> | |
import math | |
import random | |
import string |
#!/usr/bin/env python2 | |
#-*- coding=utf-8 -*- | |
import urllib2 | |
from BeautifulSoup import BeautifulSoup | |
start_page = 1 | |
end_page = 38 | |
base_url="http://bbs.duokan.com/forum/thread-41804-%s-1.html" | |
img_list = [] |
#include <stdio.h> | |
int max(int n,int m) | |
{ | |
return m>=n?m:n; | |
} | |
int min(int n,int m) | |
{ | |
return m>=n?n:m; |
/* | |
* ===================================================================================== | |
* | |
* Filename: 111.c | |
* | |
* Description: | |
* | |
* Version: 1.0 | |
* Created: 2012年11月29日 15时08分53秒 | |
* Revision: none |