for-coder
Kanalga Telegramβda oβtish
Chat for yapping the latest topics and some project show case @FORCODERR π₯ @firaflash π¨βπ» curious dev
Ko'proq ko'rsatish470
Obunachilar
-124 soatlar
-37 kun
+730 kun
Postlar arxiv
470
Repost from N/a
+2
Senay: EOTC bible study [final build.]
i have added:
- app lock
- widget calendar
- upcoming and current fasting days
- all the pages and cloud sync
- daily wudase and reminder.
and so much more fully offline on play store.
[Submit] your emails so i can invite you for download
470
when you type signore instead of senior on an email that you want to send to your senior
470
Eid Mubarak! Wishing all that celebrate joy, peace, and prosperity on this special day.
α’α΅ αα£α¨α! π
470
Today i woke up and received and email didn't expected this much π
we pusinn it bednbπͺπͺπππ
Telegram premium loading βοΈ
Muchas Grasias π
470
Repost from Tech Nerd
1 USD = 155 ETB.
No one here is paying me 155x my effort, so I stopped working with local clients like 1 and half year ago. (same for @Natyiu0). If you trust your skills and have solid projects (not just AI to do lists), go to YC startups, find early stage founders on LinkedIn or X, and DM them. Twitter Premium helps and its worth it.
If youβre good, you can land a $1k internship for 1β2 months. Go all in, and it can turn into a $3kβ$4k full-time role. Iβve seen it happen. If youβre not there yet, build. 2β4 hours a day. One strong project every week for 4 weeks. Post on X (views donβt matter), then start DMing.
Keep building, make projects more complex over time. Just make side projects a habit. Rewire your brain.
@selfmadecoder
470
first time encountering max-width problem from github lol
I aint the only one with such kinda bugs ππ
470
Repost from Kenat / ααα΅
Why open an app when your notification bar can do the heavy lifting?
A preview of the full-month calendar view coming to Kenat. Weβre currently in the lab getting everything ready for you. More updates soon! π
470
function update(obj) {
obj.name = "updated";
}
function replace(obj) {
obj = { name: "new" };
}
let original = { name: "initial" };
update(original);
console.log(original.name);
replace(original);
console.log(original.name);