Skip to content

Instantly share code, notes, and snippets.

View JustinD85's full-sized avatar
🏆
More no's than yes's; Failures than successes; Keep truckin, count your blessins

Justin Duncan JustinD85

🏆
More no's than yes's; Failures than successes; Keep truckin, count your blessins
View GitHub Profile
@joepie91
joepie91 / getting-started.md
Last active July 7, 2024 02:41
Getting started with Node.js

"How do I get started with Node?" is a commonly heard question in #Node.js. This gist is an attempt to compile some of the answers to that question. It's a perpetual work-in-progress.

And if this list didn't quite answer your questions, I'm available for tutoring and code review! A donation is also welcome :)

Setting expectations

Before you get started learning about JavaScript and Node.js, there's one very important article you need to read: Teach Yourself Programming in Ten Years.

Understand that it's going to take time to learn Node.js, just like it would take time to learn any other specialized topic - and that you're not going to learn effectively just by reading things, or following tutorials or courses. _Get out there and build things!

@JustinD85
JustinD85 / JustinDuncan_prework.md
Last active September 8, 2018 08:48
FrontEnd prework

TECHNICAL PREWORK

Day 1

1. On a website, what is the purpose of HTML code? To give the website an initial structure.

2. What is the difference between an element and a tag? Elements are parts of an HTML document that are comprised generally of two tags. Tags are part of an element that typically comes with an opening and closing portion.

3. Why do we use attributes in HTML elements? For a variety of reasons namely: identifying the element, styling the element, or giving the element some other attribute.