This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// FLATTEN INTEGERS ///////////////////////////////////////////////////////////////////// | |
const flattenIntegers = ints => | |
///// Transforms nested lists of integers into a flat list of integers. | |
///// e.g. 1 -> error | |
///// e.g. [ 1 ] -> [1 ] | |
///// e.g. [[1,2,[3]],4] -> [1,2,3,4] | |
{ | |
const concatLists = lists => |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying my Blockstack ID is secured with the address 1K6Gi3PMSUNhwZ8iCKPwVgxe9CPaQhUtRw https://explorer.blockstack.org/address/1K6Gi3PMSUNhwZ8iCKPwVgxe9CPaQhUtRw |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name HackerNews GPT-Free Feed | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Hides any Hacker News story with "GPT" in its title. | |
// @author Taylor Troesh | |
// @include https://news.ycombinator.com/* | |
// @grant none | |
// ==/UserScript== |