This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Just overriding the main SVN command | |
# So we can catch any requests to tag | |
# @javajawa++ | |
function svn | |
{ | |
case "$1" in | |
tag) | |
if [ ! -d ".svn" ]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A really nice way to dynamically load JavaScript files. | |
* Place this at the bottom of HTML files to load JavaScripts after pageload! :) | |
* | |
* The cake is still a lie. | |
*/ | |
(function(d, scripts){ | |
for(var id in scripts) if (d.getElementById(id) == null) { | |
var js = d.createElement('script'); js.id = id; js.src = scripts[id]; | |
d.body.appendChild(js); |
NewerOlder