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
!function(b) { | |
var a = function(d, c, f) { | |
if (f) { | |
f.stopPropagation(); | |
f.preventDefault() | |
} | |
this.$element = b(d); | |
this.$newElement = null; | |
this.button = null; | |
this.options = b.extend({}, b.fn.selectpicker.defaults, this.$element.data(), typeof c == "object" && c); |
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
<?php | |
// Writes the appropriate #leftnav menu based on page id | |
$current_page_id = get_the_ID(); | |
$amenities_sub_nav_pages = array(34, 63); | |
if (in_array($current_page_id, $amenities_sub_nav_pages)) { | |
wp_nav_menu(array( | |
'container' => 'false', | |
'menu' => 'amenities-sub-nav', | |
'menu_id' => 'leftnav' | |
)); |
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
<?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>Ansi 0 Color</key> | |
<dict> | |
<key>Blue Component</key> | |
<real>0.0</real> | |
<key>Green Component</key> | |
<real>0.0</real> |
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
{ | |
"color_scheme": "Packages/Theme - Flatland/Flatland Dark.tmTheme", | |
"font_face": "SourceCodePro-ExtraLight", | |
"font_size": 13.0, | |
"highlight_line": false, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], | |
"line_padding_bottom": 2, |
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
$('#licksprite').addClass('lickspriteAnim'); |
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
<table> | |
<tr> | |
<td class="a1"></td> | |
<td class="b1"></td> | |
<td class="c1"></td> | |
</tr> | |
<tr> | |
<td class="a2"></td> | |
<td class="b2"></td> | |
<td class="c2"></td> |
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 | |
# ## git-chipper | |
# | |
# Author: Christopher Webb <[email protected]> | |
# Website: http://conspirator.co | |
# License: http://www.opensource.org/licenses/MIT | |
# | |
# Move to master branch. Delete all other local branches. | |
# |
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
module.exports = function(grunt) { | |
// Project configuration. | |
grunt.initConfig({ | |
pkg: '<json:package.json>', | |
meta: { | |
banner: '/* \n' + | |
' * \tAuthor:\t\t<%= pkg.name %>\n' + | |
' * \tWebsite:\t<%= pkg.website %>\n' + | |
' * \tTwitter:\thttp://twitter.com/<%= pkg.twitter %>\n' + |
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 | |
# ## git-ss | |
# | |
# Author: Christopher Webb <[email protected]> | |
# Website: http://conspirator.co | |
# License: http://www.opensource.org/licenses/MIT | |
# | |
# A shell script to quickly push branches with incremental naming | |
# |
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
/* | |
Jaws ( aka Blink, but different) | |
Start the blinking at interval at 2 seconds. With every successive loop, decrement the intervall by 100ms. | |
Keep looping until you get to 0, then start over at 2 seconds. | |
This example code is in the public domain. | |
*/ | |
// Pin 13 has an LED connected on most Arduino boards. | |
// give it a name: |