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
// How To Use | |
// var categories = CategoryModule.Category.all(); | |
// var categoryComposite = new CategoryModule.CategoryComposite('CategoryComposite', categories.categorias, null); | |
// | |
// var categoryComposities = categoryComposite.findByName('Bar'); | |
// | |
// var originalCategories = categoryComposities.map(function(item) { | |
// return item.original; | |
// }); |
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 vowels [\a \e \i \o \u]) | |
(defn convert-to-num [letter] | |
(if (= (some #{letter} vowels) letter) | |
1 | |
0))) | |
(defn count-vowels [phrase] | |
(reduce + (map convert-to-num (clojure.string/lower-case phrase)))) |
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
(defn split-words | |
[phrase] | |
(clojure.string/split phrase #"\s")) | |
(defn count-words | |
[phrase word] | |
(let [words (split-words (clojure.string/lower-case phrase)) | |
lower-case-word (clojure.string/lower-case word)] | |
(loop [head (first words) | |
tail (rest words) |
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
# Ruby Class Variable Examples without @@ | |
# http://www.sitepoint.com/class-variables-a-ruby-gotcha/ | |
class Foo | |
def self.talk | |
puts 'Hey! I\'m talking' | |
end | |
end | |
class Bar |
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
# Rules: A lamda always has 1 parameter, nothing more, nothing less | |
# Useful Content: https://en.wikipedia.org/wiki/Church_encoding | |
# Identity lambda | |
IDENTITY = ->x { x } | |
# True, returns the first argument | |
TT = ->x { ->y { x } } | |
# False, returns the last argument |
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
Host *.staging.something.com | |
User someuser | |
ForwardAgent yes | |
LocalForward localhost:43306 localhost:3306 | |
LocalForward localhost:49200 localhost:9200 | |
LocalForward localhost:49001 localhost:9001 |
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
require 'spec_helper' | |
describe "Wow Coins" do | |
let(:klasz_class) do | |
Class.new do | |
attr_reader :title | |
def initialize(properties) | |
@title = properties[:title] | |
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
# How to Use | |
# open -a XQuartz | |
# socat TCP-LISTEN:6000,reuseaddr,fork UNIX-CLIENT:\"$DISPLAY\" | |
# docker build . -t ds-xclock | |
# docker run -e DISPLAY=YOUR_LOCAL_IP_HERE:0 -it ds-xclock | |
# | |
# Useful Links: | |
# https://github.com/moby/moby/issues/8710 | |
# http://kartoza.com/en/blog/how-to-run-a-linux-gui-application-on-osx-using-docker/ |
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
;; Church Numbers | |
(setq zero (lambda (f) (lambda (x) x))) | |
(setq one (lambda (f) (lambda (x) (funcall f x)))) | |
(setq two (lambda (f) (lambda (x) (funcall f (funcall f x))))) | |
;; Manual Calc | |
(funcall (funcall zero (lambda (x) (+ 1 x))) 0) | |
(funcall (funcall one (lambda (x) (+ 1 x))) 0) | |
(funcall (funcall two (lambda (x) (+ 1 x))) 0) |
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
# Loan Env Variables | |
while read line; do | |
export $(echo $line | sed 's/"//g') | |
done < /etc/environment |