Skip to content

Instantly share code, notes, and snippets.

@willurd
willurd / web-servers.md
Last active May 7, 2024 14:57
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000
@attilam
attilam / PostprocessBuildPlayer
Created February 19, 2013 08:39
Unity3D iOS: Auto add 'Application supports iTunes file sharing' to Info.plist
#!/bin/bash
plist=$1"/Info.plist"
/usr/libexec/PlistBuddy -c "Add :UIFileSharingEnabled bool true" $plist