es
Feedback
Code & Coffee

Code & Coffee

Ir al canal en Telegram

It’s just a chill space where I share my thoughts, things I’m learning, mistakes I make, and random dev moments. I opened this to stay committed, grow, and learn with others. If you vibe with that, grab your coffee and let’s figure out tech together ☕️💻

Mostrar más
880
Suscriptores
+124 horas
+237 días
+18330 días
Archivo de publicaciones
Your browser can run an entire database offline. With IndexedDB, web apps can: - work without internet - store large amounts of data - feel almost like native apps That’s why PWAs feel so smooth. happy Saturday u all 🫰🏽

🎬 Missed the Live Session? Watch the Highlights!
Our Open Mic Session with Ruth Abiti Getaneh delivered practical, experience-backed insights on building scalable healthcare and enterprise systems. From mobile development with Flutter and Riverpod to web applications using Angular and ASP.NET, Ruth shared how Clean Architecture, DDD, and CQRS shape maintainable, production-ready software. The session also covered real-world architecture decisions, career growth, and writing code that lasts. Huge thanks to Ruth for sharing her journey and lessons with the community (https://t.me/dot_ruth) — a thoughtful and inspiring conversation from start to finish. 🙌 Follow us for updates: | Telegram  | LinkedIn  | Instagram | TikTok | Face Book | X #GDGAAU #OpenMicSession

I was listening to Ruth’s(dot_ruth) Open Mic, and something about the way she talks really stayed with me. We actually relate a lot. She works with .NET , and she also loves Laravel and same here. She talked about how AI is slowly taking away our thinking ability, and I’ve always agreed with that. She also recommended using Clean Architecture and Domain-Driven Design on the backend, which honestly makes a lot of sense. quote she shared :
You don’t choose the tech stack the tech stack chooses you.
quotes the host shared:
I don’t want to be the first girl to do it I want to be one of the girls.
In the end, I just want to say I really loved it. Watching inspiring girls like this truly motivates me. Let’s go, girls let’s build things, support each other, and inspire others. Much love to all the girls 🤍

React comes with so many hooks, but I usually just use the classics Categories of hooks: 1. Basic state & effect hooks – useState, useEffect 2. Performance & reference hooks – useMemo, useCallback, useRef 3. Advanced & concurrent hooks – useTransition, useDeferredValue Honestly I stick to useState & useEffect 90% of the time 😂 slowly learning the others…

JavaScript is slowly making immutability easier today I learned about Array.prototype.with().
const nums = [1, 2, 3];
const updated = nums.with(1, 99);

console.log(updated); // [1, 99, 3]

The first computer “bug” was a real bug 🐛 In 1947, engineers found a moth stuck inside the Harvard Mark II computer, causing it to malfunction. They literally taped the moth into the logbook and wrote: “First actual case of bug being found.” do u guys know this ? 🙄

⏰ Happening Tomorrow!
Our Open Mic Session with Ruth Abiti Getaneh goes live tomorrow — don’t miss the chance to join the conversation. If you’re curious about building scalable healthcare and enterprise systems, choosing the right mobile vs web architecture, and writing clean, future-proof code, this session is worth your time. 📅 Date: Friday, December 19, 2025 ⏰ Time: 8:00 PM / 2:00 LT 📍 Live on the GDG AAU Channel Follow us for updates: | Telegram  | LinkedIn  | Instagram | TikTok | Face Book | X #GDGAAU #OpenMicSession

Repost from DOT_RUTH
New feels hard because the brain mistakes unfamiliar for unsafe. Most of the struggle is just rewiring. But not knowing that has held so many of us back for far too long. New feels like fog at first. You don’t need the whole road, just the next visible step. It's not hard, it's just NEW

Some days are for pushing. Some days are just for surviving. Both are allowed.✌🏼

Why TDD? We use Test-Driven Development (TDD) to: - Write tests before writing code - Catch edge cases early (like int vs double from APIs) - Make sure everything works before moving forward TDD gives confidence, reduces bugs, and makes refactoring safe.

JFF 1️⃣ #JustForFun @KiraFix_tech 😁
JFF 1️⃣ #JustForFun @KiraFix_tech 😁

my cousin ask me this 🤦🏽‍♀️
my cousin ask me this 🤦🏽‍♀️

what happen to the internate guys notion , chatgpt , Canva , LinkedIn is not working for me .

☕️ Code & Coffee — Tip of the Day Just tried adding a rich text editor to my React project In the Morning. Started with React Quill but…It wasn’t playing nice with my React 18 setup. Switched over to Jodit Editor . It work properly and clean integration. it saved me hours. @codeandcoffee1

good night u all 🥱

Be Bored more! . found this interesting https://youtu.be/orQKfIXMiA8

Not me starting another project instead of finishing the last one. 👀

Repost from Codative 🔭
Here are some more quotes from @Dagmawi_babi these are focused on vibe coding Enjoy 😉 #Quotes #Devfest2025 #Vibecoding @coda
+6
Here are some more quotes from @Dagmawi_babi these are focused on vibe coding Enjoy 😉 #Quotes #Devfest2025 #Vibecoding @codative

I’m new to Python… and I just learned this. I recently discovered that Python has type annotations. I always thought Python was just dynamically typed but you can actually add type hints to your code:
def greet(name: str) -> str:
    return "Hello " + name

☕️ Code & Coffee Just realized how important the basics are A friend is crushing LeetCode SQL challenges (link) for tech interviews, while I was busy with frameworks and ORMs… almost forgot SQL even exists