Skip to content

Instantly share code, notes, and snippets.

View GrzegorzManiak's full-sized avatar
👋

Grzegorz Maniak GrzegorzManiak

👋
View GitHub Profile
@GrzegorzManiak
GrzegorzManiak / index.js
Created December 3, 2021 18:20
Removes the annoying popup on Wikipedia asking for donations using Tamper Monkey
// ==UserScript==
// @name wikipedia donation blocker
// @namespace http://tampermonkey.net/
// @version 0.1
// @description We ask you, humbly: dont remind me again.
// @author github.com/GrzegorzManiak
// @match https://*.wikipedia.org/*
// @icon https://www.google.com/s2/favicons?domain=wikipedia.org
// @grant none
// ==/UserScript==
@GrzegorzManiak
GrzegorzManiak / gist:3e0b39286f8b8966b67c03c295d3987f
Created November 22, 2021 19:00
Ireland counties in js array
const counties = ['antrim', 'armagh', 'carlow', 'cavan', 'clare', 'cork', 'derry', 'donegal', 'down', 'dublin', 'fermanagh', 'galway', 'kerry', 'kildare', 'kilkenny', 'laois', 'leitrim', 'longford', 'louth', 'mayo', 'meath', 'monaghan', 'offaly', 'roscommon', 'sligo', 'tipperary', 'tyrone', 'waterford', 'westmeath', 'wexford', 'wicklow'];