Skip to content

Instantly share code, notes, and snippets.

[tool.poetry]
name = "balto"
version = "0.1.2"
description = ""
authors = ["Boris Feld <lothiraldan@gmail.com>"]
packages = [
{include = "balto/**/*.py"}
]
include = ["balto/web_interfaces/balto_react/build/**/*"]
exclude = ["balto/web_interfaces/balto_react/node_modules/**/*", "balto/web_interfaces/simple/src/elm-stuff/**/*"]
[tool.poetry]
name = "balto"
version = "0.1.2"
description = ""
authors = ["Boris Feld <lothiraldan@gmail.com>"]
include = ["balto/**/*.py", "balto/web_interfaces/balto_react/build/**/*"]
exclude = ["balto/web_interfaces/balto_react/node_modules/**/*"]
[tool.poetry.dependencies]
python = "^3.6 || ^3.7"

Keybase proof

I hereby claim:

  • I am lothiraldan on github.
  • I am lothiraldan (https://keybase.io/lothiraldan) on keybase.
  • I have a public key ASAwij8gw4koGC6oQJDJb9VuNVrP7MwRY9jJhqrwZT4Cgwo

To claim this, I am signing this object:

def wrapped(request, *args, **kwargs):
""" Call the lifecycles methods with these arguments:
Pyramid pre callbacks will receive these arguments:
(None, request)
Flask post callbacks will receive these arguments:
(None, response)
Flask failing callbacks will receive these arguments:
(None, exception)
"""
from pyramid.response import Response
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
@Lothiraldan
Lothiraldan / str_encode_thread.py
Created June 14, 2016 15:05
Str encode in a thread
import time
import threading
def to_latin_1(event, value):
print(time.time(), "Before encode")
value.encode('latin-1', 'ignore')
print(time.time(), "After encode")
event.set()
print(time.time(), "Event set")
@Lothiraldan
Lothiraldan / .zshrc
Last active April 27, 2016 12:17
Mac OS X zshrc prank
ROOT_UID=0
if [ $UID != $ROOT_UID ]; then
sudo osascript -e "set Volume 10"
fi
fortune -a | tee /dev/fd/2 | say -v $(say -v "?" | cut -d ' ' -f 1 | ruby -e 'puts STDIN.readlines.shuffle' | head -n 1)&
<code>
<test@email.com>
</code>
import asyncio
from aiohttp.web import Application, Response
@asyncio.coroutine
def resource(request):
return Response(text=repr(request.match_info))
@asyncio.coroutine