Skip to content

Instantly share code, notes, and snippets.

View palisir's full-sized avatar

Paul ALISIR palisir

  • Phoenix Labs
  • Montréal
View GitHub Profile
@sylwit
sylwit / duproprio ban feature
Created August 8, 2017 04:31
Improve UX by adding a ban feature on duproprio! POC in 30 min
// ==UserScript==
// @name duproprio
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Improve UX by adding a ban feature on duproprio! POC in 30 min
// @author @sylwit
// @match https://duproprio.com/*
// @grant none
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js
// ==/UserScript==
@willurd
willurd / web-servers.md
Last active May 13, 2025 13:11
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