This media is not supported in your browser
VIEW IN TELEGRAM
Check out this Google gemini glasses
Not gonna lose the TV remote ๐ฎ from now on
๐ฅ1
๐ท แญแญแตแถแต แฐแแฅแ แฅแแณแ โ๏ธ
แ แแขแญ แแญแ แแฅแแฃแ
๐ท แ แฐแฎ แแฐแญแฃแ
แ แแแ แแ แณแ
๐ท แฐแแ
แฅแแญแแแฐ
๐ท แฎแ โจ
แแตแ แแฐแแ โค๏ธโ๐ฅโ๏ธ
Melkam Ye Fasika Beal Yihunlachu
Have a blessed holiday ๐โจ
แ แแขแญ แแญแ แแฅแแฃแ
๐ท แ แฐแฎ แแฐแญแฃแ
แ แแแ แแ แณแ
๐ท แฐแแ
แฅแแญแแแฐ
๐ท แฎแ โจ
แแตแ แแฐแแ โค๏ธโ๐ฅโ๏ธ
Melkam Ye Fasika Beal Yihunlachu
Have a blessed holiday ๐โจ
โคโ๐ฅ3
๐ข Why Your Code is Slow: Common Performance Mistakes Beginners Make
โ๏ธ 26 Min read time
#python #performance
Slow code? ๐ฉ Youโre not aloneโit's a common challenge for beginners! This guide dives into 7๏ธโฃ frequent performance pitfalls and how to fix them ๐ก to make your code zippy and efficient ๐.
๐ Whatโs covered:
๐ชต Too much logging
๐ Inefficient loops
๐ Bad database queries
๐ง Misunderstanding hardware
๐งน Poor memory management
๐งฎ Sluggish array traversal
๐ Unnecessary data copying
Packed with practical examples โ๏ธ and tips ๐ , this guide helps you write faster, smarter code and shows why profiling ๐ and smart data structures ๐งฑ matter.
Read_More
#python #performance
Telegraph
Why Your Code is Slow: Common Performance Mistakes Beginners Make
Maybe youโve experienced something like this before: youโve written code that works, but when you hit โrun,โ it takes forever. You stare at the spinner, wondering if itโs faster to just solve the problem by hand. But you end up looking something like thisโฆโฆ
โค1
Had a problem at home, turned it into a project โ check it out below!
๐ก How I Brought My Old D-Link Router Back to Life
Sooo recently I decided to level up my home WiFi โ not by buying something new, but by reviving an ancient D-Link DSL-124 router we had lying around. ๐(Throwback to when we used to have copper-wired internet ๐)
Now weโre rocking fiber optic from Ethio Telecom with a ZTE router, and I thought: "Why not make this dusty D-Link useful again?"
First attempt?
I plugged the D-Link into the ZTE router using an RJ11 cable (the little phone cable) and prayed for magic. โจ
Spoiler: It flopped. โ Turns out RJ11 is for phone signals, not internet between routers. Rookie mistake lol.
So I wiped the D-Link (full reset ๐ฅ), set it up properly over Ethernet, disabled DHCP, and basically turned it into a simple WiFi extender.
AND GUESS WHAT โ it worked!
My PC connected to the D-Link WiFi and was surfing the web like a champ. ๐ฅ๐
Butttt plot twist:
My phone was NOT vibing. ๐ฅฒ It connected to the D-Link WiFi, but no internet. Meanwhile, my PC was chillinโ.
Since I had MAC address filtering (whitelisting) enabled on the ZTE router for extra security ๐, I thought that was the issue.
I had already whitelisted both my PC and my phone.
I even added the D-Link routerโs MAC address too, thinking it would let everyone behind it through.
Still nothing. ๐ค
After some serious brain workout ๐ง , I figured it out:
Phones sometimes use randomized MAC addresses when connecting to WiFi to be more "private."
Which means the ZTE router didnโt recognize my phone โ even though I whitelisted it.
Fixed it by turning OFF random MAC for the D-Link WiFi on my phone and using the real MAC address.
Reconnected... and BOOM โ full internet access. ๐ฑโ
Now both my PC and my phone are living their best WiFi lives through the D-Link router. ๐
Honestly?
This mini project taught me so much โ not just about routers and cables, but also about MAC filtering, DHCP, network behavior, and how old tech can still be crazy useful if you know how to mess with it.
Moral of the story:
Sometimes, the problems you face are exactly what push you to level up.
Theyโre not the enemy โ theyโre the reason you grow. ๐ฑ
๐ง๐ถ๐ก
๐ฅ3
BTW anybody who knows where or sales RJ45 Ethernet cables let me know @firaflash
This media is not supported in your browser
VIEW IN TELEGRAM
Types of programmer.....
List<int> list = new List<int> { 5, 3, 8, 1 };
Dictionary<int, int> priority = new Dictionary<int, int>
{
{ 5, 1 },
{ 3, 2 },
{ 8, 3 },
{ 1, 4 }
};
list.Sort((a, b) => priority[a].CompareTo(priority[b]));
Console.WriteLine(string.Join(", ", list));
What is the output of the above code?
Anonymous Quiz
21%
A) 8, 5, 3, 1
34%
B) 1, 3, 5, 8
31%
C) 5, 3, 8, 1
14%
D) Throws an exception
This media is not supported in your browser
VIEW IN TELEGRAM
Happens all the time ๐ซฅ๐ตโ๐ซ
๐ญ2๐1
How you guys holdin up๐
Been busy with exam and projects.....
Been busy with exam and projects.....
๐ฅฑ1
๐ฅ 10 New Jobs for Burned-Out Developers ๐ปโก๏ธ๐ฑ
๐ 3 min read time
Read_More
Feeling the burnout? ๐ You're not alone. Devs can pivot into roles like ๐ฅ DevRel, ๐ง Engineering Manager, ๐ Technical Architect, ๐ฆ Product Manager, and more!
Use your coding superpowers ๐ช in fresh ways that match your strengths & passion! ๐ผ๐
Read_More
Telegraph
10 New Jobs for Burned-Out Software Developers
Featured image by RerF_Studio on Shutterstock. If youโve been in the trenches as a software developer for a while, you know the routine: code reviews, sprint planning, mentoring juniors, shipping features, fighting fires in production and probably a dozenโฆ
let a = [1, 2, 3];
a[10] = 99;
console.log(a.length);
console.log(a.hasOwnProperty(5));
console.log(Object.keys(a));
๐1
What is the output of the above code
Anonymous Quiz
25%
11 false ["0", "1", "2", "10"]
48%
Index Out Of Bound error
13%
11 true ["0", "1", "2", "5", "10"]
10%
10 false ["0", "1", "2"]
5%
11 false ["0", "1", "2", "5", "10"]
๐1
๐ฅ Google I/O 2025 dropped an AI revolution:
๐ 3 Min read time
READ_MORE
Gemini 2.5 crushes competitors, will soon browse & interact for you.
Stitch auto-generates UIs, Jules codes AI agents, Flow makes cinematic videosโjobs at risk.
$250/month "AI Ultra" subscription unlocks Geminiโs full power (+30TB storage).
Project Astra sees the world for you, Beam turns 2D into 3D.
AI videos now have sound, CSS carousels finally exist.
Agent takeover is hereโAI builds AI, uses AI, in an AI-powered future.
Verdict: Adapt or get replaced. ๐ #AIRevolution
READ_MORE
Telegraph
๐ฅ Googleโs AI Takeover: 11 Mind-Blowing Upgrades That Will Change Everything
Yesterday, Google dropped an AI bombshell so massive it sent shockwaves through the tech world. From vaporware hype to actual game-changers, hereโs what went down at Google I/O 2025โand why your job might be on the line. 1. Gemini 2.5 "Deepthank" โ The Newโฆ
#include <iostream>
using namespace std;
int main(){
char ch[][20]={"Argentina","Korea","Greece","Nigeria"};
cout<<*(*(ch+2)+1));
}