Skip to content

Instantly share code, notes, and snippets.

View svdgraaf's full-sized avatar
🎱
¯\_(ツ)_/¯

Sander van de Graaf svdgraaf

🎱
¯\_(ツ)_/¯
View GitHub Profile
@svdgraaf
svdgraaf / bitmovr.lua
Created October 4, 2010 14:41
nginx+lua+mod_cache+mod_proxy+RANGE
--
-- bitmovr.lua
-- simple lua webserver which starts to listen on a socket, and
-- forwards all GET calls it receives to a backend server
-- this is extremely lightweight, as it will move the bits from one
-- socket to another, without any disk i/o
--
-- Depends on md5, io, LuaSockets and Memcached.lua
--
-- Application flow:
@svdgraaf
svdgraaf / nginx byte range on proxy request
Created September 20, 2010 07:36
nginx byte request on proxied file
server {
listen *:80;
location = /crossdomain.xml {
root /var/www/html/;
}
location = /test.html {
root /var/www/html/;
}
#!/usr/bin/env python
import os
import time
from slackclient import SlackClient
slack_token = os.environ["SLACK_API_TOKEN"]
sc = SlackClient(slack_token)
stuff = {
"<@U8Q1UCGPM>": 243, # This is the slack user id
"@whatever": 2, # Regular stuff also works
@svdgraaf
svdgraaf / parse.py
Last active June 27, 2018 06:27
Embed lambda functions in cloudformation
# pip install pyminifier
# pip install yaml
import subprocess
import os
import sys
current_dir = os.path.dirname(os.path.abspath(__file__))
import yaml
@svdgraaf
svdgraaf / cards.json
Last active November 4, 2018 16:46
Raspi RFID scanner
{
"170038E91C": "1003729691",
"17003F5A1D": "1004151834"
}
@svdgraaf
svdgraaf / vcr.py
Created October 1, 2019 14:23
vcrpy example
import os
import requests
import unittest
import vcr
dir_path = os.path.dirname(os.path.realpath(__file__))
dd_vcr = vcr.VCR(
cassette_library_dir="%s/cassettes" % dir_path,
path_transformer=vcr.VCR.ensure_suffix(".yml"),
@svdgraaf
svdgraaf / build
Created September 20, 2010 05:59
nginx + geo ip + secure download
$ ./configure --add-module=/home/svdgraaf/tmp/nginx/ngx_http_bytes_filter_module-57365655ee44 --with-http_geoip_module --add-module=/home/svdgraaf/tmp/nginx/ngx_secure_download