Skip to content

Instantly share code, notes, and snippets.

@jasonblanchard
jasonblanchard / README.md
Last active July 1, 2022 00:19 — forked from int128/README.md
Watching build mode on Create React App

Create React App does not provide watching build mode oficially (#1070).

This script provides watching build mode for an external tool such as Chrome Extensions or Firebase app.

How to Use

Create a React app.

Put the script into scripts/watch.js.

@zcorpan
zcorpan / quirks_doctypes_2016_06_01.csv
Last active January 18, 2017 16:50
httparchive pages in quirks mode and their doctypes
We can't make this file beautiful and searchable because it's too large.
url,doctype
http://www.emersoncentral.com/,""""""
http://www.lowesvisacredit.com/,""""""
http://www.tgatas.net/,""""""
http://www.alf.nu/,""""""
http://www.dormir-moins-bete.com/,""""""
http://www.beatcenter.ir/,""""""
http://www.dimerc.cl/,""""""
http://www.skymovies99.wapka.me/,""""""
http://www.qwe.jp/,""""""
@ericelliott
ericelliott / essential-javascript-links.md
Last active May 17, 2024 03:38
Essential JavaScript Links
@JoshuaEstes
JoshuaEstes / 000-Cheat-Sheets.md
Last active May 1, 2024 04:03
Developer Cheat Sheets for bash, git, gpg, irssi, mutt, tmux, and vim. See my dotfiles repository for extra info.
@liamcurry
liamcurry / gist:2597326
Created May 4, 2012 19:56
Vanilla JS vs jQuery

Moving from jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})