Skip to content

Instantly share code, notes, and snippets.

View kiwiroy's full-sized avatar
🥝
Nom

Roy Storey kiwiroy

🥝
Nom
View GitHub Profile
@kiwiroy
kiwiroy / .gitignore
Last active September 23, 2021 03:22 — forked from michaelfung/unhand.t
test case for unhandled promise warning
/local/

Keybase proof

I hereby claim:

  • I am kiwiroy on github.
  • I am kiwiroy (https://keybase.io/kiwiroy) on keybase.
  • I have a public key ASD1N7MlRp-BARORAS7gILH8PYpTlauz6Sfoo7vGhqeNLwo

To claim this, I am signing this object:

@kiwiroy
kiwiroy / freebsd-qemu-xhyve-mac-os-x-virtual-machine.md
Last active January 9, 2018 21:42 — forked from zg/freebsd-qemu-xhyve-mac-os-x-virtual-machine.md
Create FreeBSD virtual machine using qemu. Run the VM using xhyve.

TL;DR

  • Create 10GB FreeBSD image using QEMU.
  • Run the VM using xhyve.
  • Mount host directory.
  • Resize the image.

Requisites

Data science goals

@kiwiroy
kiwiroy / gh-pages-deploy.md
Created September 23, 2015 08:10 — forked from cobyism/gh-pages-deploy.md
Deploy to `gh-pages` from a `dist` folder on the master branch. Useful for use with [yeoman](http://yeoman.io).

Deploying a subfolder to GitHub Pages

Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.

For the sake of this example, let’s pretend the subfolder containing your site is named dist.

Step 1

Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).

@kiwiroy
kiwiroy / 0_reuse_code.js
Created May 14, 2014 01:00
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
#!/usr/bin/env perl
use Mojolicious::Lite;
use Mango;
use Mango::BSON 'bson_oid';
helper mango => sub { state $mango = Mango->new($ENV{PASTEDB}) };
helper pastes => sub { shift->mango->db->collection('pastes') };
get '/' => 'submit';
# creates a sparsebundle disk image with a 128MB band size
MACHINE_NAME=your-machine-name
echo $MACHINE_NAME
hdiutil create -size 900g -type SPARSEBUNDLE -nospotlight -volname "Backup of $MACHINE_NAME" -fs "Case-sensitive Journaled HFS+" -imagekey sparse-band-size=262144 -verbose ./$MACHINE_NAME.sparsebundle