Caleb
127 subscribers
49 photos
2 videos
49 links
Caleb here ... a living proof that anyone can code. come see what I'm building and maybe learn something (or at least laugh at my struggles)

kalebalebachew.com
Download Telegram
Forwarded from Luna's pathway🤗 (Luna)
Being there at the beginning is as noble as being there at the end. True legacy is not measured by witnessing the finish line, but by the effort, sacrifice, and vision poured into the journey. Engineer Simegnew Bekele may not see the completion of the Renaissance Dam, but his hands and heart will forever stand within it.

Congrats all 😍
Please open Telegram to view this post
VIEW IN TELEGRAM
9
Yes/No ? Justify your answer.
NPM Nightmare 🤯

Josh, the dude running Chalk (300M downloads a week), got tricked big time.

A fake email, looking like it was from npm (“support@npmjs.help”), said his account needed a 2FA reset. It seemed real, so he typed his login and code.

Boom hackers took over!
On Sep 8, they slipped bad code into chalk and 17 other packages. The code was a crypto thief, swapping real wallet addresses (like for Ethereum) with fakes to steal money from browsers.

Watch Fireship
1
Being a hyper-observer is a double edged sword.
Forwarded from GebetaMaps
Learn about Ethiopia while having fun. You will see a place for a few seconds and guess where it is on the map.
Check it out at 👉 geo.play.gebeta.app or you can use @gebetaPlayGeoBot

📍 gebeta.app
This is the craziest thing i've seen in a while 🙌🏽
Forwarded from SEMER NUR
🇬🇧
Please open Telegram to view this post
VIEW IN TELEGRAM
Thoughts ? 😭😂
Forwarded from Frectonz
The JS Execution Model

[bsky]
Forwarded from Genene T. ☕️
The lion does not concern himself with edge cases.😂
😁2
Average vibe coder’s prompt 😭
😁3🤣2
Just sent my first-ever PR to the Laravel framework

added except() method to JsonResource class so you can easily exclude fields like:

(new UserResource($user))->except(['email', 'profile.ssn']);


Taylor Otwell reviewed it (yeah, that Taylor 👀) and said they’ll consider it for Laravel 13.

Didn’t get merged, but still feels awesome seeing my name in a Laravel PR thread 😎

Here's the link - https://github.com/laravel/framework/pull/57426
🔥8
Ever wondered why we hash JWTs with a secret key if anyone can decode them anyway?

A JWT has three parts:
header.payload.signature

The header and payload are just Base64URL-encoded, not encrypted so yes, anyone can decode and read them. That’s intentional.

When a server receives a JWT, it recomputes the signature using its secret key and compares it to the token’s signature.
If someone changed even one letter in the payload like switching
"role":"user"

to
"role":"admin"

the signatures wouldn’t match and the token would be rejected. so hashing a JWT with a key isn’t about secrecy it’s about authenticity.
It proves the data is real, untampered, and issued by someone who holds the secret.
🔥5