Skip to content

Instantly share code, notes, and snippets.

View jaydeepkarena's full-sized avatar
馃殌
Fullstack Developer

Jaydeep Karena jaydeepkarena

馃殌
Fullstack Developer
  • Navsari, Gujarat (India)
  • 22:45 (UTC +05:30)
  • X @JKarena7
View GitHub Profile
@willurd
willurd / web-servers.md
Last active July 18, 2025 18:46
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
@joyrexus
joyrexus / jq_vs_js.md
Last active April 12, 2025 09:10
Comparison of jQuery and vanilla JS for basic DOM manipulation.

jQuery vs native JS

Selecting Elements

var divs = $("div");

var divs = document.querySelectorAll("div");