Original link: http://www.concentric.net/~Ttwang/tech/inthash.htm
Taken from: http://web.archive.org/web/20071223173210/http://www.concentric.net/~Ttwang/tech/inthash.htm
Reformatted using pandoc
Thomas Wang, Jan 1997
last update Mar 2007
| // Copyright © 2016 Alan A. A. Donovan & Brian W. Kernighan. | |
| // License: https://creativecommons.org/licenses/by-nc-sa/4.0/ | |
| // See page 165. | |
| // Package intset provides a set of integers based on a bit vector. | |
| package intset | |
| import ( | |
| "bytes" |
| func noReturn() (result int) { | |
| defer func() { | |
| p := recover() | |
| result = p.(int) | |
| }() | |
| panic(42) | |
| } |
Original link: http://www.concentric.net/~Ttwang/tech/inthash.htm
Taken from: http://web.archive.org/web/20071223173210/http://www.concentric.net/~Ttwang/tech/inthash.htm
Reformatted using pandoc
Thomas Wang, Jan 1997
last update Mar 2007
| """实在是对位运算不熟,甚是麻烦,直接操作字符串了。 | |
| """ | |
| def test_rev_encode(): | |
| for i in range(500): | |
| encode = rev_encode(i) | |
| if rev_encode(encode) != i: | |
| print('{0}>{1} {1}>{2}'.format(i,encode,rev_encode(encode))) | |
| #!/usr/bin/env python | |
| # coding: utf-8 | |
| import requests | |
| import StringIO | |
| from PIL import Image | |
| import os | |
| import time | |
| YES = 'X' | |
| NO = '-' |
| 0:0 1.0 | |
| 0:6 0.886904761905 | |
| 0:9 0.875 | |
| 0:8 0.85119047619 | |
| 0:3 0.809523809524 | |
| 0:4 0.767857142857 | |
| 0:2 0.761904761905 | |
| 0:5 0.75 | |
| 0:7 0.672619047619 | |
| 0:1 0.607142857143 |
| say --voice="Agnes" Isn\'t it nice to have a computer that will talk to you? | |
| say --voice="Albert" I have a frog in my throat. No, I mean a real frog! | |
| say --voice="Alex" Most people recognize me by my voice. | |
| say --voice="Alice" Salve, mi chiamo Alice e sono una voce italiana. | |
| say --voice="Alva" Hej, jag heter Alva. Jag är en svensk röst. | |
| say --voice="Amelie" Bonjour, je m ’ appelle Amelie. Je suis une voix canadienne. | |
| say --voice="Anna" Hallo, ich heiße Anna und ich bin eine deutsche Stimme. | |
| say --voice="Bad News" The light you see at the end of the tunnel is the headlamp of a fast approaching train. | |
| say --voice="Bahh" Do not pull the wool over my eyes. | |
| say --voice="Bells" Time flies when you are having fun. |
| <meta name="renderer" content="webkit"> | |
| //360 6.X 以上可识别 | |
| <meta name="force-rendering" content="webkit"> | |
| //其他双核可识别 | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/> | |
| //对于没有自带 IE7 内核的浏览器 强制使用用户已安装的最高版本浏览器渲染, 有Chrome框架的优先使用 |
| // ==UserScript== | |
| // @name doubanFM2NetEase | |
| // @namespace http://xavierskip.com/ | |
| // @version 0.1 | |
| // @description doubanFM searching in netease cloud music | |
| // @author xavier skip | |
| // @match http://douban.fm/* | |
| // @grant none | |
| // ==/UserScript== | |
| function addGlobalStyle(css) { |
| #!/usr/bin/env python | |
| #coding: utf-8 | |
| import sys | |
| argvs = sys.argv | |
| class syntaxError(Exception): | |
| def __init__(self, line): | |
| # start with 1 | |
| self.line = line+1 |