Forwarded from Tech Nerd (Tech Nerd)
TIKVAH-ETHIOPIA
แ แแชแแแต แฅแ แ แฒแแณแ แแข แแญ แแฅแญ แแฃแ แแ !
แแแแฅ แแแตแดแญ แ แฒแต แฃแแแแ แจแแข แแฅแญ แจแแ แฐแแฅแค แ แขแตแฎแตแซ แแแช แแแ แ แฒแแณแ แ แแซแแแต แฅแ แ แแชแแแต (Freelance) แแญแ แ แญแแต (Remote) แจแฅแซ แแด แแข แ แแซแแ แแแฐแฆแฝ แแญ แจแแข แแฅแญ แฐแแปแ แแซแฐแญแ แแแแ แ แตแณแแแแข
แแแแฅ แแแตแดแญ แ แฒแต แฃแแแแ แจแแข แแฅแญ แจแแ แฐแแฅแค แ แขแตแฎแตแซ แแแช แแแ แ แฒแแณแ แ แแซแแแต แฅแ แ แแชแแแต (Freelance) แแญแ แ แญแแต (Remote) แจแฅแซ แแด แแข แ แแซแแ แแแฐแฆแฝ แแญ แจแแข แแฅแญ แฐแแปแ แแซแฐแญแ แแแแ แ แตแณแแแแข
This media is not supported in your browser
VIEW IN TELEGRAM
Good evening folks its been a while ๐ฉ I have had so much in my mind lately besides I am CEO of overthinking and all those stuffs ..what would be the best ๐ ๐ฉบ for that ๐ฆcould anyone tell me the answer ๐ cause my mind gonna explode with the coding chaos plus to that overthinking
Actually I was thinking to open another channel to vent our thoughts..but sadly ๐ฅ this channel is not going well only 11 folks with me ๐คท
@sambecoding
Actually I was thinking to open another channel to vent our thoughts..but sadly ๐ฅ this channel is not going well only 11 folks with me ๐คท
@sambecoding
๐ญ2โค1
Me saying "okay sure" for the suggestions my colleague chatgpt gives me after I asked something important cause those suggestions seems important and at end I will end up scrolling up to see the details I have been saying "okay sure" ๐
and they are a bunches of concepts that I should ..probably must keep in my mind ๐ ...poor me ๐ฆ
@sambecoding
#chatgpt #leverageingai@sambecoding #prompting@sambecoding
@sambecoding
#chatgpt #leverageingai@sambecoding #prompting@sambecoding
๐1
how that's insane it's march 1 (แแแขแต 1) today ! anyway keep grinding folks @sambecoding
โค1
-
-
-
Currently in react chaos ๐
@sambecoding
./ โ means โsame folder as this file.โ-
../ โ means โgo up one folder.โ-
../../ โ means โgo up two folders.โ is it just me all the time confused with file pathsCurrently in react chaos ๐
@sambecoding
๐ค1
Forwarded from Eyuel Zero's Stuff (Eyuel Zero ๐ช๐น)
โ ๏ธ extra long voice message! ๐ญ
I hate long VMs, so I made sure this isn't an important one. You don't have to listen to it because tomorrow's post will include this and more in a concise and organized text post.
tldl; I talk (lowk rant) about what it's like to hire beginners and tell you what to do if you're looking for a job as a beginner.The Easter egg is Robi. And the dumb part is that I believe it's both hopeless and not.
Please leave feedback on voice message posts in the comments.
Good night!
I hate long VMs, so I made sure this isn't an important one. You don't have to listen to it because tomorrow's post will include this and more in a concise and organized text post.
tldl; I talk (lowk rant) about what it's like to hire beginners and tell you what to do if you're looking for a job as a beginner.
Please leave feedback on voice message posts in the comments.
Good night!
Good morning folks have a nice day ๐
and I will share my status later on about my react learning journey stay tuned ๐
@sambecoding
and I will share my status later on about my react learning journey stay tuned ๐
@sambecoding
I took this pic yesterday..and feel like sharing it here, anyway good evening folks ๐ how is the grinding doing out there ...
@sambecoding
@sambecoding
๐ป My React Learning Journey โ Current Progress
Lately Iโve been spending time learning React and improving my frontend development skills.
So far in my journey Iโve learned and practiced:
โข How React works and why developers use it
โข Component-based architecture
โข Passing data using props
โข Structuring React applications
One thing Iโm starting to understand more clearly is that React changes the way we think about building user interfaces.
React mainly focuses on the View layer of the MVC architecture.
MVC stands for ModelโViewโController, a design pattern developers often follow when building applications.
Here are the three parts:
1๏ธ Model
Handles the data logic and interactions with the database.
2๏ธ View
This is where React comes in. The View displays information from the Model and handles the user interface.
React builds the UI using components, which are reusable blocks of code. Each component returns React elements, usually written in JSX.
JSX is a syntax that allows us to write HTML-like code inside JavaScript, which makes UI development easier and more readable,and our components will be saved with .jsx extension if we used jsx react elements inside our components .
3๏ธ Controller
Acts as a bridge between the Model and the View. It controls the data flow and updates the View whenever the data changes.
Another interesting thing I learned is that React works with two main libraries:
โข React
โข ReactDOM
React is responsible for creating UI components and tracking changes.
ReactDOM is responsible for rendering those components in the browser.
React becomes fast because it uses something called the Virtual DOM, which is a lightweight JavaScript representation of the real DOM.
When data changes:
โข React first updates the Virtual DOM
โข Then it compares it with the Real DOM
โข Finally, it updates only the parts that actually changed
This makes UI updates much faster and more efficient.
Instead of building one large page, React all Us to build small reusable components and connect them together.
Right now my focus is:
โข Getting more comfortable with props and component communication
โข Practicing by building small projects also i am changing one of my projects into react based ..and i will keep you guys updated.
the goal is to become a stronger at frontend and eventually build real-world applications with React
Iโll keep sharing what I learn along the way ,let me know if you like this so that i will keep posting like this .
Have a cool day!
#React #CodingJourney #LearningInPublic @sambecoding
Lately Iโve been spending time learning React and improving my frontend development skills.
So far in my journey Iโve learned and practiced:
โข How React works and why developers use it
โข Component-based architecture
โข Passing data using props
โข Structuring React applications
One thing Iโm starting to understand more clearly is that React changes the way we think about building user interfaces.
React mainly focuses on the View layer of the MVC architecture.
MVC stands for ModelโViewโController, a design pattern developers often follow when building applications.
Here are the three parts:
1๏ธ Model
Handles the data logic and interactions with the database.
2๏ธ View
This is where React comes in. The View displays information from the Model and handles the user interface.
React builds the UI using components, which are reusable blocks of code. Each component returns React elements, usually written in JSX.
JSX is a syntax that allows us to write HTML-like code inside JavaScript, which makes UI development easier and more readable,and our components will be saved with .jsx extension if we used jsx react elements inside our components .
3๏ธ Controller
Acts as a bridge between the Model and the View. It controls the data flow and updates the View whenever the data changes.
Another interesting thing I learned is that React works with two main libraries:
โข React
โข ReactDOM
React is responsible for creating UI components and tracking changes.
ReactDOM is responsible for rendering those components in the browser.
React becomes fast because it uses something called the Virtual DOM, which is a lightweight JavaScript representation of the real DOM.
When data changes:
โข React first updates the Virtual DOM
โข Then it compares it with the Real DOM
โข Finally, it updates only the parts that actually changed
This makes UI updates much faster and more efficient.
Instead of building one large page, React all Us to build small reusable components and connect them together.
Right now my focus is:
โข Getting more comfortable with props and component communication
โข Practicing by building small projects also i am changing one of my projects into react based ..and i will keep you guys updated.
the goal is to become a stronger at frontend and eventually build real-world applications with React
Iโll keep sharing what I learn along the way ,let me know if you like this so that i will keep posting like this .
Have a cool day!
#React #CodingJourney #LearningInPublic @sambecoding
๐2
The sun is sunning all the time ๐ค๐ especially this month she is out with her colleagues ๐
@sambecoding
@sambecoding
๐ญ2
Good morning folks ๐
Monday right ?
Let's start the week with hope anyway!
Have a cool day thoโบ๏ธ
@sambecoding
Monday right ?
Let's start the week with hope anyway!
Have a cool day thoโบ๏ธ
@sambecoding
โค1๐1
Good afternoon folks its been a while your bee ๐ got in trouble with this month's weather โ๏ธ๐กand the semester pace ๐ค
Anyway we will keep showing up !
Let's just be positive ๐
@sambecoding
Anyway we will keep showing up !
Let's just be positive ๐
@sambecoding
๐1๐ค1
Anonymous Confess, ask campus related questions, and share real stories
Use @gebinet to browse Post's
This is made by ๐งโ๐ป@kassdag @thekassdag and u guys should really check this out!
let's build community where we can share our gibi experiences and ideas too
@sambecoding
Use @gebinet to browse Post's
This is made by ๐งโ๐ป@kassdag @thekassdag and u guys should really check this out!
let's build community where we can share our gibi experiences and ideas too
@sambecoding
๐ฅ2