I hereby claim:
- I am berlincount on github.
- I am count (https://keybase.io/count) on keybase.
- I have a public key ASAfuIjyboHa-sk-IipIlxdm_iCmkXmrI9YRFcf5dVAe4go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| " Use Vim settings, rather then Vi settings (much better!). | |
| " This must be first, because it changes other options as a side effect. | |
| set nocompatible | |
| set bs=2 | |
| set backup | |
| set viminfo='20,\"50 | |
| set history=100 | |
| set ruler |
| #!/usr/bin/env python | |
| from twisted.internet import defer, reactor | |
| from twisted.internet.protocol import Protocol | |
| from twisted.web.client import Agent | |
| from twisted.web.http_headers import Headers | |
| def run(): | |
| # create some requests for parallel execution |
| #!/usr/bin/env python | |
| from twisted.web import server, resource | |
| from twisted.internet import reactor, defer | |
| from pprint import pprint | |
| import base64 | |
| class DummyServer(resource.Resource): | |
| isLeaf = True |