Skip to content

Instantly share code, notes, and snippets.

@olenhad
olenhad / playwav.clj
Created December 16, 2012 17:05
Simple wav player using java sound
(ns sound.core
(:import (java.io File)
(javax.sound.sampled AudioFormat AudioInputStream AudioSystem DataLine DataLine$Info LineUnavailableException SourceDataLine)))
(defn play-sound [filename]
(let
[
sfile (new File filename)
ainput (AudioSystem/getAudioInputStream sfile)
aformat (.getFormat ainput)
info (DataLine$Info. SourceDataLine aformat)
@olenhad
olenhad / gist:3755065
Created September 20, 2012 10:14
Cute gmail chat flood hack
var intervalId = setInterval(function teaseMina(){document.getElementsByClassName("ad3")[0].value=document.getElementsByClassName("ad3")[0].value+"\nMina"},100);
//To stop: clearInterval(intervalId);