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
| #!/Users/orionengleton/.rvm/rubies/ruby-2.1.1/bin/ruby | |
| log = [ | |
| {time: 201201, x: 2},{time: 201201, y: 7},{time: 201201, z: 2}, | |
| {time: 201202, a: 3},{time: 201202, b: 4},{time: 201202, c: 0} | |
| ] | |
| # Required - Results. | |
| required_result = [{:time=>201201, :x=>2, :y=>7, :z=>2}, {:time=>201202, :a=>3, :b=>4, :c=>0}] | |
| # Using global variables * and #Procs |
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
| Usage: | |
| // <show-code url='https://gist.github.com/your-user-name/XXXXX.js'></show-code> | |
| angular.module('yourAppName') | |
| .directive('showCode', function () { | |
| return { | |
| restrict: 'E', | |
| transclude: true, | |
| scope: { | |
| url: '@url' |
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
| angular.module('cardUiApp') | |
| .directive('card', function () { | |
| return { | |
| template: ' content', | |
| restrict: 'AE', | |
| scope: { | |
| name: '@', | |
| amount: '=', | |
| save: '&' | |
| }, |
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
| puts "#{ENV['RUBY_VERSION']}" | |
| require 'rubygems' | |
| require 'httparty' | |
| require 'forwardable' | |
| module Rulers | |
| module Model | |
| module HttpModel |
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
| #!/usr/bin/env ruby | |
| OUTSIDE_STATE = true | |
| NAMES = {:objects => []} | |
| module CheckSelf | |
| module ClassMethods | |
| def self.inherited(child) | |
| ::NAMES[:objects] << child | |
| end |
NewerOlder