Skip to content

Instantly share code, notes, and snippets.

View DrummerHead's full-sized avatar
💭
Eternally Elated

DrummerHead DrummerHead

💭
Eternally Elated
View GitHub Profile
@DrummerHead
DrummerHead / index.html
Created February 11, 2012 03:34
Wroc_badge
<a href='http://wrocloverb.com/' rel='external' id='wroc'>I&#8217;m Speaking at Wroc_love.rb! A fresh Ruby Conference</a>
<!-- Make sure to add this code in a place where its positioned parent renders in the same place as the viewport... try putting it in different places until you see that the dude goes to the right and up of the window -->
@DrummerHead
DrummerHead / webAudioDrumMachine-DHBeat.js
Created April 1, 2012 21:10
WebAudio Drum Machine - DH Beat
// SaveFile of
// http://chromium.googlecode.com/svn/trunk/samples/audio/shiny-drum-machine.html
// Press load and paste the following json
{"kitIndex":4,"effectIndex":0,"tempo":124,"swingFactor":0,"effectMix":0.25,"kickPitchVal":0.21739130434782605,"snarePitchVal":0.5434782608695652,"hihatPitchVal":0.5652173913043479,"tom1PitchVal":0.5,"tom2PitchVal":0.5,"tom3PitchVal":0.5,"rhythm1":[2,0,0,1,0,0,2,0,0,1,0,0,2,0,0,1],"rhythm2":[0,1,0,0,0,0,2,0,0,0,0,1,0,0,0,0],"rhythm3":[0,1,2,0,0,2,1,0,0,1,2,0,0,2,1,0],"rhythm4":[1,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0],"rhythm5":[0,0,2,0,0,0,0,1,0,0,0,0,2,0,0,0],"rhythm6":[0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,1]}
@DrummerHead
DrummerHead / nomegusta
Created May 13, 2012 00:11
Estandar nomegusta para Facebook
// Estandar nomegusta para Facebook
#nomegusta(@nombreDelUsuario, n)
// habiendo @nombreDelUsuario comentado x veces en un thread dado, n es el número del comentario de la persona
// que uno desea expresar que no te gusta. Me parece mas efectivo contar los comentarios de la persona en un
// thread vs contar todos los comentarios, ya que hay que contar menos.
// Ya que los tragasables de fasebú no tienen downvotes, propongo un estandar de comentario que si bien
// es un string del orto, al menos demuestra el hecho de que algo no te gusta. Y en sí es lo mismo que
@DrummerHead
DrummerHead / hideliminator.js
Created May 20, 2012 21:05
Just to show a comrade to debug this stuff
/* - These is a javascript snippet to be used with
http://mcdlr.com/js-inject/ - */
/* - Hideliminator - Any website - *\
|* - Hide elements on command - *|
\* - v1.0 - */
var h1d3l1m1n4t04 = {
@DrummerHead
DrummerHead / gist:2795222
Created May 26, 2012 20:33
MS ASQ Query to find songs related to a word
filename:query kind:music NOT kind:folder NOT kind:m3u
@DrummerHead
DrummerHead / servo.rb
Last active October 10, 2015 05:18
Lean UX Crowd-Sourced User-Validated Synergized Ruby Server for Lean Localhost testing
require 'webrick'
include WEBrick
class NonCachingFileHandler < HTTPServlet::FileHandler
def prevent_caching(res)
res['ETag'] = nil
res['Last-Modified'] = Time.now + 100**4
res['Cache-Control'] = 'no-store, no-cache, must-revalidate, post-check=0, pre-check=0'
res['Pragma'] = 'no-cache'
res['Expires'] = Time.now - 100**4
@DrummerHead
DrummerHead / steamGamesReview.js
Last active December 11, 2015 01:18
Too many Steam Games bought that you may don't even know about? Use this script to get YouTube and Metacritic reviews and get to know what they are all about.
// Go to http://steamcommunity.com/id/{{USERNAME}}/games/?tab=all&sort=name
// for example: http://steamcommunity.com/id/DrummerHead/games/?tab=all&sort=name
// now copy and paste this into your console:
// ( what is a console? http://webmasters.stackexchange.com/questions/8525/how-to-open-the-javascript-console-in-different-browsers )
var games = document.querySelectorAll('.gameListRowItemName');
var engines = {
youtube : function(query) {
@DrummerHead
DrummerHead / loggy
Last active December 15, 2015 08:49
Get a lovely string that resumes what you've been working on
#!/Users/dh/.rvm/rubies/ruby-1.9.3-p362/bin/ruby -w
magia = %x[git log --pretty=oneline --no-merges --author=DrummerHead --since='yesterday']
unless magia.empty?
magia.gsub!(/^\w* /, "").gsub!(/\n/, "; ")
puts magia
else
puts "Gotta worky work!"
end
#!/usr/bin/ruby
# requires: jpegtran and pngcrush
# brew install libjpeg
# brew install pngcrush
#
# "crushimg" on a directory will look for jpg and png files, compress them using
# jpegtran and pngcrush and return a new file with an "-optimized" suffix.
# it will not traverse the child directories (not recursive)
#
@DrummerHead
DrummerHead / scrape_yourscenesucks.rb
Created May 22, 2013 23:35
Get a list of all the 'scenes' and links to the music related to the scene
require 'nokogiri'
require 'open-uri'
# Scarpe the site and aquire a lovely array
doc = Nokogiri::HTML(open('http://www.dobi.nu/yourscenesucks/left2.htm'))
root = 'http://www.dobi.nu/yourscenesucks/'
scene_links = []