Skip to content

Instantly share code, notes, and snippets.

View tonyalaribe's full-sized avatar
🎯
Focusing

Anthony Alaribe tonyalaribe

🎯
Focusing
View GitHub Profile
sportsPlayersSleeping(event) {
var sportsPlayersSleeping0 = performance.now();
let that = this;
// let dance = $("#dance");
//i'm simply replacing the jquery based access to dance, with a vanilla javascript form. This should improve performanace
let dance:Element = document.getElementById("dance")
if (!that.template) {
@tonyalaribe
tonyalaribe / player
Created May 21, 2016 20:43 — forked from isaiah/player
An audio player in golang.
package main
import (
"bytes"
"code.google.com/p/portaudio-go/portaudio"
"encoding/binary"
"fmt"
"io"
"log"
"os"