Deckset feature request
println("\"Normal\" code.")println("\"Normal\" code.")| class Counter { | |
| let inc: () -> Int | |
| let dec: () -> Int | |
| init(start: Int) { | |
| var n = start | |
| inc = { ++n } | |
| dec = { --n } | |
| } |
| Python 2.7.2 (default, Oct 17 2011, 00:04:42) | |
| [GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.1.00)] on darwin | |
| Type "help", "copyright", "credits" or "license" for more information. | |
| >>> from dis import dis | |
| >>> def short(xs): | |
| ... xs[0] += 1 | |
| ... | |
| >>> dis(short) | |
| 2 0 LOAD_FAST 0 (xs) | |
| 3 LOAD_CONST 1 (0) |
| $ python2.7 | |
| Python 2.7.2 (default, Oct 17 2011, 00:04:42) | |
| [GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.1.00)] on darwin | |
| Type "help", "copyright", "credits" or "license" for more information. | |
| >>> result = None | |
| >>> for n in range(1000): | |
| ... m = int(str(n)) | |
| ... previous_result = result | |
| ... result = n is m | |
| ... if result != previous_result: |
| <?xml version="1.0"?> | |
| <root> | |
| <item> | |
| <name>F19 → Backspace/Hyper</name> | |
| <identifier>narfdotpl.hyper</identifier> | |
| <autogen> | |
| __KeyOverlaidModifier__ | |
| KeyCode::F19, |
> g t
git: 't' is not a git command. See 'git --help'.
Did you mean one of these?
tag
a
b
c
d
e
foo foo
(bar) (bar)
(baz ) (baz )
( qux)
| #!/usr/bin/env python | |
| # Requirements: requests, lxml, cssselect | |
| import requests | |
| from lxml import html | |
| TALKNAME = "TITLE OF MY AMAZING TALK (it's a secret!)" | |
| COLOR = '\033[1;34m' | |
| END = '\033[0m' | |
| r = requests.get('http://2013.djangocon.eu/vote/') |
moved to
EDIT: solved -_-'
Etsy's statsd. Halp.
> node stats.js
/Users/narf/sandbox/statsd/config.js:33
{ graphitePort: 2003, graphiteHost: "localhost", port: 8125 }