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
/** | |
* Parse takes a string and returns a nested array. The array nests | |
* to a deeper level for each [[enclosed double bracket pair]]. | |
* | |
* eg: | |
* | |
* // Output: ['It goes ', ['deeper and ', ['deeper.']]] | |
* parse('It goes [[deeper and [[deeper.]]]]'); | |
*/ | |
function parse(str, startIdx = 0, isChild = false) { |
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
// These comparison functions only work for arrays with the following child types: | |
// | |
// - Arrays | |
// - Values that can be directly compared with === | |
// | |
// If your array contains functions or objects, go away! | |
// Solution 1: recursive comparison; 94 chars. | |
let f=Array.isArray,c=(x,y)=>f(y)&&x.length==y.length&&x.every((a,i)=>f(a)?c(a,y[i]):a===y[i]) |
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
/* | |
.m Masonry class | |
.v Vertical align | |
.s_ Size | |
*/ | |
.s7 { | |
font-size: var(--s7); | |
} | |
.v .s7 { | |
line-height: 1.42606336em; |
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
console.log('20CEBA954FB7301896D'.split('').map(n => { | |
const b = `segments.writeStream(0b${(1 << parseInt(n, 16)).toString(2)});`; | |
return `blinkDots();\n${b}\n${b}\ndelay(100);\n`; | |
}).join('')); |
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
const ENABLE_IMAGE_ROTATIONS = true; | |
const ITERATIONS_PER_ROTATION = 10000000; | |
const MAX_GATES_TOTAL = 20; | |
const MAX_TREE_DEPTH = 6; | |
const rand = array => array[Math.floor(Math.random() * array.length)]; | |
const unique = (x, i, array) => array.indexOf(x) === i; | |
const limit = (name, f, lo, hi = lo) => (...args) => { | |
const { length: l } = args; | |
if (l < lo || l > hi) |
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
function swap(str, a, b) { | |
const ceil = str.length - 1; | |
a = Math.min(Math.max(0, a), str.length - 1) || 0; | |
b = Math.min(Math.max(0, b), ceil) || 0; | |
if (a === b) return str; | |
if (a > b) [a, b] = [b, a]; | |
return ( | |
str.slice(0, a) + str[b] + str.slice(a + 1, b) + str[a] + str.slice(b + 1) | |
); | |
} |
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
From 66880db1f100c345004710deab0c28c54e035a1e Mon Sep 17 00:00:00 2001 | |
From: Riley Shaw <[email protected]> | |
Date: Mon, 8 Jun 2020 21:35:33 -0700 | |
Subject: [PATCH] Merge remote-tracking branch 'upstream/gsoc' into | |
layout/datasets-page | |
--- | |
web/locales/ast/messages.ftl | 10 +- | |
web/locales/be/messages.ftl | 102 ++++++++++++++++++++- | |
web/locales/ml/messages.ftl | 44 +++++++-- |
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
ffmpeg -i narration.mp3 -i original.mp4 -filter_complex "[0:a][1:a]amerge,pan=stereo|c0<c0+c2|c1<c1+c3[a]" -map 1:v -map "[a]" -c:v copy -c:a aac -shortest output.mp4 |
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
:root { | |
--co: #eee; | |
--cr: #ff4136; | |
--cg: #2ecc40; | |
--cb: #0074d9; | |
--cc: #00bcd4; | |
--cm: #e91e63; | |
--cy: #ffdc00; | |
--ck: #0a0b08; | |
--cbg: #fff; |
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
// This script finds the best deals from Long & McQuade's annual | |
// blowout sale and sorts them within their respective categories. | |
// | |
// USAGE: | |
// 1. Navigate to http://promo.long-mcquade.com/SaleFlyer.php | |
// 2. Select your nearest location under "View Other Locations' Flyers Here" | |
// 3. Open your browser's Javascript console | |
// 4. Paste the contents of this file into the console | |
// 5. Optionally, replace the value of ONLY_SHOW_DEALS_BELOW_THIS_FRACTION_OF_THE_ORIGINAL_COST | |
// 6. Optionally, replace the value of I_WILL_NOT_EVEN_CONSIDER_ANYTHING_THAT_COSTS_OVER |