Just dropped my P2P vendor poster 📲
If you’re looking to buy or sell USDT and other CRYPTOCURRENCY safely, I got you.
📩 DM me or contact me via the number below — let’s trade smoothly 💸
#P2P#USDT#CryptoTrades
I just confirmed that @MTNNG steals data from their users‼️‼️💔
I’ve been having suspicions that MTN have been stealing data because of the rate at which my data finishes so fast even if I don’t download anything
So yesterday by 3:52 PM I bought 11GB data for 3500 naira
I put my phone on power saving mode so no app in the background will be able to use data
I didn’t download or upload any videos and I’ve been using my phone lightly.
I felt like all this wasn’t enough so i decided to download an app that tracks my data usage
This afternoon MTN sent me a message that I have just 4GB of data left
Checked the app and saw I used only 3GB from the 11GB I bought yesterday
Now my question to MTN is this
If I used 3GB from 11GB that means I should have 8GB left
Why do I have just 4GB left?
Where did my remaining 4GB go???
All evidence attached in the screenshots below👇👇👇
We need to call out MTN for these recent thefts as I’m sure I’m not the only one facing this problem
🚨 Be a Lazy Programmer
The best programmers aren't the ones who write the most code. They're the ones who write the least code while getting the job done better, faster, and more reliably.
This is working too hard:
transposed = []
for i in range(len(matrix[0])):
row = []
for r in matrix:
row.append(r[i])
transposed.append(row)
This is taking it easy:
transposed = list(zip(*matrix))
Lazy doesn't mean sloppy, nah, it means you respect your time (and your team's). It means you invest brainpower in learning the language's idioms so you can focus on solving real problems instead of reinventing the wheel.
Every great developer I know has a collection of "lazy" tricks:
✔️ List comprehensions that replace nested loops ✔️ collections.defaultdict instead of manual checks ✔️ Context managers instead of manual open/close ✔️ One-liners that spark joy (and pass code review)
The goal isn't to show how hard you worked, but to ship clean, maintainable solutions with minimal effort.
🔑 Like someone famously said, "I would have written a shorter letter, but did not have the time." Find time to learn the shortcuts.