Ethereum and Solana are different worlds
Bridges help users move assets between them easily
Without bridges crypto would feel disconnected
Bridges are what make multi chain Web3 possible
Ethereum has 2 types of accounts:
EOA = Your wallet, controlled by your private key.
Contract Account = Smart contract, controlled by code.
When you send a transaction:
Wallet → EVM → Smart Contract → Ethereum State Updates
This is the core of how Ethereum works
Meta made me create a business account, verify documents, set up an app, add a phone number & whitelist contacts just to send ONE WhatsApp test message.
2 billion users. worst developer experience ever
RPA is just a bot that works like a human on a computer.
It opens apps, reads data, clicks buttons, fills forms then moves to the next task.
No API. No code changes. No system overhaul.
Just your boring repetitive work, running on autopilot.
Built a production-style CLI todo app in Rust.
Clap for subcommands, serde for JSON persistence, anyhow for error handling.
Every file has one job: models, storage, display, commands.
The ? operator makes error propagation feel like magic.
github.com/OM2309/rust-cli
Rust.
Hardest part was not the syntax. It was letting go of how I thought about memory. Coming from JS/TS, you never think about who owns what. Rust forces you to. And honestly, that makes you a better engineer.
Started learning Rust Lifetimes today.
Feels confusing at first, but you quickly see why the compiler needs it . every reference has an expiry, and Rust wants proof.
Slowly starting to understand how memory safety actually works without a garbage collector.