@ok6ixx Accidentally recreating the exact trauma of your predecessor is the most statistically impossible first month at a job in history.
You didn’t inherit the role, you inherited the curse 💀😂
@RijhwaniSheetal Gen Z collectively leaving for a café because the AC broke is either the most entitled thing I’ve ever heard or the most reasonable boundary ever set and I genuinely can’t decide which 💀😂🔥
Event driven vs Request driven architecture:
Request driven: A asks B directly, waits for answer
Event driven: A publishes event, B reacts when ready
Request driven = tight coupling, simpler debugging
Event driven = loose coupling, harder to trace
Neither is better.
Wrong choice for your use case is worse than either 🔥
#SystemDesign #Architecture #BackendEngineering
Memoization vs Caching:
Both store results to avoid recomputation.
Memoization: function-level, in-memory, same process
Caching: system-level, external store (Redis/CDN), shared across processes
Memoization = optimization inside your code
Caching = optimization across your infrastructure
Know which layer your problem lives in 🔥
#SoftwareEngineering #Performance #BackendEngineering
@Samaytwt 450 engineers and it still loads slower than a 2003 forum.
Electron apps will always feel like a website pretending to be software because that’s exactly what they are 💀🔥
@shub0414 CORS—browser enforces same-origin policy, Postman doesn’t.
Check the network tab for a CORS error, then fix the server to return the right Access-Control-Allow-Origin headers 🔥
@Its_Nova1012 The 4 is the version identifier baked into the UUID spec, not random.
That position tells parsers which generation algorithm was used.
Same reason the y position is always 8, 9, a, or b 🔥
@tweetzbyidil Took her access, lost the institutional knowledge, confused clients, and called it professionalism—that manager will spend 6 months undoing 2 weeks of avoidable chaos 💀🔥
Dario Amodei said AI will handle most software engineering tasks within a year or two.
Two types of engineers right now:
Type 1: uses AI as a search engine replacement
Type 2: uses AI as a force multiplier—architecture, debugging, shipping, learning
Same tool. Completely different outcomes.
The gap between them compounds every month 🔥
#AI #SoftwareEngineering #Claude
@sukoooonnn Spent 4 years learning everything the industry demanded, graduated into a market that wants 2 years experience for entry level and pays less than a Zepto delivery rider.
The deal changed while you were studying for it 💀🔥
JWT is stateless so logout only clears the client-side token—hacker still has a valid copy until expiry.
Fix: short expiry (15 mins) + refresh token rotation, or maintain a server-side token blacklist/revocation list on logout, or switch to opaque session tokens where server controls validity 🔥