Skip to content

Instantly share code, notes, and snippets.

@turtleDev
turtleDev / pack.lua
Last active July 15, 2020 14:51
pack.lua | The Lua module bundler
#!/usr/bin/env lua
--[[
The MIT License
Copyright (C) 2017 Saravjeet 'Aman' Singh
<saravjeetamansingh@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
@phrawzty
phrawzty / 2serv.py
Last active April 26, 2024 03:28
simple python http server to dump request headers
#!/usr/bin/env python2
import SimpleHTTPServer
import SocketServer
import logging
PORT = 8000
class GetHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):