Skip to content

Instantly share code, notes, and snippets.

@wycats
wycats / no_such_thing.rb
Created April 12, 2012 01:02 — forked from bokmann/no_such_thing.rb
The code of the talk from my Feb 22nd Arlington Ruby talk 'There is No Such Thing as Metaprogramming'.
# This is the code from my 'There is No Such Thing as Metaprogramming' talk,
# which premiered at the Arlington, VA Ruby Users Group on Feb 22nd.
# Without the deliver and walk-through to the solution below this example
# will be missing quite an important bit of content (mainly the tracking of
# 'self' while developing the solution, but it still a useful read.
# Here is the Toddler with no metajuju. Note that the developer, as well as
# the code, is completely unuaware of the interpreter. A developer with a
# background in compiled languages would be comfortable looking at this.
  • willing to hit the network
    • causes:
      • Definition#resolve_remotely!
      • invoked by bundle outdated based on no --local
      • invoked by Installer#run based on no --local and no vendor/cache
    • source.remote!
    • rubygems: query rubygems.org
    • git: clone/fetch
  • willing to do local work
    • source.cached!
  • willing to hit the network ** causes: *** Definition#resolve_remotely! *** invoked by bundle outdated based on no --local *** invoked by Installer#run based on no --local and no vendor/cache ** source.remote! ** rubygems: query rubygems.org ** git: clone/fetch
  • willing to do local work
    • source.cached!
@wycats
wycats / canhaz.rb
Created February 8, 2012 03:47 — forked from jaredatron/canhaz.rb
canhaz
require 'thor'
require 'pathname'
module Canhaz
class CLI
class Recipes < Thor
desc "apply", "apply"
def apply
puts "applying"
@wycats
wycats / loop.js
Created November 16, 2011 18:47 — forked from jescalan/loop.js
Handlebars No Name Loop
// The JSON
array = [
{
created_at: "2011-10-19T16:22:30Z",
id: 1,
link: "http://abcnews.go.com/Business/video/job-search-social-media-ditch-resume-hunt-nontraditional-ways-internet-professional-contacts-business-13581468",
title: "ABC News: Job Search Through Social Media",
updated_at: "2011-10-19T16:22:30Z"
},
diff --git a/kernel/common/marshal.rb b/kernel/common/marshal.rb
index 5b0dc71..f0d1dab 100644
--- a/kernel/common/marshal.rb
+++ b/kernel/common/marshal.rb
@@ -970,7 +970,7 @@ module Marshal
ms.construct
rescue NameError => e
- raise ArgumentError, e.message
+ raise ArgumentError, e.message, e
{{view App.ToolbarField valueBinding="Sheduler.toolbarController.selectedDate"}}
DATE =
from: (controllerDate) ->
new Date(controllerDate)
to: (viewDate) ->
viewDate.toString()
App.ToolbarField = SC.TextField.extend
@wycats
wycats / works_today.js
Created September 27, 2011 21:42 — forked from swannodette/gist:1246024
named_subtemplates.hb
<!--
I'm sure there's a better syntax for naming subtemplates
-->
<h3>This is a list</h3>
<ul>
{{#each items}}
{{@cell}}
<li>
{{..}}
@wycats
wycats / helper.js
Created September 1, 2011 04:59 — forked from paul/gist:1185483
arr = [1,2,3]
{{#each }}
{{this}},
{{/each}}
produces:
1,2,3,
@wycats
wycats / gist:1185486
Created September 1, 2011 04:59 — forked from paul/gist:1185483
arr = [1,2,3]
{{#each }}
{{this}},
{{/each}}
produces:
1,2,3,