0% found this document useful (0 votes)
69 views4 pages

Yoyo 3

The document discusses getting started with programming by taking action instead of endless debate. It recommends books on programming and lists basic programming concepts like input/output, variables, logic, and loops. Modern programming focuses more on libraries and frameworks than language expertise. Notes on Node.js and Express functions like rendering views, sending responses, and accessing request data are also included.

Uploaded by

Alexx Alex
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
69 views4 pages

Yoyo 3

The document discusses getting started with programming by taking action instead of endless debate. It recommends books on programming and lists basic programming concepts like input/output, variables, logic, and loops. Modern programming focuses more on libraries and frameworks than language expertise. Notes on Node.js and Express functions like rendering views, sending responses, and accessing request data are also included.

Uploaded by

Alexx Alex
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as RTF, PDF, TXT or read online on Scribd
You are on page 1/ 4

[ notes ]

biggest obstacle to actually doing something and becoming what you


want to is getting started

**it’s easy —and tempting—to waste away countless hours debating


what you should do

you only need to summon all the courage and determination you can
muster and say to yourself; “I’ve debated enough, I’ve got a plan—and
it might not be the best one—but, I’m
just going to do it anyway”

books:
‘code complete’ steve mcConnell
‘clean code’ robert martin
‘cracking the code interview’

learn by doing—and repeat

basic construct of programming languages:


input/output
basic math
variables
functions, objects, modules
boolean logic
conditional statements (if/else)
looping statements

programming today is more about knowing how to use libraries and


frameworks than being absolute export in the language

[ node & express ]

res.render - render views


res.send - quick test
res.query - querystring values (?category=cars&color=red)
req.session - session values
req.cookies - cookies values
req.body - form data

pkg: multiparty (file upload)

[ notes ]

biggest obstacle to actually doing something and becoming what you


want to is getting started

**it’s easy —and tempting—to waste away countless hours debating


what you should do

you only need to summon all the courage and determination you can
muster and say to yourself; “I’ve debated enough, I’ve got a plan—and
it might not be the best one—but, I’m
just going to do it anyway”

books:
‘code complete’ steve mcConnell
‘clean code’ robert martin
‘cracking the code interview’

learn by doing—and repeat

basic construct of programming languages:


input/output
basic math
variables
functions, objects, modules
boolean logic
conditional statements (if/else)
looping statements

programming today is more about knowing how to use libraries and


frameworks than being absolute export in the language
[ node & express ]

res.render - render views


res.send - quick test
res.query - querystring values (?category=cars&color=red)
req.session - session values
req.cookies - cookies values
req.body - form data

pkg: multiparty (file upload)

[ notes ]

biggest obstacle to actually doing something and becoming what you


want to is getting started

**it’s easy —and tempting—to waste away countless hours debating


what you should do

you only need to summon all the courage and determination you can
muster and say to yourself; “I’ve debated enough, I’ve got a plan—and
it might not be the best one—but, I’m
just going to do it anyway”

books:
‘code complete’ steve mcConnell
‘clean code’ robert martin
‘cracking the code interview’

learn by doing—and repeat

basic construct of programming languages:


input/output
basic math
variables
functions, objects, modules
boolean logic
conditional statements (if/else)
looping statements

programming today is more about knowing how to use libraries and


frameworks than being absolute export in the language

[ node & express ]

res.render - render views


res.send - quick test
res.query - querystring values (?category=cars&color=red)
req.session - session values
req.cookies - cookies values
req.body - form data

pkg: multiparty (file upload)

You might also like