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
""" | |
bacon.py, because bacon. | |
http://github.com/skulbuny | |
""" | |
import willie.web as web | |
def bacon (willie, trigger): | |
willie.say("mmmm... bacon...") | |
bacon.commands = ['', 'bacon'] |
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
""" | |
bacon.py, because bacon. | |
http://github.com/skulbuny | |
""" | |
import willie.web as web | |
def bacon (willie, trigger): | |
willie.say("mmmm... bacon...") | |
bacon.rule = '*.(bacon).*' |
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
""" | |
bacon.py, because bacon. | |
http://github.com/skulbuny | |
""" | |
def bacon (willie, trigger): | |
willie.say('mmmm... bacon...') | |
bacon.rule = r'bacon\\b' | |
bacon.priority = 'high' | |
bacon.thread = False |
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
""" | |
bacon.py, because bacon. | |
http://github.com/skulbuny | |
""" | |
def bacon (willie, trigger): | |
willie.say('mmmm... bacon...') | |
bacon.rule = ["bacon"] | |
bacon.priority = 'high' | |
bacon.thread = False |
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
.nav-next { text-align: right } | |
.form-allowed-tags { display: none } | |
span.required { color: #F00 } |
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
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, caption, canvas, center, cite, code, dd, del, details, dfn, dialog, div, dl, dt, em, embed, fieldset, figcaption, figure, form, footer, header, hgroup, h1, h2, h3, h4, h5, h6, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, tt, table, tbody, textarea, tfoot, thead, time, tr, th, td, u, ul, var, video { font-family: inherit; font-size: 100%; font-weight: inherit; font-style: inherit; vertical-align: baseline; white-space: normal; margin: 0; padding: 0; border: 0; outline: 0; background: transparent; } |
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
var liElement = $('<li>'); | |
// The dummy href value of '#' ensures that the browser renders the | |
// <a> element as a clickable link. | |
liElement.load(function() { | |
displayVideoAnalytics(videoId); | |
}); | |
// Call the jQuery.append() method to add the new <a> element to | |
// the <li> element, and the <li> element to the parent | |
// list, which is identified by the 'videoList' variable. |
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
@for $index from 1 through 6 { | |
h#{$index}{ | |
// styles here | |
} | |
} |
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
$font-color: 0; | |
@if lightness($background-color) >= 50 { | |
$font-color: black; | |
} | |
@if lightness($background-color) <= 50 { | |
$font-color: white; | |
} |
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, | |
"caret_extra_bottom": 0, | |
"caret_extra_top": 0, | |
"caret_extra_width": 0, | |
"caret_style": "smooth", | |
"close_windows_when_empty": false, | |
"color_scheme": "Packages/Github Color Theme/GitHub.tmTheme", | |
"detect_indentation": true, | |
"detect_slow_plugins": false, |
OlderNewer