Git is easy (actually) once you learn these 20 commands:
1. 𝐠𝐢𝐭 𝐢𝐧𝐢𝐭: Initializes a new Git repository
- Example: git init my-new-project
2. 𝐠𝐢𝐭 𝐜𝐨𝐧𝐟𝐢𝐠: Set git configuration values like username/email
- Example: git config --global user .name "user123"
3. 𝐠𝐢𝐭 𝐜𝐥𝐨𝐧𝐞: Creates a copy of a remote repository
- Example: git clone remote_url
4. 𝐠𝐢𝐭 𝐫𝐞𝐦𝐨𝐭𝐞: Manages connections to remote repositories
- Example: git remote add origin remote_url
5. 𝐠𝐢𝐭 𝐬𝐭𝐚𝐭𝐮𝐬: Shows the current state of your working directory
- Example: git status
6. 𝐠𝐢𝐭 𝐚𝐝𝐝: Adds files to the staging area
- Example: git add file.js
7. 𝐠𝐢𝐭 𝐜𝐨𝐦𝐦𝐢𝐭: Record changes to local repository
- Example: git commit -m "Fix navigation bug"
8. 𝐠𝐢𝐭 𝐩𝐮𝐬𝐡: Uploads local commits to a remote repository
- Example: git push origin main
9. 𝐠𝐢𝐭 𝐩𝐮𝐥𝐥: Fetches and integrates changes from a remote repository
- Example: git pull origin main
10. 𝐠𝐢𝐭 𝐟𝐞𝐭𝐜𝐡: Downloads latest changes from a remote repository without merging
- Example: git fetch origin
11. 𝐠𝐢𝐭 𝐛𝐫𝐚𝐧𝐜𝐡: Lists, creates, or deletes branches
- Example: git branch feature/login
12. 𝐠𝐢𝐭 𝐜𝐡𝐞𝐜𝐤𝐨𝐮𝐭: Switches branches or restores files
- Example: git checkout feature/login
13. 𝐠𝐢𝐭 𝐦𝐞𝐫𝐠𝐞: Combines changes from different branches
- Example: git merge feature/login
14. 𝐠𝐢𝐭 𝐫𝐞𝐛𝐚𝐬𝐞: Reapplies commits on top of another base
- Example: git rebase main
15. 𝐠𝐢𝐭 𝐥𝐨𝐠: Shows commit history
- Example: git log --oneline --graph
16. 𝐠𝐢𝐭 𝐝𝐢𝐟𝐟: Shows differences between commits, branches, etc.
- Example: git diff HEAD~1 HEAD
17. 𝐠𝐢𝐭 𝐬𝐭𝐚𝐬𝐡: Temporarily stores uncommitted changes
- Example: git stash save "WIP: feature implementation"
18. 𝐠𝐢𝐭 𝐫𝐞𝐬𝐞𝐭: Undoes changes by moving HEAD
- Example: git reset --soft HEAD~1
19. 𝐠𝐢𝐭 𝐫𝐞𝐯𝐞𝐫𝐭: Creates a new commit that undoes a change
- Example: git revert abc123f
20. 𝐠𝐢𝐭 𝐜𝐡𝐞𝐫𝐫𝐲-𝐩𝐢𝐜𝐤: Applies specific commit from another branch
- Example: git cherry-pick abc123f
What other git commands would you add to this list?
share to help others in your network
1. 𝐠𝐢𝐭 𝐢𝐧𝐢𝐭: Initializes a new Git repository
- Example: git init my-new-project
2. 𝐠𝐢𝐭 𝐜𝐨𝐧𝐟𝐢𝐠: Set git configuration values like username/email
- Example: git config --global user .name "user123"
3. 𝐠𝐢𝐭 𝐜𝐥𝐨𝐧𝐞: Creates a copy of a remote repository
- Example: git clone remote_url
4. 𝐠𝐢𝐭 𝐫𝐞𝐦𝐨𝐭𝐞: Manages connections to remote repositories
- Example: git remote add origin remote_url
5. 𝐠𝐢𝐭 𝐬𝐭𝐚𝐭𝐮𝐬: Shows the current state of your working directory
- Example: git status
6. 𝐠𝐢𝐭 𝐚𝐝𝐝: Adds files to the staging area
- Example: git add file.js
7. 𝐠𝐢𝐭 𝐜𝐨𝐦𝐦𝐢𝐭: Record changes to local repository
- Example: git commit -m "Fix navigation bug"
8. 𝐠𝐢𝐭 𝐩𝐮𝐬𝐡: Uploads local commits to a remote repository
- Example: git push origin main
9. 𝐠𝐢𝐭 𝐩𝐮𝐥𝐥: Fetches and integrates changes from a remote repository
- Example: git pull origin main
10. 𝐠𝐢𝐭 𝐟𝐞𝐭𝐜𝐡: Downloads latest changes from a remote repository without merging
- Example: git fetch origin
11. 𝐠𝐢𝐭 𝐛𝐫𝐚𝐧𝐜𝐡: Lists, creates, or deletes branches
- Example: git branch feature/login
12. 𝐠𝐢𝐭 𝐜𝐡𝐞𝐜𝐤𝐨𝐮𝐭: Switches branches or restores files
- Example: git checkout feature/login
13. 𝐠𝐢𝐭 𝐦𝐞𝐫𝐠𝐞: Combines changes from different branches
- Example: git merge feature/login
14. 𝐠𝐢𝐭 𝐫𝐞𝐛𝐚𝐬𝐞: Reapplies commits on top of another base
- Example: git rebase main
15. 𝐠𝐢𝐭 𝐥𝐨𝐠: Shows commit history
- Example: git log --oneline --graph
16. 𝐠𝐢𝐭 𝐝𝐢𝐟𝐟: Shows differences between commits, branches, etc.
- Example: git diff HEAD~1 HEAD
17. 𝐠𝐢𝐭 𝐬𝐭𝐚𝐬𝐡: Temporarily stores uncommitted changes
- Example: git stash save "WIP: feature implementation"
18. 𝐠𝐢𝐭 𝐫𝐞𝐬𝐞𝐭: Undoes changes by moving HEAD
- Example: git reset --soft HEAD~1
19. 𝐠𝐢𝐭 𝐫𝐞𝐯𝐞𝐫𝐭: Creates a new commit that undoes a change
- Example: git revert abc123f
20. 𝐠𝐢𝐭 𝐜𝐡𝐞𝐫𝐫𝐲-𝐩𝐢𝐜𝐤: Applies specific commit from another branch
- Example: git cherry-pick abc123f
What other git commands would you add to this list?
share to help others in your network
👍4
🚀 Are you an African technologist ready to level up your skills?
Applications are now open for the next cohort of the Kubernetes African Developer Training Program 🌍
Get the chance to earn your Kubernetes and Cloud Native Associate (KCNA) certification — 100% FREE!
⚠️ Limited slots available — don’t miss out!
👉 Apply here: form
Join our community: et_open_source
Applications are now open for the next cohort of the Kubernetes African Developer Training Program 🌍
Get the chance to earn your Kubernetes and Cloud Native Associate (KCNA) certification — 100% FREE!
⚠️ Limited slots available — don’t miss out!
👉 Apply here: form
Join our community: et_open_source
Google Docs
Kubernetes African Developer Training Program - 2026 Application
🙏2
Backend Developers (1).jpg
122.3 KB
We’re Hiring: Backend Developer
Work Type: Hybrid (1 day onsite per week)
Salary: 30,000 ETB/month
Requirements
1–2 years of professional experience on production applications (excluding academic or demo projects)
Strong proficiency in JavaScript and Python (additional languages are a plus)
Solid hands-on experience in backend development, including building and maintaining robust APIs and services
ONLY GRADUATE. NO STUDENTS ALLOWED
apply using the link below:
👉 https://lnkd.in/dQv32AhY
Work Type: Hybrid (1 day onsite per week)
Salary: 30,000 ETB/month
Requirements
1–2 years of professional experience on production applications (excluding academic or demo projects)
Strong proficiency in JavaScript and Python (additional languages are a plus)
Solid hands-on experience in backend development, including building and maintaining robust APIs and services
ONLY GRADUATE. NO STUDENTS ALLOWED
apply using the link below:
👉 https://lnkd.in/dQv32AhY
👍5
Forwarded from enoch.codes👨🏾💻
Applications are now OPEN — Backend Engineering Program
After receiving 150+ YES votes, I’m opening applications for a limited-seat, live backend engineering cohort.
This is a selection-based program, not open enrollment.
Apply only if you are serious about:
understanding how backend systems really work
building production-grade systems
committing live session 3 days a week for 12 weeks
Apply using the form below 👇
https://docs.google.com/forms/d/e/1FAIpQLSexm3pFtFWRV-UeZRPlK8Z2RgKugdriERjo7ffZQiLw3YiS6A/viewform?usp=header
After receiving 150+ YES votes, I’m opening applications for a limited-seat, live backend engineering cohort.
This is a selection-based program, not open enrollment.
Apply only if you are serious about:
understanding how backend systems really work
building production-grade systems
committing live session 3 days a week for 12 weeks
Apply using the form below 👇
https://docs.google.com/forms/d/e/1FAIpQLSexm3pFtFWRV-UeZRPlK8Z2RgKugdriERjo7ffZQiLw3YiS6A/viewform?usp=header
Google Docs
Gofer Labs – Cohort 1 Backend Engineering Program
This is a 12-week live, mentor-led Server-Side Engineering program.
Seats are limited. Selection is based on commitment, readiness, and clarity, not speed.
Please answer honestly. This is not an exam.
Seats are limited. Selection is based on commitment, readiness, and clarity, not speed.
Please answer honestly. This is not an exam.
👍3
🚀 BUIDL CTC Ideathon Ethiopia
BUIDL CTC Ideathon Ethiopia is an in-person, beginner-friendly ideathon happening ahead of BUIDL CTC 2026. It’s an open space for developers, and Web3-curious builders and students to explore ideas, learn, and prepare to build for a global BUILD CTC 2026 Hackthon (https://buidl.creditcoin.org/)
🗓 Jan 31, 2026
⏰ 1:00 PM – 6:30 PM
📍 BlueSpace Coworking space, Bole
🍽 Snacks and Food
👉Register(Limited Spots): https://luma.com/361816kh
🌍 Who Should Join
Web2 & Web3 developers, Students, designers, founders and anyone curious about Web3
Join solo or with a team.
No prior Web3 experience. No polished product.
Just show up, pitch your idea🚀
Top 5 Projects will split prize pool of 500$
🧩 Themes
DeFi, RWA, DePIN and Gaming. Early-stage and creative ideas are welcome
🏆 $500 Prize Pool
🥇 $200
🥈 $125
🥉 $100
🏅 $50
🏅 $25
⚠️ Limited capacity — secure your spot early
BUIDL CTC Ideathon Ethiopia is an in-person, beginner-friendly ideathon happening ahead of BUIDL CTC 2026. It’s an open space for developers, and Web3-curious builders and students to explore ideas, learn, and prepare to build for a global BUILD CTC 2026 Hackthon (https://buidl.creditcoin.org/)
🗓 Jan 31, 2026
⏰ 1:00 PM – 6:30 PM
📍 BlueSpace Coworking space, Bole
🍽 Snacks and Food
👉Register(Limited Spots): https://luma.com/361816kh
🌍 Who Should Join
Web2 & Web3 developers, Students, designers, founders and anyone curious about Web3
Join solo or with a team.
No prior Web3 experience. No polished product.
Just show up, pitch your idea🚀
Top 5 Projects will split prize pool of 500$
🧩 Themes
DeFi, RWA, DePIN and Gaming. Early-stage and creative ideas are welcome
🏆 $500 Prize Pool
🥇 $200
🥈 $125
🥉 $100
🏅 $50
🏅 $25
⚠️ Limited capacity — secure your spot early
👍1
Top 12 AI Tools for Students 🔥📈
1. GROK - Solve problems
2. Grammarly - Fix grammar & tone
3. GitMind - AI mind maps
4. QuillBot - Paraphrase & summarize
5. Notion AI - Plan projects
6. Copy .ai - Auto citations & outlines
7. Wolfram Alpha - Crush math/science problems
8. Otter .ai - Auto transcribe lectures
9. Copilot - Assignment debugging
10. Socratic - Snap question, get answer
11. Speechify - Text to audio
12. Evernote - Scan & search notes
1. GROK - Solve problems
2. Grammarly - Fix grammar & tone
3. GitMind - AI mind maps
4. QuillBot - Paraphrase & summarize
5. Notion AI - Plan projects
6. Copy .ai - Auto citations & outlines
7. Wolfram Alpha - Crush math/science problems
8. Otter .ai - Auto transcribe lectures
9. Copilot - Assignment debugging
10. Socratic - Snap question, get answer
11. Speechify - Text to audio
12. Evernote - Scan & search notes
🔥2
Hyderabad Startups list
1. two44 software solutions – two44software.com - Software Development
2. ekincare – ekincare.com – Health Tech
3. Perceptive - perceptive.com
4. SignalX AI – signalx.ai – AI Due Diligence
5. QiTech.in – qitech.in – Software Development
6. Trice Community – tricecommunity.com – Community App
7. ToastApp – toastapp.co – F&B Tech
8. PORTEL TECHNOLOGIES – portl.co – Health & Fitness Tech
9. actlogica solutions private limited – actlogica.com – Software
10. Adiabatic Technologies Pvt Ltd – adiabatic.co.in – Energy Storage
11. Hesa Enterprises Pvt Ltd – hesa.co – Rural Commerce
12. PublicVibe – publicvibe.com – News Platform
13. Banyan Nation – banyannation.com – Recycling
14. FINDERNEST SOFTWARE SERVICES PVT LTD – findernest.com – Recruitment Software
15. Onelement Energy Private Limited – onelement.in – Clean Energy
16. Docminds – docminds.com – Healthcare Ecosystem
17. COMETLABS – cometlabs.in – Developer Tools
18. clap-serv – clap-serv.com – Service Platform
19. Harvested Robotics – harvested.bio – Agri-Tech
20. Janaspandana Software Solutions – janaspandana.in – Product Consulting
21. Edyst – edyst.com – Online Learning
22. Bankia BioLoo Limited – bankiabio.com – Sanitation Solutions
23. beeshop learning private limited – beesho.in – Education VR/Gaming
24. Algohire Technologies Private Limited – algohire.ai – AI Recruitment
25. Dual triangles – dualtriangles.com – AI Logistics
26. GenZ Technologies Pvt Ltd – genzis.ai – AI/ML Services
27. SummerApp – toastapp.co – Restaurant OS
28. Questbook – questbook.xyz – Ecosystem Incentives
29. ChargeKart Private Limited – chargekart.co.in – Autonomous Charging
30. Thumb Pay Pvt Ltd – thumbpay.com – Digital Payment
1. two44 software solutions – two44software.com - Software Development
2. ekincare – ekincare.com – Health Tech
3. Perceptive - perceptive.com
4. SignalX AI – signalx.ai – AI Due Diligence
5. QiTech.in – qitech.in – Software Development
6. Trice Community – tricecommunity.com – Community App
7. ToastApp – toastapp.co – F&B Tech
8. PORTEL TECHNOLOGIES – portl.co – Health & Fitness Tech
9. actlogica solutions private limited – actlogica.com – Software
10. Adiabatic Technologies Pvt Ltd – adiabatic.co.in – Energy Storage
11. Hesa Enterprises Pvt Ltd – hesa.co – Rural Commerce
12. PublicVibe – publicvibe.com – News Platform
13. Banyan Nation – banyannation.com – Recycling
14. FINDERNEST SOFTWARE SERVICES PVT LTD – findernest.com – Recruitment Software
15. Onelement Energy Private Limited – onelement.in – Clean Energy
16. Docminds – docminds.com – Healthcare Ecosystem
17. COMETLABS – cometlabs.in – Developer Tools
18. clap-serv – clap-serv.com – Service Platform
19. Harvested Robotics – harvested.bio – Agri-Tech
20. Janaspandana Software Solutions – janaspandana.in – Product Consulting
21. Edyst – edyst.com – Online Learning
22. Bankia BioLoo Limited – bankiabio.com – Sanitation Solutions
23. beeshop learning private limited – beesho.in – Education VR/Gaming
24. Algohire Technologies Private Limited – algohire.ai – AI Recruitment
25. Dual triangles – dualtriangles.com – AI Logistics
26. GenZ Technologies Pvt Ltd – genzis.ai – AI/ML Services
27. SummerApp – toastapp.co – Restaurant OS
28. Questbook – questbook.xyz – Ecosystem Incentives
29. ChargeKart Private Limited – chargekart.co.in – Autonomous Charging
30. Thumb Pay Pvt Ltd – thumbpay.com – Digital Payment
👍4
Every vibe coder should LEARN this 👇:
1/ The basics (must know):
• Git fundamentals before touching cursor
• Understanding API endpoints and REST
• Basic async/await patterns in JS
• Reading error logs properly
• Terminal commands beyond npm install
• ENV variables and why they matter
• Chrome DevTools debugging
• Basic SQL queries and database structure
• How to read documentation
• When to Google vs when to ask AI
2/ The good ones (nice to have):
• Setting up proper linting and formatting
• Understanding middleware in Next.js
• Basic authentication flows (JWT, OAuth)
• Writing reusable components
• Proper state management patterns
• API rate limiting and caching
• Basic SEO fundamentals
• Mobile responsive design principles
• Performance optimization basics
• Version control branching strategies
3/ The pro skills (ultimate playbook):
• Architecting scalable database schemas
• Building custom API wrappers
• Implementing real-time features with websockets
• Server-side rendering optimization
• Advanced prompt engineering for AI coding
• Building your own component libraries
• CI/CD pipeline setup and automation
• Security best practices and penetration testing
• Load balancing and horizontal scaling
• Monitoring, logging, and observability
4/ The mistakes (peak graveyard):
• Skipping the basics and jumping to frameworks
• Not backing up code before major refactors
• Ignoring type safety until production breaks
• Copying code without understanding it
• Over-engineering simple features
• Not testing edge cases until users find them
• Deploying on Friday evenings
• Hardcoding secrets in your codebase
• Building features no one asked for
• Thinking AI will do everything for you
Master 1-2 skills per week.
Ship while you learn.
Thats how you level up.
1/ The basics (must know):
• Git fundamentals before touching cursor
• Understanding API endpoints and REST
• Basic async/await patterns in JS
• Reading error logs properly
• Terminal commands beyond npm install
• ENV variables and why they matter
• Chrome DevTools debugging
• Basic SQL queries and database structure
• How to read documentation
• When to Google vs when to ask AI
2/ The good ones (nice to have):
• Setting up proper linting and formatting
• Understanding middleware in Next.js
• Basic authentication flows (JWT, OAuth)
• Writing reusable components
• Proper state management patterns
• API rate limiting and caching
• Basic SEO fundamentals
• Mobile responsive design principles
• Performance optimization basics
• Version control branching strategies
3/ The pro skills (ultimate playbook):
• Architecting scalable database schemas
• Building custom API wrappers
• Implementing real-time features with websockets
• Server-side rendering optimization
• Advanced prompt engineering for AI coding
• Building your own component libraries
• CI/CD pipeline setup and automation
• Security best practices and penetration testing
• Load balancing and horizontal scaling
• Monitoring, logging, and observability
4/ The mistakes (peak graveyard):
• Skipping the basics and jumping to frameworks
• Not backing up code before major refactors
• Ignoring type safety until production breaks
• Copying code without understanding it
• Over-engineering simple features
• Not testing edge cases until users find them
• Deploying on Friday evenings
• Hardcoding secrets in your codebase
• Building features no one asked for
• Thinking AI will do everything for you
Master 1-2 skills per week.
Ship while you learn.
Thats how you level up.
🥰3
Forwarded from The Hacker News
🔥 Anthropic’s Claude Opus 4.6 AI found 500+ previously unknown high-severity flaws in open-source code.
Impacted: Ghostnoscript, OpenSC, CGIF. Bugs ranged from buffer overflows to memory corruption — all validated and patched.
🔗 Details → https://thehackernews.com/2026/02/claude-opus-46-finds-500-high-severity.html
Impacted: Ghostnoscript, OpenSC, CGIF. Bugs ranged from buffer overflows to memory corruption — all validated and patched.
🔗 Details → https://thehackernews.com/2026/02/claude-opus-46-finds-500-high-severity.html
👍5
Forwarded from Mickiy
Hey everyone!
Mereb Technologies is hiring a Senior Developer for a full-time, on-site role. We value problem-solving and critical thinking more than years of experience or long tech stacks. PHP experience is a big bonus, but what matters most is how you approach and solve real-world problems.
The monthly net salary ranges from 60K–100K+.
To apply, complete the technical challenge and share your GitHub repo:
https://docs.google.com/document/d/1xiknJAwxoLiIkBzg53Hya9-8VgShnOr2zAEkpOUhFOM/edit?usp=sharing
Partial solutions are welcome your approach matters.
Mereb Technologies is hiring a Senior Developer for a full-time, on-site role. We value problem-solving and critical thinking more than years of experience or long tech stacks. PHP experience is a big bonus, but what matters most is how you approach and solve real-world problems.
The monthly net salary ranges from 60K–100K+.
To apply, complete the technical challenge and share your GitHub repo:
https://docs.google.com/document/d/1xiknJAwxoLiIkBzg53Hya9-8VgShnOr2zAEkpOUhFOM/edit?usp=sharing
Partial solutions are welcome your approach matters.
Google Docs
PHP Challenge
Task Denoscription(Due date May with in 3 days of receiving the challenge The sooner you complete the task the better) Important: You may use AI tools to assist you, but be careful do not let AI generate the solution entirely. AI-generated answers are often…
❤5
Forwarded from 10 Academy
Welcoming Mikael Alemu Gorsky Back to 10 Academy. Join Us for Another Inspiring Session!
Inviting all 10 Academy alumni, builders, and AI enthusiasts!
We’re excited to welcome Mikael Alemu Gorsky for the second time at 10 Academy for a special discussion on:
“How We Build State-of-the-Art Software Business”
Mikael leads applied and experimental research in Generative AI at the Department of Computer Science, Holon Institute of Technology (Israel). With over 30 years of experience across software engineering, strategy consulting, venture investment, research, and innovation, he brings deep insights into building impactful technology and businesses.
This session is a chance to learn, connect, and exchange ideas with fellow AI and tech enthusiasts.
📅 Date: February 11, 2026
🕕 Time: 6:00 PM (EAT)
📍 Venue: Comet Building, 2nd Floor, Office No. 205 (Near Axum Hotel), Addis Ababa
Inviting all 10 Academy alumni, builders, and AI enthusiasts!
We’re excited to welcome Mikael Alemu Gorsky for the second time at 10 Academy for a special discussion on:
“How We Build State-of-the-Art Software Business”
Mikael leads applied and experimental research in Generative AI at the Department of Computer Science, Holon Institute of Technology (Israel). With over 30 years of experience across software engineering, strategy consulting, venture investment, research, and innovation, he brings deep insights into building impactful technology and businesses.
This session is a chance to learn, connect, and exchange ideas with fellow AI and tech enthusiasts.
📅 Date: February 11, 2026
🕕 Time: 6:00 PM (EAT)
📍 Venue: Comet Building, 2nd Floor, Office No. 205 (Near Axum Hotel), Addis Ababa
👍3
🚀 Hiring: Strong Data Structures & Algorithms Engineers (Global Opportunities)
Are you highly skilled in Data Structures & Algorithms?
If you actively solve problems on LeetCode, HackerRank, CodeChef, or Codeforces, this opportunity is for you.
We’re connecting top problem solvers with companies across USA, UK, and EU.
🔎 Who We’re Looking For
1️⃣ DSA Enthusiasts
Strong foundation in Data Structures & Algorithms
Competitive programming experience
Solve problems beyond interview prep (true problem solvers)
2️⃣ Backend Engineers
Strong skills in Java, Node.js, or other backend frameworks
Solid understanding of scalable backend systems
3️⃣ Full-Stack Engineers
Backend experience (Java, Node.js, etc.)
Frontend expertise with React
Ability to build end-to-end applications
🌍 What You Get
International job opportunities
Global-level compensation
Challenging engineering problems
Strong career growth opportunities
📌 Application Requirements
You must demonstrate your skills. Please be ready to share:
Competitive programming profile
GitHub profile
Updated resume
👉 Apply here: https://lnkd.in/d3y3-5pg
📢 Shared by: ET Open Source
Join our channel for more opportunities:
🔗 et_open_source
Are you highly skilled in Data Structures & Algorithms?
If you actively solve problems on LeetCode, HackerRank, CodeChef, or Codeforces, this opportunity is for you.
We’re connecting top problem solvers with companies across USA, UK, and EU.
🔎 Who We’re Looking For
1️⃣ DSA Enthusiasts
Strong foundation in Data Structures & Algorithms
Competitive programming experience
Solve problems beyond interview prep (true problem solvers)
2️⃣ Backend Engineers
Strong skills in Java, Node.js, or other backend frameworks
Solid understanding of scalable backend systems
3️⃣ Full-Stack Engineers
Backend experience (Java, Node.js, etc.)
Frontend expertise with React
Ability to build end-to-end applications
🌍 What You Get
International job opportunities
Global-level compensation
Challenging engineering problems
Strong career growth opportunities
📌 Application Requirements
You must demonstrate your skills. Please be ready to share:
Competitive programming profile
GitHub profile
Updated resume
👉 Apply here: https://lnkd.in/d3y3-5pg
📢 Shared by: ET Open Source
Join our channel for more opportunities:
🔗 et_open_source
lnkd.in
LinkedIn
This link will take you to a page that’s not on LinkedIn
🔥3👍1
Forwarded from Afriwork (Freelance Ethiopia)
Be part of the 𝑺𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝑭𝒆𝒘! 😎
Tired of applying Over and Over again?
What if we can recommend you, even if you don't apply?🤔
Join Afriwork’s Talent Pool and get recommended to companies that actually need your skills.
Your next role shouldn’t depend on luck.
Register now: https://forms.gle/pyFBiHH6iv4b4pzn6
GOOD LUCK👍
Tired of applying Over and Over again?
What if we can recommend you, even if you don't apply?
Join Afriwork’s Talent Pool and get recommended to companies that actually need your skills.
Your next role shouldn’t depend on luck.
Register now: https://forms.gle/pyFBiHH6iv4b4pzn6
GOOD LUCK
Please open Telegram to view this post
VIEW IN TELEGRAM
👍3
Forwarded from Theodore
Hiring: React Native Developer
We’re looking for a skilled React Native Developer to build scalable, production-ready mobile apps for iOS and Android.
Key Responsibilities:
State Management
• Design scalable architecture using React Context API + Redux Toolkit
• Build custom hooks/providers for auth, roles, permissions & themes
• Configure Redux slices, async thunks, and memoized selectors
• Handle lifecycle events, permissions, and native module responses
Cross-Platform Development
• Develop apps using Expo (EAS) with bare React Native compatibility
• Manage iOS (safe areas, lifecycle, App Store release)
• Handle Android features (back button, notch, Play Store release)
• Test across devices, OS versions & screen sizes
Application Quality
• Maintain clean state structure with minimal global state
• Implement offline-first persistence using AsyncStorage
• Write unit tests (80%+ coverage) with Jest & RN Testing Library
• Use TypeScript for type safety
• Debug and optimize using Redux DevTools, Flipper & profiling tools
Interest? please use the Link below to apply 👇
Apply here: https://docs.google.com/forms/d/e/1FAIpQLSe9oLubxSu6LxrgHkgz9i996BTuwk3GKgWbtUnDnqjbDJqwsw/viewform
We’re looking for a skilled React Native Developer to build scalable, production-ready mobile apps for iOS and Android.
Key Responsibilities:
State Management
• Design scalable architecture using React Context API + Redux Toolkit
• Build custom hooks/providers for auth, roles, permissions & themes
• Configure Redux slices, async thunks, and memoized selectors
• Handle lifecycle events, permissions, and native module responses
Cross-Platform Development
• Develop apps using Expo (EAS) with bare React Native compatibility
• Manage iOS (safe areas, lifecycle, App Store release)
• Handle Android features (back button, notch, Play Store release)
• Test across devices, OS versions & screen sizes
Application Quality
• Maintain clean state structure with minimal global state
• Implement offline-first persistence using AsyncStorage
• Write unit tests (80%+ coverage) with Jest & RN Testing Library
• Use TypeScript for type safety
• Debug and optimize using Redux DevTools, Flipper & profiling tools
Interest? please use the Link below to apply 👇
Apply here: https://docs.google.com/forms/d/e/1FAIpQLSe9oLubxSu6LxrgHkgz9i996BTuwk3GKgWbtUnDnqjbDJqwsw/viewform
Things every Vibe Coder MUST Learn (Extended Edition)
1/ Don’t reinvent databases
> Use Prisma + Postgres (Neon / Supabase / PlanetScale)
> Manual SQL + migrations = silent suffering
2/ Don’t write forms by hand
> Use React Hook Form + Zod
> Validation bugs will eat your soul
3/ Don’t build payment flows yourself
> Use Stripe or Polar for web. Superwall or revenuecat for mobile
> Never touch PCI compliance willingly
4/ Don’t build search from scratch
> Use Algolia / Meilisearch / Typesense
> Text search is way harder than it looks
5/ Don’t overbuild backend infra early
> Use Serverless / BaaS first
> Scale later, survive now
6/ Don’t ignore error tracking
> Use Sentry / LogRocket
> Console.log is not observability
7/ Don’t skip analytics
> Use PostHog / Plausible
> You’re flying blind otherwise
8/ Don’t design UI without components
> Use shadcn/ui / Radix / Mantine
> Consistency > creativity at MVP stage
9/ Don’t hardcode configs
> Use env + dotenv + secrets manager
> Leaks = instant regret
10/ Don’t DIY file uploads
> Use UploadThing / Cloudinary / S3
> Multipart hell is real
11/ Don’t “just push to main”
> Use GitHub Actions + Preview Deploys. Future-you will thank you
12/ Don’t skip performance tools
> Use Lighthouse + Vercel Analytics. Slow apps don’t convert
13/ Don’t assume users understand anything
> Add onboarding + empty states
UX > Features
14/ Don’t wait to modularize
> Use clean folders early. Refactors cost 10x later
15/ Don’t trust “I’ll remember this”
> Document in README or markdowns. Your memory will betray you
1/ Don’t reinvent databases
> Use Prisma + Postgres (Neon / Supabase / PlanetScale)
> Manual SQL + migrations = silent suffering
2/ Don’t write forms by hand
> Use React Hook Form + Zod
> Validation bugs will eat your soul
3/ Don’t build payment flows yourself
> Use Stripe or Polar for web. Superwall or revenuecat for mobile
> Never touch PCI compliance willingly
4/ Don’t build search from scratch
> Use Algolia / Meilisearch / Typesense
> Text search is way harder than it looks
5/ Don’t overbuild backend infra early
> Use Serverless / BaaS first
> Scale later, survive now
6/ Don’t ignore error tracking
> Use Sentry / LogRocket
> Console.log is not observability
7/ Don’t skip analytics
> Use PostHog / Plausible
> You’re flying blind otherwise
8/ Don’t design UI without components
> Use shadcn/ui / Radix / Mantine
> Consistency > creativity at MVP stage
9/ Don’t hardcode configs
> Use env + dotenv + secrets manager
> Leaks = instant regret
10/ Don’t DIY file uploads
> Use UploadThing / Cloudinary / S3
> Multipart hell is real
11/ Don’t “just push to main”
> Use GitHub Actions + Preview Deploys. Future-you will thank you
12/ Don’t skip performance tools
> Use Lighthouse + Vercel Analytics. Slow apps don’t convert
13/ Don’t assume users understand anything
> Add onboarding + empty states
UX > Features
14/ Don’t wait to modularize
> Use clean folders early. Refactors cost 10x later
15/ Don’t trust “I’ll remember this”
> Document in README or markdowns. Your memory will betray you
❤2
Forwarded from Ethiopian Blockchain Week
🚨 LIVE TONIGHT — EBW Telegram Channel 🚨
Nature meets Web3 🌱⚡
Join us for a live session with Kirubel Addis the Founder & CEO of Kira Special Gardening and Founder of Acacia Protocol — where blockchain innovation connects with environmental impact and green legacy.
🔥 What we’ll cover: ✔ Journey into Web3 & blockchain
✔ Why Web3 must solve real-world challenges
✔ The vision behind Acacia Protocol
✔ Sustainability in the digital era
✔ Exclusive updates on the upcoming Acacia Protocol Opening Event
If you care about the future of Web3, real-world impact, and building beyond hype you don’t want to miss this.
🎙 Live tonight on EBW Telegram — join, listen, and be part of the movement.
Nature meets Web3 🌱⚡
Join us for a live session with Kirubel Addis the Founder & CEO of Kira Special Gardening and Founder of Acacia Protocol — where blockchain innovation connects with environmental impact and green legacy.
🔥 What we’ll cover: ✔ Journey into Web3 & blockchain
✔ Why Web3 must solve real-world challenges
✔ The vision behind Acacia Protocol
✔ Sustainability in the digital era
✔ Exclusive updates on the upcoming Acacia Protocol Opening Event
If you care about the future of Web3, real-world impact, and building beyond hype you don’t want to miss this.
🎙 Live tonight on EBW Telegram — join, listen, and be part of the movement.
Forwarded from Sente
We are Looking For Quality Assurance Engineer Company :- Orbit Health is a digital health pioneer in Ethiopia, transforming healthcare through innovative solutions.
Job Summary
As a Quality Assurance Engineer at Orbit, you will take full ownership of product quality and the end-to-end testing lifecycle. This role involves both manual and automated testing, with a strong focus on ensuring reliability, performance, and usability.
📧 How to Apply: Submit your CV and cover letter to careers@orbithealth.co
Job Summary
As a Quality Assurance Engineer at Orbit, you will take full ownership of product quality and the end-to-end testing lifecycle. This role involves both manual and automated testing, with a strong focus on ensuring reliability, performance, and usability.
📧 How to Apply: Submit your CV and cover letter to careers@orbithealth.co
❤1
Forwarded from GDG On Campus AASTU (Hanna)
You're Invited! Join the Pan-African AI Movement - The Udara Project 🚀
Hello Future Innovator,
Ambassador Moha Hamudi personally invites you to The Udara Project: FREE AI Literacy training for African students. Join thousands learning, building, and innovating together.
What You Get (All FREE):
✨ Practical AI skills for studies & career
✨ Live/recorded expert classes
✨ Hands-on projects & portfolio
✨ Network with peers, mentors across Africa
✨ Certification to boost your CV
✨ Shape Africa's AI futureClaim
How to Claim Your Spot (It Takes 30 Seconds):
Simply click below and fill in your details.
‼️https://theudaraproject.com/register?ref=@Moha_hamudi
Spaces are filling up quickly as thousands of students are joining.
‼️Register Now → https://theudaraproject.com/register?ref=@Moha_hamudi
Hello Future Innovator,
Ambassador Moha Hamudi personally invites you to The Udara Project: FREE AI Literacy training for African students. Join thousands learning, building, and innovating together.
What You Get (All FREE):
✨ Practical AI skills for studies & career
✨ Live/recorded expert classes
✨ Hands-on projects & portfolio
✨ Network with peers, mentors across Africa
✨ Certification to boost your CV
✨ Shape Africa's AI futureClaim
How to Claim Your Spot (It Takes 30 Seconds):
Simply click below and fill in your details.
‼️https://theudaraproject.com/register?ref=@Moha_hamudi
Spaces are filling up quickly as thousands of students are joining.
‼️Register Now → https://theudaraproject.com/register?ref=@Moha_hamudi
❤2
📢 Call for Applications — Apple Developer Academy 2026/27 🇮🇹
📌 Opportunity: Become a world-class app developer through the Apple Developer Academy at the University of Naples Federico II in Naples, Italy.
Create with Swift
🔗 Apply here:
https://www.createwithswift.com/call-for-applications-at-the-apple-developer-academy-2026/
🧑🎓 What it is
A 9-month immersive program focused on mobile development, design, and entrepreneurship within the Apple ecosystem.
Create with Swift
Conducted entirely in English.
Create with Swift
Open to everyone regardless of background — you just need a high-school diploma.
Create with Swift
🌍 Why it matters
This Academy has helped thousands of developers and creatives from around the world grow their skills and build real apps.
Create with Swift
📅 Program Highlights
✔️ Learn to build apps for Apple platforms
✔ Work on real projects
✔ Join an international community
✔ Boost your career in tech
📩 Questions about applying? Email: developeracademy@unina.it
Create with Swift
👉 Feel free to share this with anyone who might be interested!
📌 Opportunity: Become a world-class app developer through the Apple Developer Academy at the University of Naples Federico II in Naples, Italy.
Create with Swift
🔗 Apply here:
https://www.createwithswift.com/call-for-applications-at-the-apple-developer-academy-2026/
🧑🎓 What it is
A 9-month immersive program focused on mobile development, design, and entrepreneurship within the Apple ecosystem.
Create with Swift
Conducted entirely in English.
Create with Swift
Open to everyone regardless of background — you just need a high-school diploma.
Create with Swift
🌍 Why it matters
This Academy has helped thousands of developers and creatives from around the world grow their skills and build real apps.
Create with Swift
📅 Program Highlights
✔️ Learn to build apps for Apple platforms
✔ Work on real projects
✔ Join an international community
✔ Boost your career in tech
📩 Questions about applying? Email: developeracademy@unina.it
Create with Swift
👉 Feel free to share this with anyone who might be interested!
Create with Swift
Call for Applications at the Apple Developer Academy 2026
Become a World Class Developer at the Apple Developer Academy in Naples, Italy. Call for Application 2026/27.
❤3