The Software Guy – Telegram
The Software Guy
1.71K subscribers
644 photos
80 videos
32 files
226 links
Survivor 💀
Download Telegram
they made it 1.8k and we said FINEEE so they thought we liked it so they pumped it to 2k😭😭😂

እስኪ ምንታመጡ typa shi😭
😭36🙉1
Thanks to AU i walked 9.34km 🥲
ከስቼ ማለቄ ነዉ ወገን ሳላልቅ ቶሎ መኪና ግዙልኝ
294
Forwarded from Google Developer Group AAU (Hira)
This media is not supported in your browser
VIEW IN TELEGRAM
Reminder: Open Mic Session Tomorrow!


Don’t miss our Open Mic Session featuring Anwar Nasir (The Software Guy) — self-taught mobile developer and creator of Codecast, EchoLog, and the Telegram Creators Leaderboard.

Expect real talk on mobile development, side projects, perseverance, and an open Q&A you won’t want to skip.

📅 Date: Friday, February 13, 2025
Time: 8:00 PM / 2:00 LT
📍 Live on the GDG AAU Channel

See you there 🚀

Follow us for updates:
| Telegram  | LinkedIn  | Instagram | TikTok | Face Book | X

#GDGAAU #OpenMicSession
31
Yup it was a venting moment lmao 😂
🤣14
Welp here i am , in my own app 😁🫡
37😁87
Thank you everyone for listening a yapping for 1hr , hope you guys might not be educated

but maybe entertained .there was a loot of sensored content that i havent revealed

thanks God he didnt mention 😂 But im super greatful thanks again comrades 🫶
32😁2
Wazaaap Homies 🙌
1
We are selling this Valentine gifts for only 160 Birr Dm to buy 😂😂 imagine making ur crush happy this simple 😊

DM FAST 😁
22💔1
Agentic Engineering
Agentic engineering is a disciplined approach to AI-assisted software development that distinguishes itself from "vibe coding" through human oversight and engineering rigor. While vibe coding means accepting AI output without review (useful for prototypes and MVPs), agentic engineering involves treating AI agents as tools that handle implementation under careful human direction. The workflow requires writing specs before prompting, reviewing every diff, running comprehensive test suites, and maintaining ownership of the codebase. This approach disproportionately benefits senior engineers with strong fundamentals, as it trades typing time for review time and demands architectural thinking over raw code generation. The rise of AI coding raises rather than lowers the bar for software engineering craft.
177👍2
Forwarded from Code sober
Quote of the week

" If I can make it alive by the end of this week as i plan, I belive i will make it through anything."

Happy monday!!
22
So i was given a marketing challenge 😁 , if 150 people joins this channel t.me/CodeSober then randomly we will gift 25 ⭐️ to a random person. .

already 40+ just 100 is enough
🫡11😁43
Flutter devs heads up ⚠️

If you are using custom notification sounds and everything works perfectly in debug but suddenly disappears in release build, the issue might be resource shrinking.

Android sometimes removes files it thinks are unused during release build and that includes your custom sound file.

If your notification sound is inside the res/raw folder, it can get removed unless you explicitly tell Android to keep it.

Create a file called keep.xml inside your res/raw folder and add this:
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:tools="http://schemas.android.com/tools"
tools:keep="@raw/sound" />

After adding this, build release again and your custom notification sound should work normally.

Release builds love breaking things that debug happily ignores. Always test notifications in release mode.
👍2132