Skip to content

Instantly share code, notes, and snippets.

View austinheap's full-sized avatar
🌈

Austin Heap austinheap

🌈
View GitHub Profile
@darkhelmet
darkhelmet / balance.go
Created June 16, 2013 05:05
Simple TCP load balancer in Go.
package main
import (
"flag"
"io"
"log"
"net"
"strings"
)
@garagesocial
garagesocial / filters.php
Last active February 6, 2023 04:11 — forked from zmsaunders/filters.php
Laravel Filter Helper - Compress HTML Output & Strip Comments
<?php
### --- Snip --- ###
App::after(function($request, $response)
{
// HTML Minification
if(App::Environment() != 'local')
{
if($response instanceof Illuminate\Http\Response)
@a-dma
a-dma / yubitouch.sh
Last active March 10, 2022 14:43
Bash script for setting or clearing touch requirements for cryptographic operations in the OpenPGP application on a YubiKey 4.
#!/bin/bash
# Bash script for setting or clearing touch requirements for
# cryptographic operations the OpenPGP application on a YubiKey 4.
#
# Author: Alessio Di Mauro <alessio@yubico.com>
GCA=$(which gpg-connect-agent)
DO=0
UIF=0
@00hello
00hello / grassland_next_steps.md
Last active September 5, 2019 20:24
Grassland Next Steps

1. Create Full Node Implementation (P2P Networking and Coin Generation) Using Rust Bitcoin

Modify Andrew Poelstra's Rust Bitcoin implementation and place inside Grassland client. Node will do object detection locally. See Issue #1

2. Reduce Memory Usage In multi_object_tracking.py

Write Numpy arrays (motion detection, tracking, etc.) to file for temporary storage when not in use. Index file using LevelDB for retrieval

3. Restore Mosse Tracker

Return tracking system back to Mosse tracker since hardware requirements are going up and weighted-average motion detection and centroid tracking alone is too inaccurate.

@jmcguirk
jmcguirk / PerformBuild.cs
Created March 8, 2013 01:56
Unity3D Ant Build Configuration
// C# example
using UnityEditor;
using System.IO;
using System.Collections;
using UnityEngine;
using System.Collections.Generic;
class PerformBuild
{
static string[] GetBuildScenes()
@assimovt
assimovt / README.md
Last active June 8, 2018 22:12
Adds Newrelic RPMs metrics to your dashboard.

Setup

Add the following gems to your Gemfile:

gem 'activeresource'
gem 'newrelic_api'

Update your bundle: