Skip to content

Instantly share code, notes, and snippets.

View demianbrecht's full-sized avatar

Demian Brecht demianbrecht

View GitHub Profile
data = [
{
"id": 0,
"name": "Americano",
"price": 1.99
},
{
"id": 1,
"name": "Espresso",
"price": 1.49
@demianbrecht
demianbrecht / arch-linux-install
Created March 30, 2020 04:20 — forked from mattiaslundberg/arch-linux-install
Minimal instructions for installing arch linux on an UEFI system with full system encryption using dm-crypt and luks
# Install ARCH Linux with encrypted file-system and UEFI
# The official installation guide (https://wiki.archlinux.org/index.php/Installation_Guide) contains a more verbose description.
# Download the archiso image from https://www.archlinux.org/
# Copy to a usb-drive
dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux
# Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration.
# Set swedish keymap
@demianbrecht
demianbrecht / names.java
Created March 25, 2019 19:42 — forked from egrim/names.java
Names to be sorted
public class Names {
public final static String[] NAMES = {
"Britteny Bisignano",
"Vania Millikan",
"Ching Atnip",
"Willie Happ",
"Renata Dower",
"Jillian Beauchemin",
"Garth Bixby",
"Jared Honea",
### Keybase proof
I hereby claim:
* I am demianbrecht on github.
* I am demianbrecht (https://keybase.io/demianbrecht) on keybase.
* I have a public key whose fingerprint is 9ACF B014 BA1E 5B49 39AC A3B2 14E4 E967 42F2 2903
To claim this, I am signing this object:
### Keybase proof
I hereby claim:
* I am demianbrecht on github.
* I am demianbrecht (https://keybase.io/demianbrecht) on keybase.
* I have a public key ASAjnGMDvetEdQG2Y1LqHHKt95oUkYpz6AMU0Hg6-AwDjwo
To claim this, I am signing this object:
@demianbrecht
demianbrecht / docker-clean
Created March 6, 2016 01:28
Dealing with docker "no space on device" error
#!/bin/sh
docker rm $(docker ps -aqf status=exited)
docker-machine ssh default docker volume rm $(docker-machine ssh default docker volume ls -qf dangling=true)
@demianbrecht
demianbrecht / gist:f94be5a51e32bb9c81e1
Created March 31, 2015 16:40
http.client content length
def _get_content_length(body, method):
# Get the content-length based on the body. If the body is "empty", we
# set Content-Length: 0 for methods that expect a body (RFC 7230,
# Section 3.3.2). If the body is set for other methods, we set the
# header provided we can figure out what the length is.
if not body:
# do an explicit check for not None here to distinguish between unset
# and set but empty
if method.upper() in _METHODS_EXPECTING_BODY or body is not None:
return 0
@demianbrecht
demianbrecht / cherrypy_chunked.py
Created March 7, 2015 07:44
chunked request tests
#!/usr/bin/env python
import cherrypy
from pprint import pprint
class Root:
@cherrypy.expose
def index(self):
pprint(cherrypy.request.headers)
print(cherrypy.request.body.read())
return ''
tcpdump: listening on lo0, link-type NULL (BSD loopback), capture size 1514 bytes
09:05:27.922494 IP (tos 0x0, ttl 64, id 40658, offset 0, flags [DF], proto TCP (6), length 64, bad cksum 0 (->9de3)!)
127.0.0.1.61438 > 127.0.0.1.61437: Flags [S], cksum 0xfe34 (incorrect -> 0xc750), seq 1921818310, win 65535, options [mss 16344,nop,wscale 4,nop,nop,TS val 915214250 ecr 0,sackOK,eol], length 0
0x0000: 4500 0040 9ed2 4000 4006 0000 7f00 0001 E..@..@.@.......
0x0010: 7f00 0001 effe effd 728c 9ec6 0000 0000 ........r.......
0x0020: b002 ffff fe34 0000 0204 3fd8 0103 0304 .....4....?.....
0x0030: 0101 080a 368d 0faa 0000 0000 0402 0000 ....6...........
09:05:27.922543 IP (tos 0x0, ttl 64, id 41949, offset 0, flags [DF], proto TCP (6), length 64, bad cksum 0 (->98d8)!)
127.0.0.1.61437 > 127.0.0.1.61438: Flags [S.], cksum 0xfe34 (incorrect -> 0x8e38), seq 3187291349, ack 1921818311, win 65535, options [mss 16344,nop,wscale 4,nop,nop,TS val 915214250 ecr 915214250,sackOK,eol], length 0
0x0000: 450
@demianbrecht
demianbrecht / hook.py
Created January 14, 2015 16:26
Overriding stdlib http package
import sys
from importlib import invalidate_caches
from importlib.abc import MetaPathFinder
from importlib.machinery import ModuleSpec, SourceFileLoader
from os.path import dirname, join, abspath, isdir, isfile
class Finder(MetaPathFinder):
def find_spec(self, fullname, path, target=None):