for-coder
433 subscribers
107 photos
56 videos
25 files
143 links
@FORCODERR

@firaflash ๐Ÿ‘จโ€๐Ÿ’ป
Download Telegram
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 ๐Ÿ™โœจ
โคโ€๐Ÿ”ฅ3
๐Ÿข Why Your Code is Slow: Common Performance Mistakes Beginners Make

โŒ›๏ธ 26 Min read time
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
โค1
Good evening โ˜•๏ธ
โค2
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
for-coder
Types of programmer.....
Which kind are u
Anonymous Poll
19%
1
7%
2
19%
3
26%
4
7%
5
7%
6
7%
7
7%
8
ere mbrat hayl yesrachun ystachu๐Ÿ˜ญ
๐Ÿ˜ญ2
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));
This media is not supported in your browser
VIEW IN TELEGRAM
Happens all the time ๐Ÿซฅ๐Ÿ˜ตโ€๐Ÿ’ซ
๐Ÿ˜ญ2๐Ÿ‘1
Have a nice holiday + evening ๐Ÿ™
๐Ÿ™4๐Ÿ‘1
Happy Motherโ€™s Day to the heart of our home โ€” your love is our greatest gift!โค๏ธ
โค4
How you guys holdin up๐Ÿ‘‹
Been busy with exam and projects.....
๐Ÿฅฑ1
๐Ÿ”ฅ 10 New Jobs for Burned-Out Developers ๐Ÿ’ปโžก๏ธ๐ŸŒฑ

๐Ÿ•’ 3 min read time
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
let a = [1, 2, 3];
a[10] = 99;

console.log(a.length);
console.log(a.hasOwnProperty(5));
console.log(Object.keys(a));
๐Ÿ‘1
๐Ÿ”ฅ Google I/O 2025 dropped an AI revolution:

๐Ÿ•’ 3 Min read time
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
#include <iostream>
using namespace std;

int main(){
char ch[][20]={"Argentina","Korea","Greece","Nigeria"};
cout<<*(*(ch+2)+1));

}