ru
Feedback
for-coder

for-coder

Открыть в Telegram
466
Подписчики
Нет данных24 часа
-17 дней
-1230 день
Архив постов
👨‍💻🎯Git Commands for Software Engineers👩‍💻 ‼️#IMPORTANT‼️ 7 min read time
Git is a crucial tool for software engineers that supports efficient version control and collaboration. Mastering Git commands helps streamline development workflows. This guide covers important commands such as git config, git init, git commit, git push, git pull, git branch, git merge, and many others that are essential for Show more

Repost from TIKVAH-ETHIOPIA
ኢትዮጵያ ወርቅ አገኘች። ሀገራችን በኦሎምፒኩ የመጀመሪያ የወርቅ ሜዳሊያ በማራቶን በጀግናው አትሌትላችን ታምራት ቶላ አማካኝነት አግኝታለች። ምንም እንኳን በፓሪስ እየተመዘገበ ያለው ውጤት አንገት የ
ኢትዮጵያ ወርቅ አገኘች። ሀገራችን በኦሎምፒኩ የመጀመሪያ የወርቅ ሜዳሊያ በማራቶን በጀግናው አትሌትላችን ታምራት ቶላ አማካኝነት አግኝታለች። ምንም እንኳን በፓሪስ እየተመዘገበ ያለው ውጤት አንገት የሚያስደፋ ቢሆንም ዛሬ በወንዶች ማራቶን የተገኘው ውጤት የሚያኮራ ነው። አትሌት ታምራት እጅግ በሚደንቅ ብቃት ነው ወርቁን ወደ ኢትዮጵያ እጅ ያስገባው። አትሌት ታምራት ተጠባባቂ የነበረ ሲሆን የአትሌት ሲሳይ ለማን መጎዳት ተከትሎ ነው በውድድሩ ሊሳተፍ የቻለው። @tikvahethiopia @tikvahethsport

🎉🎉🎉🎉

Which
Anonymous voting

Have a nice evening Btw Which side are you on

🎯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

What is the output of the above code
Anonymous voting

#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;
}

👨‍💻👩‍💻🎯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

🎯🚀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 🚀💻✨

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

Some bad code just broke a billion Windows machines < PLAY >

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

Repost from for-coder
what is the output for the above code
Anonymous voting

#include <iostream>
using namespace std;

int x = 2;

void dob(int) {
    cout << ::x * 2; 
}
int main() {
    int a = 6;
    dob(a);
}

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

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

What's the output for the above code
Anonymous voting

Let arr = [1,2,3];

arr[5]=3;

Console.log(arr.length);

Repost 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.