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
'use strict'; | |
/** | |
* @typedef {Object} Configuration | |
* @property {String} coverageEnvVar - name of environment variable for coverage | |
* @property {String} coverageFolder - directory in which to write coverage to | |
* @property {Array<String>} excludes - list of glob paths to exclude | |
* @property {Array<String>} reporters - list of reporters | |
*/ |
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
require 'set' | |
def figure_it_out(procs, **params) | |
params_provided = params.keys.to_set | |
procs = procs.each_with_object({}) {|proc, lookup| lookup[proc.parameters.transpose[1].to_set] = proc} | |
procs[params_provided][**params] | |
rescue NoMethodError | |
raise "Unknown set of params, slacker" | |
end |
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
module Findable | |
extend ActiveSupport::Concern | |
# When you use uuid some methods stop to work as expected. Using this concern in your models will do the job. | |
# Override methods on module FinderMethods that use id as default order when no order is defined | |
# It's a working in progress | |
# referencer: | |
# http://api.rubyonrails.org/classes/ActiveRecord/FinderMethods.html#method-i-take | |
# https://github.com/rails/rails/blob/f52354ad1d15120dcc5284714bee7ee3f052986c/activerecord/lib/active_record/relation/finder_methods.rb#L503 | |
module ClassMethods |
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
alias nombom='echo "(╯°□°)╯︵ ┻━┻ " && npm cache clear && bower cache clean && rm -rf node_modules bower_components && npm install && bower install' |
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
alias nombom='echo "(╯°□°)╯︵ ┻━┻ " && npm cache clear && bower cache clean && rm -rf node_modules bower_components && npm install && bower install' |
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
[credential] | |
helper = osxkeychain | |
[core] | |
editor = sublime -n -w | |
excludesfile = ~/.gitignore | |
whitespace = trailing-space,space-before-tab | |
quotepath = false | |
[alias] | |
a = add | |
aa = add --all |
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
person = {name: "Bob", age: "23"} | |
"name: %{name}, age: %{age}" % person |
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
### Keybase proof | |
I hereby claim: | |
* I am xn on github. | |
* I am garbhoch (https://keybase.io/garbhoch) on keybase. | |
* I have a public key whose fingerprint is EB80 940E 4C61 D7BB 933F D98C 5B16 C2DA F588 12F1 | |
To claim this, I am signing this object: |
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
def render_stack(blockitem, size) | |
size = nil if size < 2 | |
html = "" | |
link = localized.include?(blockitem) ? "" : "something" | |
html << "<a href=\"#{link}\" class=\"stack-link\">" # Not done, still need to change that for things | |
html << "<div class=\"recipe-icon\" style=\"background: url(#{url('images/wiki/#{blockitem}.png')});\" title=\"{$name}\">#{size}</div>" | |
html << "</a>" | |
end |
NewerOlder