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
You ever done this shii before? ๐Ÿ˜‚๐Ÿ˜‚
๐Ÿ˜1
Forwarded from Telegram Contests
๐Ÿ† Telegram Contest for JavaScript Developers, Round 2

Prize fund: $30,000
Deadline: 23:59 on July 28th (Dubai time)
Who can participate: Everyone is welcome to participate, even if they didn't take part in the previous round
Results: August 18th, 2024

Telegram is hosting a contest for JavaScript developers to implement two new features into Telegram Web and address the scrolling issue on Chrome for Android.

The Task:

1. Implement Media Editor and Multiple Accounts into Telegram Web K based on the provided mockups.
2. Web K is currently experiencing scrolling issues when used on Chrome for Android. This issue causes noticeable lagging on devices with 120 FPS displays, particularly when scrolling through any entities containing numerous media elements โ€“ essentially, any channel with larger message bubbles and multiple media items. (You must investigate the issue, provide a detailed explanation of it, and implement a fix that will address the issue.)

Evaluation Criteria and Requirements:

General
โ€“ No third-party UI frameworks are allowed.
โ€“ The submission must be consistent with the existing Web K codebase.
โ€“ Your implementation must work flawlessly on desktop Chrome (across Linux, macOS, Windows) and Safari on macOS. Proper support for other browsers and mobile environments (Android, iOS) will be considered a bonus.

โ—๏ธYour app must precisely follow the provided design mockups. Entries that fail to do so will be severely penalized.

Further Clarifications:

Media Editor
โ€“ You must not use any libraries or components (i.e., from other existing media editors) for any parts of the Media Editor. All the features presented in the mockups must be built from scratch.
โ€“ It is acceptable to send static media when an animated sticker is added to a photo, though a proper conversion into a GIF would be considered a bonus.

Multiple Accounts
The app must properly handle the databases from several accounts, support simultaneous notifications, and oversee all possible edge cases, including forced logout from another device. For reference, you may check official Telegram apps.

Submissions:
Contestants will be able to submit their entries to @ContestBot at a later date. We will further clarify the submission instructions closer to the deadline.

P.S. Winners may be offered a chance to explore further opportunities with Telegram.
Please open Telegram to view this post
VIEW IN TELEGRAM
Let arr = [1,2,3];

arr[5]=3;

Console.log(arr.length);
What's the output for the above code
Anonymous Quiz
18%
3
10%
5
15%
6
8%
4
50%
Error
โค1
The Top 11 Programming Languages to Learn in 2024

In 2024, staying ahead in tech requires knowing the top programming languages based on their versatility and popularity. Key languages include Python (for web development, data science, AI/ML, and automation), JavaScript (web and mobile app development, game development), Java (enterprise applications, Android apps, web apps), Show more


https://telegra.ph/The-Top-11-Programming-Languages-to-Learn-in-2024-07-16-2
๐Ÿ‘1
ChatGPT - Prompts for developers

ChatGPT is an AI chatbot that helps developers in various ways such as writing code, refactoring code, code review and debugging, optimizing code, explaining code, creating unit tests, adding code comments, creating boilerplate code, and writing regular expressions.


https://telegra.ph/ChatGPT---Prompts-for-developers-07-16
#include <iostream>
using namespace std;

int x = 2;

void dob(int) {
cout << ::x * 2;
}
int main() {
int a = 6;
dob(a);
}
Forwarded from for-coder (KEN ADAMS)
what is the output for the above code
Anonymous Quiz
4%
2
33%
12
48%
4
6%
6
8%
error
Why is GPT-4o Free? OpenAIโ€™s Master Plan
OpenAI has launched GPT-4o for free with the aim of achieving mass adoption, competing with other models, collecting more data for training future models, countering the scorched earth theory, and driving network effects. They may also have even better products coming soon.

https://telegra.ph/Why-is-GPT-4o-Free-OpenAIs-Master-Plan-07-19
Good Commit โœ”๏ธ VS. Bad Commit โŒ: Best Practices for Git

Good commits are crucial for maintaining a clean and understandable project history in Git. Characteristics of good commits include being atomic and focused, having descriptive messages, following conventional guidelines, being tested and verified, and being properly scoped. Conversely, bad commits are large and unfocused, have Show more
๐Ÿ‘1๐Ÿ‘Œ1
Step_By_Step_Guide_to_Register_on_5_million_Ethiopian_coders_join.pdf
1.3 MB
๐ŸŽฏ๐Ÿš€Advancing Digital Literacy for Ethiopiaโ€™s Youth


5 Million Ethiopian Coders is a joint initiative between the Government of Ethiopia and the Government of the United Arab Emirates. This program is an offshoot of the historic One Million Arab Coders program, which was announced in 2017 by His Highness Sheikh Mohammed Bin Rashid Al Maktoum at the World Economic Forum.
Ethiopian learners will have the opportunity to gain foundational level skills across three domains: Programming Fundamentals, Data Science Fundamentals and Android Kotlin Developer Fundamentals. Learners will be supported by mentors who will support them on a dedicated Community Platform to unblock technical questions on a daily basis throughout the 6-7 week course. Upon successful course completion, learners will be awarded with skill-based certifications.


๐Ÿ“ข ๐Ÿ…•๐Ÿ…ž๐Ÿ…ก ๐Ÿ…’๐Ÿ…ž๐Ÿ…“๐Ÿ…”๐Ÿ…ก

#coding #coding_course
#5million_coders
#CodeWith_forcoder #swe
#CodingRevolution ๐Ÿš€๐Ÿ’ปโœจ
๐Ÿ‘จโ€๐Ÿ’ป๐Ÿ‘ฉโ€๐Ÿ’ป๐ŸŽฏ37 Tips from a Senior Frontend Developer

๐Ÿ•˜9 min read time
for frontend developers include mastering the fundamentals, understanding how the web works, learning data structures and algorithms, practicing rather than just reading or watching tutorials, asking for help when stuck, not blindly copying code, evaluating online advice, assuming good intent, and focusing on delivering Show more
๐Ÿ‘1
#include<iostream>
using namespace std;

void swap(int a, int b){
int temp = a;
a= b;
b = temp;
}
int main(){
int a =2 , b = 4;
cout << a <<" "<< b << endl;
swap(a,b);
cout << a << " " << b << endl;
return 0;
}
๐Ÿ‘1๐Ÿ”ฅ1
๐ŸŽฏ18 GitHub Repositories to Boost Your Career as a Developer ๐Ÿš€๐Ÿง‘โ€๐Ÿ’ป๐Ÿ‘ฉโ€๐Ÿ’ป

โ€ข7m read time
Staying current with the latest tools and resources is crucial in the evolving field of software development. Hereโ€™s a curated list of useful GitHub repositories for roadmaps, data structures, algorithms, interview preparation, job listings, and more. These repositories are community-driven and cover a range of topics including Show more
โค1
Have a nice evening
Btw Which side are you on
This media is not supported in your browser
VIEW IN TELEGRAM
๐Ÿ˜4
Which
Anonymous Poll
19%
IPhone
81%
Android
๐ŸŽ‰๐ŸŽ‰๐ŸŽ‰๐ŸŽ‰
Forwarded from TIKVAH-ETHIOPIA
แŠขแ‰ตแ‹ฎแŒตแ‹ซ แ‹ˆแˆญแ‰… แŠ แŒˆแŠ˜แ‰ฝแข

แˆ€แŒˆแˆซแ‰ฝแŠ• แ‰ แŠฆแˆŽแˆแ’แŠฉ แ‹จแˆ˜แŒ€แˆ˜แˆชแ‹ซ แ‹จแ‹ˆแˆญแ‰… แˆœแ‹ณแˆŠแ‹ซ แ‰ แˆ›แˆซแ‰ถแŠ• แ‰ แŒ€แŒแŠ“แ‹ แŠ แ‰ตแˆŒแ‰ตแˆ‹แ‰ฝแŠ• แ‰ณแˆแˆซแ‰ต แ‰ถแˆ‹ แŠ แˆ›แŠซแŠแАแ‰ต แŠ แŒแŠแ‰ณแˆˆแ‰ฝแข

แˆแŠ•แˆ แŠฅแŠ•แŠณแŠ• แ‰ แ“แˆชแˆต แŠฅแ‹จแ‰ฐแˆ˜แ‹˜แŒˆแ‰  แ‹ซแˆˆแ‹ แ‹แŒคแ‰ต แŠ แŠ•แŒˆแ‰ต แ‹จแˆšแ‹ซแˆตแ‹ฐแ‹ แ‰ขแˆ†แŠ•แˆ แ‹›แˆฌ แ‰ แ‹ˆแŠ•แ‹ถแ‰ฝ แˆ›แˆซแ‰ถแŠ• แ‹จแ‰ฐแŒˆแŠ˜แ‹ แ‹แŒคแ‰ต แ‹จแˆšแ‹ซแŠฎแˆซ แАแ‹แข

แŠ แ‰ตแˆŒแ‰ต แ‰ณแˆแˆซแ‰ต แŠฅแŒ…แŒ แ‰ แˆšแ‹ฐแŠ•แ‰… แ‰ฅแ‰ƒแ‰ต แАแ‹ แ‹ˆแˆญแ‰แŠ• แ‹ˆแ‹ฐ แŠขแ‰ตแ‹ฎแŒตแ‹ซ แŠฅแŒ… แ‹ซแˆตแŒˆแ‰ฃแ‹แข

แŠ แ‰ตแˆŒแ‰ต แ‰ณแˆแˆซแ‰ต แ‰ฐแŒ แ‰ฃแ‰ฃแ‰‚ แ‹จแАแ‰ แˆจ แˆฒแˆ†แŠ• แ‹จแŠ แ‰ตแˆŒแ‰ต แˆฒแˆณแ‹ญ แˆˆแˆ›แŠ• แˆ˜แŒŽแ‹ณแ‰ต แ‰ฐแŠจแ‰ตแˆŽ แАแ‹ แ‰ แ‹แ‹ตแ‹ตแˆฉ แˆŠแˆณแ‰ฐแ แ‹จแ‰ปแˆˆแ‹แข

@tikvahethiopia @tikvahethsport
๐ŸŽ‰1