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
class Bathroom | |
# door is on the right | |
def initialize(params) | |
@stalls = params[:stalls] | |
@stall_ratings = rate_stalls | |
@line = params[:line] | |
end | |
def find_stall |
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
Title: Javascript Evolved: Intro to ES2015 | |
PLEASE NOTE THE NEW LOCATION! We'll be meeting at Cintrifuse and the Brandery's new location Union Hall (1311 Vine St.). We also have a food sponsor for this meeting (thank you Differential!) so we'll be providing pizza. | |
We're going to have three talks: | |
*Bruce Hubbard — New JavaScript ES2015 language features* | |
There has been a huge effort lately to compile other languages into JavaScript (Coffeescript, TypeScript, etc) mostly because of perceived flaws in the JavaScript language. ES2015 is a great leap forward for JavaScript and helps fix some of the long complained about quirks and missing language features. | |
*Ry Walker — Intro to Meteor* |