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
| Array.prototype.compact = function() { return this.filter(function(e) { return e; }); }; |
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
| application:open-your-keymap | |
| application:open-your-stylesheet | |
| autocomplete:attach | |
| autoflow:reflow-paragraph | |
| bookmarks:clear-bookmarks | |
| bookmarks:jump-to-next-bookmark | |
| bookmarks:jump-to-previous-bookmark | |
| bookmarks:toggle-bookmark | |
| bookmarks:view-all | |
| check:correct-misspelling |
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
| def parse(dices) | |
| %r{^ | |
| (?<top_or_bottom>t|b)? # Flag for finding the top or bottom dice | |
| (?<tb_number>\d)? # Number of top or bottom dice | |
| \[(?<dice>.*)\] # The main dice string, to be parsed later | |
| (?<explode>\*)? # Reroll (explode) die rolls? (i.e. 6 on 1d6) | |
| (?<plus>(\+|\-)\d+)? # Additional points to add to roll (or subtract) | |
| \=? # = Target Number or range follows... | |
| (?<target>.*)?$ # The target number (single 4, range 4..6, above 4+, below 4-) | |
| }x =~ dices |
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
| NeoBundle 'Shougo/unite.vim' | |
| NeoBundle 'Shougo/unite-outline' | |
| NeoBundle 'Sixeight/unite-grep' | |
| NeoBundle 'basyura/unite-rails' | |
| NeoBundle 'kmnk/vim-unite-giti' | |
| NeoBundle 'thinca/vim-unite-history' | |
| NeoBundle 'tsukkee/unite-help' | |
| NeoBundle 'tsukkee/unite-tag' | |
| NeoBundle 'ujihisa/unite-rake' | |
| NeoBundle 'kopischke/unite-spell-suggest' |
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 echoHttp (hook) { | |
| hook.debug("Debug messages are sent to the debug console"); | |
| hook.debug(hook.params); | |
| hook.debug(hook.req.path); | |
| hook.debug(hook.req.method); |
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
| var http = require('http'); | |
| module['exports'] = function isTheWebSiteDown (hook) { | |
| http.get(hook.params.url, function(res){ | |
| hook.debug(hook.params.url + " is up and running.") | |
| hook.res.end('false'); | |
| }).on('error', function (){ | |
| hook.debug(hook.params.url + " is DOWN!") | |
| hook.res.end('true'); | |
| }); |
This installs a patched ruby 1.9.3-p327 with various performance improvements and a backported COW-friendly GC, all courtesy of funny-falcon.
You will also need a C Compiler. If you're on Linux, you probably already have one or know how to install one. On OS X, you should install XCode, and brew install autoconf using homebrew.
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
| # -*- coding: utf-8 -*- | |
| $:.unshift("/Library/RubyMotion/lib") | |
| require 'motion/project/template/osx' | |
| Motion::Project::App.setup do |app| | |
| # Use `rake config' to see complete project settings. | |
| app.name = 'MenubarApp' | |
| app.info_plist['NSUIElement'] = 1 | |
| end |
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
| %h1 This is the big header in HAML | |
| %ul | |
| %li First | |
| %li Second | |
| %li Third | |
| %li Fourth | |
| %a(href="https://google.com") Google Link |
OlderNewer
