Skip to content

Instantly share code, notes, and snippets.

View saivarunk's full-sized avatar
💭
drowned into k8s

Varun Kruthiventi saivarunk

💭
drowned into k8s
View GitHub Profile
# Reference: https://github.com/tzutalin/labelImg/issues/141
# create conda env using python 2.7
conda create -n py2 python=2.7
source activate py2
# install necessary libs using conda install
conda install pyqt=4
conda install libxml2
conda install lxml
@willurd
willurd / web-servers.md
Last active May 16, 2025 23:15
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