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
SetTitleMatchMode, Fast | |
^u:: ; Hit ctrl+u over IE to show page source | |
WinGetActiveTitle, MyTitle | |
If (RegexMatch(MyTitle, "i)(.*)Windows Internet Explorer")) ; If windows internet explorer is found at the end of the window title | |
{ | |
;run macro for showing source code | |
Send {Alt} |
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
{ | |
"auto_complete_commit_on_tab": true, | |
"color_scheme": "Packages/iaian-theme/solarizedDark-IaianMod.tmTheme", | |
"detect_slow_plugins": false, | |
"font_size": 10, | |
"hot_exit": false, | |
"ignored_packages": | |
[ | |
"Vintage", | |
"Emmet" |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>name</key> | |
<string>Solarized (dark)</string> | |
<key>settings</key> | |
<array> | |
<dict> | |
<key>settings</key> |
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
{ | |
"always_show_minimap_viewport": true, | |
"auto_complete_commit_on_tab": true, | |
"auto_complete_with_fields": true, | |
"color_scheme": "Packages/User/SublimeLinter/solarizedDark-IaianMod (SL).tmTheme", | |
"folder_exclude_patterns": | |
[ | |
".svn", | |
".git", | |
".hg", |
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
.container { | |
margin-right:auto; | |
margin-left:auto; | |
padding-left:15px; | |
padding-right:15px | |
} | |
.container:after, .container:before { | |
content:" "; | |
display:table | |
} |
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 get_random_color() { | |
var letters = '0123456789ABCDEF'.split(''), | |
color = '#'; | |
for (var i = 0; i < 6; i++ ) { | |
color += letters[Math.round(Math.random() * 15)]; | |
} | |
return color; | |
} |
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
// ---- | |
// Sass (v3.4.7) | |
// Compass (v1.0.1) | |
// ---- | |
#footer-main { | |
h3 { | |
text-transform: uppercase; | |
color: #fff; | |
} |
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 showMobileCart() { | |
var isMobile = $(window).width() < 768 ? true : false, | |
isNavOpen = $('#mainMenu').hasClass('in'); | |
if (isMobile && !isNavOpen) { | |
$('.navbar-toggle').click(); | |
setTimeout(function() { | |
$('#dropDown-cart').click(); | |
}, 400); | |
} |
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 isWorkday() { | |
var date = new Date, | |
thisHour = date.getHours(); | |
if (thisHour < 9 || thisHour > 16 ) { | |
return false; | |
} else { | |
return true; | |
} | |
} |
OlderNewer