Skip to content

Instantly share code, notes, and snippets.

View CoreyTrombley's full-sized avatar
💾
Save the floppy

Corey Trombley CoreyTrombley

💾
Save the floppy
View GitHub Profile
@CoreyTrombley
CoreyTrombley / modal_notes.md
Last active August 29, 2015 14:13
React modal notes

React modal notes

JSX Spread Attributes

link

Now you can use a new feature of JSX called spread attributes:

  var props = {};
  props.foo = x;
function vpause () {
VBoxManage list vms | grep "$1" | cut -d' ' -f1 | tr -d '"\n ' | xargs -0 -I BOX VBoxManage controlvm BOX pause
}
function vresume () {
VBoxManage list vms | grep "$1" | cut -d' ' -f1 | tr -d '"\n ' | xargs -0 -I BOX VBoxManage controlvm BOX resume
}
function vrunning () {

Startup weekend NYC

@nycsw #SWNYC

  • Scroll kit @CodyBrown
  • Ask about Google Developers

Pitches

  • Grazor P2P dining

WDI Final Demo Day

Twitter on #WDIFINAL #WDI @GA @dmgarland @C_Trom

@_AHYI & @WhoisRomanGun

Begoing

  • UX UI
  • Cucumber

Polymorphism

stackoverflow discussion

Subtype Polymorphism

  class Account
    attr_accessor :balance
    def initialize(balance)
self.balance = balance