DEV Community

JoshuaWoods
JoshuaWoods

Posted on

 

Focus of Coding

What is everyone thoughts on WHY we code? And the reasons to learn

I have been learning web development for about a year yet I am very far from being able to gain a employment I have at least 1 to 2 years left. But that made me think why do we learn how to code and design? Is it only to gain a job with a FANG or is it to create. I think maybe we should change the focus to teach this not with goal of gaining work but to be able to simple create. I think that is why so many people get discouraged when learning. My coding heroes are Rekka and Devine from 100 Rabbits. I think I will follow their creative path.
https://100r.co/site/home.html

What do you all think?

Top comments (0)

11 Tips That Make You a Better Typescript Programmer

typescript

1 Think in {Set}

Type is an everyday concept to programmers, but it’s surprisingly difficult to define it succinctly. I find it helpful to use Set as a conceptual model instead.

#2 Understand declared type and narrowed type

One extremely powerful typescript feature is automatic type narrowing based on control flow. This means a variable has two types associated with it at any specific point of code location: a declaration type and a narrowed type.

#3 Use discriminated union instead of optional fields

...

Read the whole post now!