This file contains 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
// Run via OS X Terminal.app to block junk tweets in Tweetie. | |
// Info: http://atebits.posterous.com/test-filtering-in-tweetie-for-mac | |
defaults write com.atebits.tweetie-mac filterTerms -array "@gowalla" "http://gowal.la" "@foursquare" "http://4sq.com" "#followfriday" |
This file contains 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
/* | |
1. Goto applications folder and right-click (Control + click) the Skype icon and select "Show Package Contents" | |
2. Go to Content > Resources > ChatStyles > Panamericana.SkypeChatStyle and right-click (Control + click) the Skype icon and select "Show Package Contents" | |
3. Go to Content > Resources > css > main.css and replace the body {} styles with the below styles. Save the file. | |
4. Restart Skype |
This file contains 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
(function colorScheme() { | |
var h = Math.floor(Math.random() * 360), // Hue | |
// Border Sides | |
sides = ["top", "right", "bottom", "left"], | |
// Elements | |
backgroundColor = ["#doily span", "#content h3", "nav h3", "#bg_color"], | |
color = ["a:not(#social a)", "#doily b"], | |
borderColor = ["#page_header", "#doily", "#content h3"], | |
// Misc Variables | |
a, i; |
This file contains 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
/* Overrides the styles on http://grab.by | |
* Mostly it gets rid of the annoying sidebar with advertising */ | |
#sidebar { display: none !important; } | |
#viewgrab { margin: 10px; } |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Cramer Development, Inc. - Web Development</title> | |
<meta charset="UTF-8" /> | |
<style> | |
body { width: 80%; margin: 0 auto; text-align: center; background-color: #1A1A1A; } | |
div#main { margin-top: 300px; } | |
img { border: none; } | |
</style> |
This file contains 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
#capital { display: none !important; } | |
#application { margin-right: 0 !important; } |
This file contains 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
/* | |
* I hate how the Issue Subject field has autocomplete turned on, | |
* but others at my place of employment don't share the same sentiments | |
* so this script will turn off autocomplete locally without modifying | |
* the code base. | |
*/ | |
(function noAutoComplete() { | |
document.getElementById("issue_subject").setAttribute("autocomplete", "off"); | |
})( |
This file contains 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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<!--[if lt IE 9]> | |
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> | |
<![endif]--> | |
<style> |
This file contains 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
/* Test for iOS device, and insert class on body tag. You can't upload files | |
* on iOS devices, but you can on Android devices, so using mobile style sheets | |
* won't work for showing and hiding certain content during the sign up process. */ | |
(function isIOS() { | |
if (/iPhone|iPod|iPad/i.test(navigator.userAgent)) { | |
$('html').addClass("ios"); | |
} else { | |
$('html').addClass("no-ios"); | |
} | |
})(); |
This file contains 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
// Countdown Clock | |
function countdown(action) { | |
function countItDown() { | |
var cd = $('#countdown'); | |
if (cd.val() > 0) { | |
cd.val(cd.val() - 1); | |
setTimeout(countItDown, 1000); | |
} else { | |
clearTimeout(); |
OlderNewer