Skip to content

Instantly share code, notes, and snippets.

View ggalmazor's full-sized avatar
🏠
Working from home

Guillermo Gutiérrez ggalmazor

🏠
Working from home
View GitHub Profile
# execute at home
cd
# Install Xcode
xcode-select --install
# Download gitconfig
curl -O https://gist.githubusercontent.com/endSly/0d2e9a7e6d3cf44a274a/raw/.gitconfig
curl -O https://gist.githubusercontent.com/endSly/fe1a8b44782d5a6f99c8/raw/.gitignore_global
@willurd
willurd / web-servers.md
Last active May 7, 2024 04:58
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