- How would you set up communication between two applications?
- carrier pigeons
- How about n different applications?
- n carrier pigeons
- What if the communication had to be in real time?
- real fast pigeons in real time
###Improving Database Performance
Step One: Watch Mary Rose Cook Live Codes Space Invaders from Front-Trends. (The second worst conference name ever?)
Step Two: Fork this gist.
Step Three: Respond to this question in your fork: What is one approach you can take from this Mary's code and implement in your project?
Step Four: Totally Optional: take a look at some of the other forks and comment if the spirit moves you.
When you start working with WebPack for GameTime, you'll notice that you can't just define a variable in one file and find it in another as easily as you can in Rails.
Read Node.js, Require and Exports and Organize Your Code with RequireJS
module
?What is something you learned that was particularly surprising/interesting?
What was something you already knew?
Was there anything you feel you still don't understand?
####Interesting
####Skim?
####Sandi Metz' Rules For Developers
Which of Sandi's rules do you feel like might be the hardest to follow? Why?
Rule 2 - "Methods can be no longer than five lines of code" - strikes me as being a little too inflexible. While this encourages good things like refactoring and use of private methods, sometimes I find that a longer method is essential. In my personal project I needed to pass a JSON object to the js file that fed my map and if I had broken this longer method into separate methods it would have called my database more times than was necessary and slowed the speed of the page load. I think with this rule in particular, there is a time and a place for it.