Here are some mini exercises to challenge your jQuery skills a bit.
Create a new HTML page locally with jQuery installed in it, called jquery-hw.html
HTML
# This file is for unifying the coding style for different editors and IDEs | |
# editorconfig.org | |
root = true | |
[*] | |
end_of_line = lf | |
charset = utf-8 | |
insert_final_newline = true | |
trim_trailing_whitespace = true |
### Keybase proof | |
I hereby claim: | |
* I am atran on github. | |
* I am atran (https://keybase.io/atran) on keybase. | |
* I have a public key whose fingerprint is 2FEC 5FF8 6F8F 83F5 4528 B60D 6830 EC24 950C 0B1B | |
To claim this, I am signing this object: |
import pyaudio | |
import mad | |
import sys | |
if len(sys.argv) < 2: | |
print "Plays a wave file.\n\n" +\ | |
"Usage: %s filename.wav" % sys.argv[0] | |
sys.exit(-1) | |
mf = mad.MadFile(sys.argv[1]) |
$('body').bind 'orientationchange', (e) -> | |
orientation = if Math.abs(window.orientation) is 90 then 'landscape' else 'portrait' | |
$('body').removeClass('portrait landscape') | |
.addClass(orientation) | |
.trigger('turn', orientation: orientation) |
git rebase -i HEAD~2 | |
git push origin +master |
for i in `cat list.txt`; do wget --content-disposition $i; done |