Eric Steven Raymond, Thyrsus Enterprises, < esr@thyrsus.com >
Rick Moen, < respond-auto@linuxmafia.com >
翻译:柯非, < zer4tul@gmail.com >
这篇译文基于2014.05.21更新的原文修订版3.10。
特别感谢王刚,此前本文的翻译是由他进行的。
| 艾玛,居然那么多人有版权意识,还在那里为91维护,真是呵呵了。代码删了 |
| #!/usr/bin/env ruby | |
| # List all keys stored in memcache. | |
| # Credit to Graham King at http://www.darkcoding.net/software/memcached-list-all-keys/ for the original article on how to get the data from memcache in the first place. | |
| require 'net/telnet' | |
| headings = %w(id expires bytes cache_key) | |
| rows = [] |
| swagger: '2.0' | |
| info: | |
| title: OpenBazaar API | |
| description: Let's make trade free | |
| version: "1.0.0" | |
| # the domain of the service | |
| host: localhost | |
| # array of all schemes that your API supports | |
| schemes: | |
| - http |
| #!/bin/bash | |
| # source: http://www.haskell.org/pipermail/haskell-cafe/2011-March/090170.html | |
| sudo rm -rf /Library/Frameworks/GHC.framework | |
| sudo rm -rf /Library/Frameworks/HaskellPlatform.framework | |
| sudo rm -rf /Library/Haskell | |
| rm -rf .cabal | |
| rm -rf .ghc | |
| rm -rf ~/Library/Haskell |
| local tg_token = 'your token' | |
| if request.query['admin_command'] == 'setURL' and request.query['pass'] == 'xxx' then | |
| local response = http.request { | |
| url = 'https://api.telegram.org/bot' .. tg_token .. '/setWebhook', | |
| params = { | |
| url='https://demo-xxxx.webscript.io/script' | |
| }, | |
| method='post', | |
| } |
| //===================================================================== | |
| // 拾取颜色并输出 | |
| // 返回值: | |
| // 0 正常 | |
| // 1 被取消 | |
| // 2 语法错 | |
| //--------------------------------------------------------------------- | |
| #include<gtk/gtk.h> | |
| #include<ctype.h> | |
| //--------------------------------------------------------------------- |
| # Raw transaction API example work-through | |
| # Send coins to a 2-of-3 multisig, then spend them. | |
| # | |
| # For this example, I'm using these three keypairs (public/private) | |
| # 0491bba2510912a5bd37da1fb5b1673010e43d2c6d812c514e91bfa9f2eb129e1c183329db55bd868e209aac2fbc02cb33d98fe74bf23f0c235d6126b1d8334f86 / 5JaTXbAUmfPYZFRwrYaALK48fN6sFJp4rHqq2QSXs8ucfpE4yQU | |
| # 04865c40293a680cb9c020e7b1e106d8c1916d3cef99aa431a56d253e69256dac09ef122b1a986818a7cb624532f062c1d1f8722084861c5c3291ccffef4ec6874 / 5Jb7fCeh1Wtm4yBBg3q3XbT6B525i17kVhy3vMC9AqfR6FH2qGk | |
| # 048d2455d2403e08708fc1f556002f1b6cd83f992d085097f9974ab08a28838f07896fbab08f39495e15fa6fad6edbfb1e754e35fa1c7844c41f322a1863d46213 / 5JFjmGo5Fww9p8gvx48qBYDJNAzR9pmH5S389axMtDyPT8ddqmw | |
| # First: combine the three keys into a multisig address: | |
| ./bitcoind createmultisig 2 '["0491bba2510912a5bd37da1fb5b1673010e43d2c6d812c514e91bfa9f2eb129e1c183329db55bd868e209aac2fbc02cb33d98fe74bf23f0c235d6126b1d8334f86","04865c40293a680cb9c020e7b1e106d8c1916d3cef99aa431a56d253e69256dac09ef122b1a9 |
Eric Steven Raymond, Thyrsus Enterprises, < esr@thyrsus.com >
Rick Moen, < respond-auto@linuxmafia.com >
翻译:柯非, < zer4tul@gmail.com >
这篇译文基于2014.05.21更新的原文修订版3.10。
特别感谢王刚,此前本文的翻译是由他进行的。
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import sys, re | |
| import requests | |
| import Queue | |
| import threading | |
| class Proxy(): | |
| def __init__(self, proxy_url, target_url, ver_keyword, timeout): |
| ''' | |
| Taken from: https://code.djangoproject.com/ticket/17561#comment:7 | |
| ''' | |
| from django.db import models | |
| class EmailField(models.EmailField): | |
| def get_prep_value(self, value): | |
| value = super(EmailField, self).get_prep_value(value) |