Skip to content

Instantly share code, notes, and snippets.

View allanlaal's full-sized avatar

Allan Laal allanlaal

View GitHub Profile
@allanlaal
allanlaal / stackoverflow.js
Last active December 20, 2020 13:54 — forked from machavity/gist:420197ff9108e0b757c9bbb7d487f965
Userscript: hide both sidebars on ALL Stack Overflow sites
# 2020-12-20:
Moved to https://github.com/allanlaal/hide-stackexchange-sidebars [to get a stable userscript url and have multiple flavours]
@allanlaal
allanlaal / countries.sql
Last active August 30, 2021 02:09 — forked from adhipg/countries.sql
uses InnoDB and UTF8, uses ISO2 code as the primary key
--
-- Table structure for table `country`
--
CREATE TABLE IF NOT EXISTS `country` (
`iso` char(2) COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(80) COLLATE utf8_unicode_ci NOT NULL,
`nicename` varchar(80) COLLATE utf8_unicode_ci NOT NULL,
`iso3` char(3) COLLATE utf8_unicode_ci DEFAULT NULL,
`numcode` smallint(6) DEFAULT NULL,