Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
#Easy install for new linux machine
#Personal Access Token is required to download Assets repo as its curerntly private
#This script - tested with vanilla Ubuntu 20.04.01LTD
# - Install Dependencies
# - Build All relevant Asset binaries
# - Run Full suite of tests
#!/bin/bash
if [ $# -eq 0 ]; then
echo "Please provide a github Personal Access Token"
exit 1
fi
sudo apt update
sudo apt -y install make cmake git net-tools protobuf-compiler golang
git clone https://github.com/apache/incubator-milagro-crypto-c.git && \
@fluidjax
fluidjax / mac-arch.md
Last active February 18, 2020 10:09 — forked from gilbertw1/mac-arch.md
Macbook Arch Guide

Keybase proof

I hereby claim:

  • I am fluidjax on github.
  • I am chrismorris (https://keybase.io/chrismorris) on keybase.
  • I have a public key ASBD20oOHAv-rlJzqiTo4WlXalHxT9P5RnpUncbyV_zvXwo

To claim this, I am signing this object:

@fluidjax
fluidjax / TouchPriority.h
Last active October 25, 2015 16:18 — forked from bobmoff/TouchPriority.h
Additional fix (Added touchesMoved) to solution to the userInteractionEnabled-problem in SpriteKit: http://stackoverflow.com/questions/19511334/sprite-with-userinteractionenabled-set-to-yes-does-not-receive-touches-when-cove
//
// SKNode+TouchPriority.h
// ButtonLab
//
// Created by Fille Åström on 10/20/13.
// Copyright (c) 2013 IMGNRY. All rights reserved.
//
#import <SpriteKit/SpriteKit.h>