TechVibe
前往频道在 Telegram
I'm Eyob, a self-taught backend dev sharing my Tech journey, tips, tools, and real-world projects. Let’s grow together😊 DM for any project ideas @alnova19 Personal site: https://eyobsimachew.vercel.app My Github: https://github.com/Eyob-smax
显示更多1 090
订阅者
+124 小时
+57 天
+1630 天
帖子存档
1 090
Do you guys know that we can access private methods of a class like this?
This basically works because JS doesn't have a runtime type system like other programming language like Java so if we can trick the Ts compiler JavaScript will allows us. since member access only exist in the compile time.
@devwitheyob
#snippets #tips
1 090
this video will change how you see everything specially if you're science and physics enthusiast😮
@deviwitheyob
#Vertasium #Physics
https://youtu.be/qJZ1Ez28C-A?si=qlsuBwzsipg4nAY8
1 090
Repost from Dagmawi Babi
Good night ✨
"ጌታ ግን ታማኝ ነው፤ እርሱም ያበረታችኋል፤ ከክፉውም ይጠብቃችኋል።"
— 2 ተሰሎንቄ 3:3
#Scripture
@Dagmawi_Babi
1 090
Do you guys know, mobile money didn't start until Ride, they were the first to start it, it is just 10 years yet😮
@devwitheyob
1 090
I have been learning about B-Trees and LSM(Log structured Merge) data structures in Database internals
B-trees are much faster for read but slower for writes. This is because they use a balanced tree data structure so they can quickly access data since trees has nlogn time complexity but when they write files they have to find a suitable place, they might need to split nodes if they're full, they need to update the root node pointers and also they might need to re-balance the whole tree tree. the main example of this design PostgreSQL, MySQL, MongoDB
When it comes to LSM Trees these trees are good for write, since they first write on a sorted in-memory data structure called a memtable when the buffer size is full they will flush it into the disk for permanent storage, but for reading they are slower, if it's not for some mechanism like (bloom filter, compaction) it would take much longer.
@devwitheyob
#Databases #save
1 090
Finally I got some time and deployed the backend of my portfolio so check it out guys, I really need your opinion on this one fam😊
eyobsimachew.vercel.app
@devwitheyob
1 090
I had an interview today, and it actually went really well. The role is a backend-focused full-stack developer position.
We talked mainly about the projects I’ve worked on and my responsibilities, authentication and system design, architectural decisions, why I’m interested in the role, how I use Git and AI in my workflow, the tools we use when working as a team and how we collaborate, and what I expect from the internship.
1 090
I don't know that service workers run inside the browser separated from the web app that it created for that's why it run even when we close the tab.
@devwitheyob
#JS #ServiceWorkers
1 090
If you want a full amazing course on FCM(Firebase Cloud Messaging) I recommend this it is for Next.js app
link 👉 here
@devwitheyob
#resources
1 090
Guys, have you noticed that when we see a picture taken with a good phone camera, if we look at the same image after 3 or 4 years, there seems to be an amazing change in quality, Is that because of our perception, or did the quality actually decline over time🤔
@devwitheyob
1 090
I realized that while working on feature branches, I often make small, unimportant commits. Merging them directly into the main branch just adds noise to the commit history. That’s when I discovered squash and merge as a better approach.
@devwitheyob
1 090
Article of the day
Ever used a website where writing code felt just like VS Code? That experience usually comes from Monaco Editor.
Monaco Editor is a browser-based code editor by Microsoft, using the same engine as VS Code. It goes far beyond a normal textarea, with syntax highlighting, auto-completion, error hints, and themes built in.
That’s why platforms like CodeSandbox and LeetCode feel so smooth. If your app revolves around code, Monaco can turn the browser into a real coding environment.
@devwitheyob
#ArticleOfTheDay #MonacoEditor
1 090
Repost from Dagmawi Babi
+9
@TheAbyssinianLad made FlixQuest movie app. This's by far one of the most comprehensive movie apps I've ever seen built in the community.
Flix Quest
• https://t.me/flixquestapp/501
The more I browse the more I discover new and advanced features, it was so impressive. I kept on saying Wow the more I discovered. You can find movies, shows, and even live TV.
It's Open-source
• github.com/BeamlakAschalew/flixquest
You did incredible with it. It's very functional as well (saw some Bob's Burgers eps last night :)) My only feedback is UI and colors could use a refresh so def do a redesign.
#CommunityShowcase #FlixQuest
@Dagmawi_Babi
1 090
There’s nothing more frustrating than building a complex project without real understanding, depending solely on AI.
@devwitheyob
