Skip to content

Instantly share code, notes, and snippets.

View avh4's full-sized avatar

Aaron VonderHaar avh4

View GitHub Profile

Keybase proof

I hereby claim:

  • I am avh4 on github.
  • I am avh4 (https://keybase.io/avh4) on keybase.
  • I have a public key whose fingerprint is 77C4 B904 349C F1E5 5BBD 8FE4 79AC 6B2F 3F6C CA93

To claim this, I am signing this object:

@avh4
avh4 / ARCUtil.h
Last active August 29, 2015 14:03
ARC release/retain/retainCount
// You shouldn't normally want these, but if you are debugging or working on dark magic,
// here is how you can call retain/release/retainCount in ARC
// From http://stackoverflow.com/a/15707096
#define ARCRetain(...) { void *retainedThing = (__bridge_retained void *)__VA_ARGS__; retainedThing = retainedThing; }
#define ARCRelease(...) { void *retainedThing = (__bridge void *) __VA_ARGS__; id unretainedThing = (__bridge_transfer id)retainedThing; unretainedThing = nil; }
// From http://stackoverflow.com/a/8963645
#define ARCRetainCount(obj) CFGetRetainCount((__bridge CFTypeRef)NSApp)
var playerData = {
"U123": { name: "RockMAN", score: 150, wins: 1, losses: 200, currentGame: false, position: {} },
"U888": { name: "Jenny", score: 2, wins: 1, losses: 0, currentGame: "G1", position: {} },
"U007": { name: "Johnny", score: 0, wins: 0, losses: 0, currentGame: "G2", position: {} }
};
var activeGames = {
"G1": { players: ["U555", "U888"], found: true, results: {"U555": "U555", "U888": "U555"} },
"G2": { players: ["U123", "U007"], found: false, results: {} }
@avh4
avh4 / gist:9560454
Created March 15, 2014 01:24
Stable testing with fluentlenium + angularjs
public class IntegrationTestBase extends FluentTest {
private static final String ngAppElement = "html";
private static final String markerClass = "angularReady";
public void waitForAngular() {
executeScript(
"angular.element(document.querySelector('body')).removeClass('" + markerClass + "');" +
"angular.element(document.querySelector('" + ngAppElement + "'))" +
" .injector().get('$browser').notifyWhenNoOutstandingRequests("+
" function() {" +
@avh4
avh4 / TestBus.java
Created February 2, 2014 17:04
Helper for testing the Otto EventBus
package net.avh4.test.otto;
import com.squareup.otto.ThreadEnforcer;
import java.util.ArrayList;
import static org.hamcrest.Matchers.hasItem;
import static org.junit.Assert.assertThat;
public class TestBus extends com.squareup.otto.Bus {
@avh4
avh4 / hide_desktop_icons.sh
Created November 28, 2013 20:36
Hide your desktop icons on Max OS X.
#!/bin/bash
defaults write com.apple.finder CreateDesktop -bool false
killall Finder
@avh4
avh4 / btsync.sh
Created October 30, 2013 04:51
startup script for running BitTorrent Sync on Synology NAS
#!/bin/sh
#
# Put this file in /usr/local/etc/rc.d/btsync.sh
case "$1" in
stop)
echo "Stop BitTorrent Sync..."
kill "`cat /volume1/homes/btsync/bin/.sync/sync.pid`"
kill "`cat /volume1/homes/btsync/bin/.sync/sync.pid`"
@avh4
avh4 / pom.xml (partial)
Created September 24, 2013 07:03
Configuring maven project to deploy on Sonatype with maven-jgitflow-plugin
...
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
...
#!/usr/bin/python
"""md5dir -- Recursive MD5 checksums for files which move around
Usage: md5dir [options] [directories]
Without options it writes an 'md5sum' file in each subdirectory
containing MD5 checksums for that directories files.
During this it outputs progress dots, and then prints out the names of
@avh4
avh4 / CustomWidget.java
Created May 24, 2013 02:55
CustomWidget implementation in Java
public class CustomWidget extends JComponent {
private List<RenderingCommand> rendering;
public void draw(List<RenderingCommand> rendering) {
this.rendering = rendering;
repaint();
}
public void paintComponent(Graphics g) {
for (RenderingCommand command : rendering) {