Skip to content

Instantly share code, notes, and snippets.

@jsejcksn
jsejcksn / monty-hall.js
Last active July 27, 2019 23:48
Monty Hall problem: Simulation
#!/usr/bin/env node
'use strict';
function makeADeal (changeDoor, initialDoorNumber) {
if (initialDoorNumber && (initialDoorNumber < 1 || initialDoorNumber > 3))
throw new Error('If provided, the inital door number must be 1, 2, or 3.');
function randomInt (max = 1, min = 0) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
@jsejcksn
jsejcksn / log-inspect.js
Created January 8, 2020 21:35
Use inspect to log deep objects in Node.js
import util from 'util';
const log = (() => {
const log = (...values) => {
console.log(...values.map(value => util.inspect(value, {
colors: true,
depth: null,
getters: true,
showHidden: false,
...log.options,
@jsejcksn
jsejcksn / figma-make-components.user.js
Created February 29, 2020 23:25
Create multiple components from top level layers in Figma
(numberOfComponentsToMake => {
const wait = ms => new Promise(res => setTimeout(res, ms));
const target = document.querySelector('canvas');
const makeComponentFromSelectedLayer = () => target.dispatchEvent(new KeyboardEvent(
'keydown',
{
altKey: true,
keyCode: 75,
@jsejcksn
jsejcksn / like-yt-video.user.js
Created May 1, 2020 19:36
Smash that like button (add current YouTube video to liked videos)
(() => {
const likeVideo = () => {
const [likeButton] = [...document.querySelectorAll('button')]
.filter(node => (
typeof node.getAttribute('aria-label') === 'string'
&& node.getAttribute('aria-label').startsWith('like this video')
));
let likeAnchor = likeButton;
@jsejcksn
jsejcksn / _clone-all-gists.deno.ts
Created June 9, 2020 17:03
Clone all gists using Deno
// Deno v1.0.5
// deno run --allow-net --allow-run --allow-write --unstable _clone-all-gists.deno.ts --user your_username --token your_github_access_token [--directory parent_directory_to_clone_into]
// https://developer.github.com/v3/gists/
import * as path from 'https://deno.land/[email protected]/path/mod.ts';
import {parse} from 'https://deno.land/[email protected]/flags/mod.ts';
import {writeJson} from 'https://deno.land/[email protected]/fs/mod.ts';
type GistMetadata = {
created_at: string;
@jsejcksn
jsejcksn / clipboard.deno.test.ts
Last active June 28, 2020 01:43
Deno text clipboard
import {assert, assertEquals} from './deps.ts';
import {readText, writeText} from './mod.ts';
type Test = [string, () => void | Promise<void>];
const tests: Test[] = [
[
'reads/writes without throwing', async () => {
const input = 'hello world';
await writeText(input);