Skip to content

Instantly share code, notes, and snippets.

View ccnokes's full-sized avatar

Cameron Nokes ccnokes

View GitHub Profile
@ccnokes
ccnokes / set-wallpaper-to-apod.sh
Last active May 18, 2019 17:08
Set your wallpaper to the current Astronomy Picture of the Day (APOD)
# get the URL of the current Astronomy Picture of the Day (APOD)
apod_url=$(curl -s https://api.nasa.gov/planetary/apod?api_key=DEMO_KEY | jq -r '.hdurl')
# get just the image name from the URL
filepath=$(basename "$apod_url")
# Now get the image and save it
curl -s -o "$filepath" "$apod_url"
# Use AppleScript to set it as the wallpaper
@ccnokes
ccnokes / task-queue.js
Last active June 28, 2018 04:14
Task queue with configurable concurrency and priority. Demo: https://jsfiddle.net/ccnokes/6hb92mde/
// see demo: https://jsfiddle.net/ccnokes/6hb92mde/
class Deferred {
constructor() {
this.promise = new Promise((resolve, reject) => {
this.resolve = resolve;
this.reject = reject;
});
this.then = this.promise.then.bind(this.promise);
this.catch = this.promise.catch.bind(this.promise);
}
@ccnokes
ccnokes / batch-async-tasks-v2.js
Last active June 25, 2018 19:29
Chunk async tasks into batches and process in parallel v2. Demo: https://jsfiddle.net/ccnokes/jhu635r8
// see working demo here: https://jsfiddle.net/ccnokes/jhu635r8/73/
async function runTasks(taskFns /* Array<() => Promise<any>> */, concurrency = 3) {
let results = [];
taskFns = new Set(taskFns);
let pending = new Set();
for (let task of taskFns) {
if (pending.size >= concurrency) {
await Promise.race(pending);
}
@ccnokes
ccnokes / batch-async-tasks.js
Last active January 15, 2019 09:51
Chunk async tasks into batches and process in parallel
// dummy async task
function asyncTask(n) {
return new Promise(resolve => setTimeout(() => resolve(n), 500));
}
// takes a flat array and returns a nested one, eg. chunkArray([1,2,3], 1) ==> [[1],[2],[3]]
function chunkArray(arr, chunkSize) {
return arr.reduce((aggr, item) => {
let lastArr = aggr[aggr.length - 1];
if (lastArr.length < chunkSize) {
@ccnokes
ccnokes / fifo_test.sh
Created June 2, 2018 04:52
Bash fifos
mkfifo fifo
# produce data and send into fifo
# have to background it because it blocks until the fifo drains/completes
ls -l > fifo &
cat fifo # this drains it and completes the job
@ccnokes
ccnokes / Deferred.ts
Last active March 23, 2018 19:28
AngularJS $q style deferred from a native Promise, in TypeScript
class Deferred<T = any> {
resolve: (value?: T | PromiseLike<T>) => void;
reject: (reason?: any) => void;
promise = new Promise<T>((resolve, reject) => {
this.resolve = resolve;
this.reject = reject;
});
then = this.promise.then.bind(this.promise);
@ccnokes
ccnokes / async-serial-queue.ts
Last active March 23, 2018 19:12
Queues async actions so they occur one after another
// class version
class Queue {
private p: Promise<any> = Promise.resolve();
push<T = any>(fn: () => Promise<any>): Promise<T> {
this.p = this.p
.then(() => fn())
.catch(err => {
console.error(err);
return fn(); //keep going to next queued
@ccnokes
ccnokes / tsconfig-for-npm-sample.json
Created March 8, 2018 03:50
Sample, minimal tsconfig.json for NPM package
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"lib": ["es2017", "es7", "es6", "dom"],
"declaration": true,
"outDir": "dist",
"strict": true,
"esModuleInterop": true
},
@ccnokes
ccnokes / ts-npm-package-sample.json
Created March 8, 2018 03:48
Sample package.json for a TS lib that's published to NPM
{
"name": "my-ts-lib",
"version": "1.0.0",
"description": "My npm package written in TS",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc"
},
"author": "Cameron Nokes",
@ccnokes
ccnokes / modulo-use-cases.js
Last active March 2, 2018 17:55
Modulo use cases because math is hard
// find if number is even or odd
const isEven = val => val % 2 === 0;
isEven(11); //false
isEven(22); //true
// do time related things...
const formatMovieTime = val => {
const hours = Math.floor(val / 60); //get the hours, discard any remainder via `floor`
const mins = val % 60; //get the remainder of minutes left over as an integer
return `${hours}:${mins < 10 ? '0' + mins : mins}`;