Day in the life of a self taught developer
Added create and update functionality to my car inventory app today.
Also found out the hard way that HTML forms don't support PUT or DELETE.
The browser will humble you.
Still moving!
#TheOdinProject#FullStack
Update on my Web Dev journey
Today:
I worked through SQL lessons on https://t.co/YD4RxCVjQ9 (my SQL skills are getting better)
I kicked off my inventory app project from @TheOdinProject -- folders structured, Express running, PostgreSQL connected
Still moving.
#Nodejs#TOP
Update on my Web Dev journey
Today:
I worked through SQL lessons on https://t.co/YD4RxCVjQ9 (my SQL skills are getting better)
I kicked off my inventory app project from @TheOdinProject -- folders structured, Express running, PostgreSQL connected
Still moving.
#Nodejs#TOP
web dev journey update.
Today i was able to:
- complete all SQL lessons on https://t.co/h10BC1hVAj
- finish few lessons on https://t.co/VbMY4CxmwC
- get PostgreSQL installed on my local machine
thinks to @TheOdinProject and their lessons. my SQL skill is getting better.
Spent today learning Express and EJS. Finished a project assignment and got it deployed.
Backend is actually kinda nice. Funny thing is, I touched backend once during a school project and it was hell. I probably just needed to actually know what I was doing lol.
Worked on my shopping cart project today
I spent 4 hours today writing some tests to make sure the main functionalities work. O boi a lot of thinking goes into writing tests, honestly.
Just happy, the main functionalities are almost done.
I have been shopping on @CDcareNG for a while now, and as a software developer I am really fascinated by how well the platform's designs comes together.
Luckily, my latest Odin project was to do just that. Design one!
And I have to say, it turned out great. What do you think?
Just finished another lesson at @TheOdinProject
Learnt about reducing states in React. Was confusing at first (not new to the feeling) but it made more sense when I tied the behavior to useState.
useReducer is just like using useState, but more organized and neat.
Worked on my shopping cart project today
I spent 4 hours today writing some tests to make sure the main functionalities work. O boi a lot of thinking goes into writing tests, honestly.
Just happy, the main functionalities are almost done.
I thought I was already using CSS Modules
Just finished the Styling React lesson on #TheOdinProject and found out importing a regular CSS file is NOT CSS Modules.
The curriculum stays humbling.
Slow day, still showed up.
Learnt data fetching in React using useEffect + useState.
Key pattern: if the parent fetches, don't let the child fetch too. Pass it down as props.
#TheOdinProject
Completed the Fetching Data lesson today on #TheOdinProject
The fetching part? Got it. What I'm still working through: deciding which component should own the fetch. That's a judgment call. And judgment takes time.