LearningWebAppDev
LearningWebAppDev copied to clipboard
Examples from the book "Learning Web Application Development".
I've come across a connection issue I have been unable to resolve. I've tried various different methods which I either found online or thought of myself. I will first show...
Should I use overflow in (header) or (header .container)? If I use in header, the container will have zero height, but if I use in header .container both elements will...
Pivotal have a new name a MongoDB **mongolab -> mlab**
Page 207 (GitHub code line 84), why didn't we declare the variable `newToDo` ? I got a problem without declaration, as the console showing: ``` ReferenceError: assignment to undeclared variable...
In page 200 we see the following code `if(tweet.indexOf())` This will fail, it should be `if(tweet.text.indexOf())`
I noticed what I believe is a typo on page 117 of the text. `$(".button").on("dblclick", function(){ alert("Hey you double clicked!"); });` I made a separate html page and created a...
I was afraid this might happen eventually, but as of 5 days ago `ntwitter` is "officially" deprecated (see the README file in the `ntwitter` repository). This means it probably shouldn't...
Gregory Hill writes: > On page 201 you have: > > We can copy this file (server.js) into our Twitter directory (the same one that contains > tweet_counter.js) and then...