Skip to content

Instantly share code, notes, and snippets.

View markreid's full-sized avatar

Mark markreid

  • Culture Amp
  • Australia
View GitHub Profile
/**
* Run a series of async/promisifed functions sequentially,
* returning an array of results.
* Throws any exceptions.
*
* example:
* const values = [1, 2, 3, 4, 5];
* const callback = async (value) => await someAsyncThing(value)
* const result = await sequentialAsync(values, callback);
*
@markreid
markreid / sequential-async.js
Created January 15, 2020 23:06
run async functions sequentially via reduce
/**
* Run a series of async/promisifed functions sequentially,
* returning an array of results and errors.
*
* example:
* const values = [1, 2, 3, 4, 5];
* const callback = async (value) => await someAsyncThing(value)
* const result = await sequentialAsync(values, callback);
*
* @param {Iterable} values
@markreid
markreid / backup.sh
Created June 20, 2017 01:03
backup.sh
#!/bin/bash
set -e
# backup.sh
# makes a copy of a file, appending a datestamp and incrementing a counter
# if it's needed.
#
# ie, running this 3 times:
# backup.sh /foo/bar.qux /foo/backups
# will create:
@markreid
markreid / gitflowrebasing.md
Created January 17, 2017 04:30
git flow with rebasing

Keybase proof

I hereby claim:

  • I am markreid on github.
  • I am markreid (https://keybase.io/markreid) on keybase.
  • I have a public key ASCycZr-FHQl-mr28t-vaQdxjlg9ZZmkZIe9hIEjdIXHiAo

To claim this, I am signing this object:

@markreid
markreid / showactive.js
Created December 1, 2015 23:22
meteor show active subscriptions
// https://stackoverflow.com/questions/17221573/is-it-possible-to-view-all-active-subscriptions
var subs = Meteor.default_connection._subscriptions; //all the subscriptions that have been subscribed.
@markreid
markreid / jsquiz.md
Created October 22, 2015 06:31
JS Dev Interviewee quiz

JS Dev quiz.

Most of these questions have several possible answers and no real wrong answer. The aim of the quiz is to gauge your level of experience with software development in general but also your experience working directly in Javascript, so add as much detail as possible, explain how you arrived at your answer, etc.

Some of the questions are quite difficult or confusing, so don't worry too much if you're not sure about the answers; a couple of them are deliberately designed to be hard to solve!

General questions

  1. Describe the stack for a recent project that you found interesting.
#!/usr/bin/perl
# Author: Todd Larason <jtl@molehill.org>
# $XFree86: xc/programs/xterm/vttests/256colors2.pl,v 1.2 2002/03/26 01:46:43 dickey Exp $
# use the resources for colors 0-15 - usually more-or-less a
# reproduction of the standard ANSI colors, but possibly more
# pleasing shades
# colors 16-231 are a 6x6x6 color cube
for ($red = 0; $red < 6; $red++) {
@markreid
markreid / solarized.vim
Created December 5, 2014 01:49
solarized vim theme
" Name: Solarized vim colorscheme
" Author: Ethan Schoonover <es@ethanschoonover.com>
" URL: http://ethanschoonover.com/solarized
" (see this url for latest release & screenshots)
" License: OSI approved MIT license (see end of this file)
" Created: In the middle of the night
" Modified: 2011 May 05
"
" Usage "{{{
"
@markreid
markreid / gist:a293b37b5d4ec176d448
Created December 1, 2014 00:51
jasmine 1.3 async
var hasRun = false;
var job;
runs(function(){
addJob(function(returnedJob){
// this is some asynchronous thing
job = returnedJob;
hasRun = true;
})