Skip to content

Instantly share code, notes, and snippets.

View taptapdan's full-sized avatar

Daniel Fiore taptapdan

View GitHub Profile
@taptapdan
taptapdan / processing-waveform01.pde
Created November 7, 2013 06:40
First attempt at rendering a waveform visualization over a background image.
import ddf.minim.*;
Minim minim;
AudioPlayer song;
PImage bg;
int one_third;
int two_third;
@taptapdan
taptapdan / image-shadow.html
Created November 6, 2013 22:29
HTML/CSS code for adding a shadow to an image.
<img src="{{IMAGE.PNG}}" style="-webkit-box-shadow: 3px 3px 3px #7C7C7C; box-shadow: 3px 3px 3px #7C7C7C;" />
@taptapdan
taptapdan / html-moodle-banner-100-percent.html
Last active December 27, 2015 15:09
HTML/CSS code to force a Moodle course banner image to resize with the browser.
<div style="text-align: center;">
<img src="{{IMAGE_FILE.PNG}}" alt="{{ALT TEXT}}" style="width: 100%;" />
</div>
@taptapdan
taptapdan / cd-hidesearch.css
Last active December 21, 2015 23:18
CD Wordpress: Hide Search Box. This is a temporary solution until the theme files can be modified.
#header #searchform {
display: none;
}
@taptapdan
taptapdan / openstudy-widget-embed
Created April 6, 2012 19:33
Embed OpenStudy Topics Widget
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="openstudy-widget.js"></script>
@taptapdan
taptapdan / hack.sh
Created April 1, 2012 02:55 — forked from erikh/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/2108403/hack.sh | sh
#