20 programming languages that changed their original names๐
1. JavaScript (Originally: Mocha)
2. Python (Originally: Molder)
3. Java (Originally: Oak)
4. C++ (Originally: C with Classes)
5. Ruby (Originally: DLite)
6. PHP (Originally: Personal Home Page Tools)
7. Perl (Originally: Pearl)
8. Rust (Originally: Graydon)
9. Swift (Originally: Bob)
10. Kotlin (Originally: Jet)
11. ECMAScript (Originally: MochaScript)
12. TypeScript (Originally: Script#)
13. Go (Originally: Go Lang)
14. Scala (Originally: Scalable Language)
15. Julia (Originally: Cathy)
16. Haskell (Originally: ISWIM)
17. Lua (Originally: Lua Script)
18. Pascal (Originally: P-System)
19. Visual Basic (Originally: BASIC Interpreter)
20. Delphi (Originally: Turbo Pascal)
Other notable mentions:
C# (Originally: COOL)
F# (Originally: FSharp)
TypeScript (Originally: Script#)
ActionScript (Originally: Flash Script)
I'm not sure about how true this is ๐น pasted as copied...but follow this channel for more Tech Updates๐
https://whatsapp.com/channel/0029VahGttK5a24AXAJDjm2R
Reasons for name changes:
1. Trademark issues
2. Rebranding
3. Expanded capabilities
4. Avoiding confusion
5. Reflecting language features
6. Merging with other languages
7. Changing language focus
8. Improving marketability
1. JavaScript (Originally: Mocha)
2. Python (Originally: Molder)
3. Java (Originally: Oak)
4. C++ (Originally: C with Classes)
5. Ruby (Originally: DLite)
6. PHP (Originally: Personal Home Page Tools)
7. Perl (Originally: Pearl)
8. Rust (Originally: Graydon)
9. Swift (Originally: Bob)
10. Kotlin (Originally: Jet)
11. ECMAScript (Originally: MochaScript)
12. TypeScript (Originally: Script#)
13. Go (Originally: Go Lang)
14. Scala (Originally: Scalable Language)
15. Julia (Originally: Cathy)
16. Haskell (Originally: ISWIM)
17. Lua (Originally: Lua Script)
18. Pascal (Originally: P-System)
19. Visual Basic (Originally: BASIC Interpreter)
20. Delphi (Originally: Turbo Pascal)
Other notable mentions:
C# (Originally: COOL)
F# (Originally: FSharp)
TypeScript (Originally: Script#)
ActionScript (Originally: Flash Script)
I'm not sure about how true this is ๐น pasted as copied...but follow this channel for more Tech Updates๐
https://whatsapp.com/channel/0029VahGttK5a24AXAJDjm2R
Reasons for name changes:
1. Trademark issues
2. Rebranding
3. Expanded capabilities
4. Avoiding confusion
5. Reflecting language features
6. Merging with other languages
7. Changing language focus
8. Improving marketability
Top 10 programming languages & frameworks for beginner web developers:
1. HTML/CSS โ Basics of web structure & styling
2. JavaScript โ Adds interactivity
3. Python โ Backend & versatility
4. PHP โ Server-side scripting
5. SQL โ Database management
6. Ruby on Rails โ Easy backend framework
7. Node.js โ JavaScript backend runtime
8. React โ Popular frontend library
9. Angular โ Framework for building dynamic UIs
10. Bootstrap โ Simplifies responsive design
Follow Tech Psyche for More Updates: https://whatsapp.com/channel/0029VahGttK5a24AXAJDjm2R
1. HTML/CSS โ Basics of web structure & styling
2. JavaScript โ Adds interactivity
3. Python โ Backend & versatility
4. PHP โ Server-side scripting
5. SQL โ Database management
6. Ruby on Rails โ Easy backend framework
7. Node.js โ JavaScript backend runtime
8. React โ Popular frontend library
9. Angular โ Framework for building dynamic UIs
10. Bootstrap โ Simplifies responsive design
Follow Tech Psyche for More Updates: https://whatsapp.com/channel/0029VahGttK5a24AXAJDjm2R
WHAT FOR WHAT?
๐ผ Frontend
HTML + CSS
Javascript
React
VueJs
Angular
Svelte
๐ Backend:
Nodejs/Express
Python/Django
PHP/Laravel
Java
C#
๐ฝ Database
MongoDB
MySQL
Postgres
Redis
๐ฅ Desktop
Electron
Tairi
PyQt
๐ฑ Mobile:
React Native
Flutter
Swift
Kotlin
๐ฅ System
Go
C++
Rust
Follow Tech Psyche Channel for More Updates:
https://whatsapp.com/channel/0029VahGttK5a24AXAJDjm2R
๐ผ Frontend
HTML + CSS
Javascript
React
VueJs
Angular
Svelte
๐ Backend:
Nodejs/Express
Python/Django
PHP/Laravel
Java
C#
๐ฝ Database
MongoDB
MySQL
Postgres
Redis
๐ฅ Desktop
Electron
Tairi
PyQt
๐ฑ Mobile:
React Native
Flutter
Swift
Kotlin
๐ฅ System
Go
C++
Rust
Follow Tech Psyche Channel for More Updates:
https://whatsapp.com/channel/0029VahGttK5a24AXAJDjm2R
Mastering Java: Roadmap to Complete Mastery
1. Fundamentals
2. Control Structures
3. Object-Oriented Programming (OOP)
4. Advanced Java
| |-- Collections Framework
| | |-- List (ArrayList, LinkedList)
| | |-- Set (HashSet, TreeSet)
| | |-- Map (HashMap, TreeMap)
| | |-- Queue (PriorityQueue, LinkedList)
5. .
6. .
7. .
Detailed Roadmap Here: https://techurl.in/pIsqP
1. Fundamentals
2. Control Structures
3. Object-Oriented Programming (OOP)
4. Advanced Java
| |-- Collections Framework
| | |-- List (ArrayList, LinkedList)
| | |-- Set (HashSet, TreeSet)
| | |-- Map (HashMap, TreeMap)
| | |-- Queue (PriorityQueue, LinkedList)
5. .
6. .
7. .
Detailed Roadmap Here: https://techurl.in/pIsqP
DEV Community
Mastering Java: Roadmap to Complete Mastery
Java Roadmap ** | |-- **Fundamentals | |-- Basics of Programming | | |-- Introduction to Java |...
Python interview questions ๐๐
What is Python?
Python is an interpreted, object-oriented, high-level programming language with dynamic semantics, automatic memory management.
What's the difference between a tuple and a list?
Both tuples and lists are data structures in Python and hold a list of values. Unlike lists, tuples are immutable - they can't be changed.
What is a dict and what's its most important limitation?
A dict is a structure akin a hash map. It stores key-value pairs, where keys are unique and it has O(1) access time. The most important limitation for a dict is that the keys must be hashable/immutable. Meaning, we can use a tuple as a key, but not a list.
What is pickling/unpickling?
Pickling is converting an object to a string representation in python. Generally used for caching and transferring objects between hosts/processes.
Is Python a Scripting Language?
Python is capable of scripting, but it is more than that. It is considered as a general-purpose programming language.
Follow this Channel for More updates
https://whatsapp.com/channel/0029VahGttK5a24AXAJDjm2R
What is Python?
Python is an interpreted, object-oriented, high-level programming language with dynamic semantics, automatic memory management.
What's the difference between a tuple and a list?
Both tuples and lists are data structures in Python and hold a list of values. Unlike lists, tuples are immutable - they can't be changed.
What is a dict and what's its most important limitation?
A dict is a structure akin a hash map. It stores key-value pairs, where keys are unique and it has O(1) access time. The most important limitation for a dict is that the keys must be hashable/immutable. Meaning, we can use a tuple as a key, but not a list.
What is pickling/unpickling?
Pickling is converting an object to a string representation in python. Generally used for caching and transferring objects between hosts/processes.
Is Python a Scripting Language?
Python is capable of scripting, but it is more than that. It is considered as a general-purpose programming language.
Follow this Channel for More updates
https://whatsapp.com/channel/0029VahGttK5a24AXAJDjm2R
๐๐ข๐ข๐๐๐ ๐๐ข๐ฅ๐๐ฆ - ๐ข๐ก๐ ๐ฆ๐ง๐ข๐ฃ ๐
โขShodan Search
โขAPI (WSDL)
โขGIST github search
โขApache Config Files
โขInstall/Setup Files
โขApache Struts RCE
โขhtaccess/phpinfo()
โขSecurity Headers
โขSource Code PublicWWW
โขSearch GitLab and Github
โขFind .php (WayBack)
โขFind Subdomains (Google)
โขDigital Ocean Space
โขSub-Subdomains (Google)
Link ๐:-
https://techurl.in/cyCjo
โขShodan Search
โขAPI (WSDL)
โขGIST github search
โขApache Config Files
โขInstall/Setup Files
โขApache Struts RCE
โขhtaccess/phpinfo()
โขSecurity Headers
โขSource Code PublicWWW
โขSearch GitLab and Github
โขFind .php (WayBack)
โขFind Subdomains (Google)
โขDigital Ocean Space
โขSub-Subdomains (Google)
Link ๐:-
https://techurl.in/cyCjo
DEV Community
8 ๐๐ข๐ข๐๐๐ ๐๐ข๐ฅ๐๐ฆ YOU MUST KNOW๐
1.Directory Listing Directory listing is a web server function that displays the directory contents...
Free Labs to Elevate your skills and practice ๐ฏ #Security
* Academy Hackaflag BR - hackaflag.com.br
- Attack-Defense - attackdefense.com
* Alert to win - alf.nu/alerti
* CTF Komodo Security - ctf.komodosec.com
* CMD Challenge - cmdchallenge.com
* Exploitation Education - exploit.education
* Google CTF-capturetheflag.withgoogle.com
* More Resources - t.me/TechPsyche
* Hack TheBox - hackthebox.com
* Hackthis - hackthis.co.uk
* Hacksplaining - hacksplaining.com/lessons
* Hacker101-ctf.hacker101.com
* Hacker Security - capturetheflag.com.br
* Hacking-Lab - hacking-lab.com
* HSTRIKE - hstrike.com
* ImmersiveLabs - immersivelabs.com
* NewbieContest - newbiecontest.org
* Resources - t.me/TechPsyche
* OverTheWire - overthewire.org
* Practical Pentest Labs - lnkd.in/esq9Yuv5
* Pentestlab - pentesterlab.com
* Penetration Testing Practice Labs - amanhardikar.com/mindmaps/Practโฆ
* PentestIT LAB - lab.pentestit.ru
* PicoCTF - picoctf.com
* PWNABLE - pwnable.kr/play.php
* Root-Me-root-me.org
* Root in Jail - rootinjail.com
For More Resources:
https://whatsapp.com/channel/0029VajB00n0LKZ7cSloGR1M
* Academy Hackaflag BR - hackaflag.com.br
- Attack-Defense - attackdefense.com
* Alert to win - alf.nu/alerti
* CTF Komodo Security - ctf.komodosec.com
* CMD Challenge - cmdchallenge.com
* Exploitation Education - exploit.education
* Google CTF-capturetheflag.withgoogle.com
* More Resources - t.me/TechPsyche
* Hack TheBox - hackthebox.com
* Hackthis - hackthis.co.uk
* Hacksplaining - hacksplaining.com/lessons
* Hacker101-ctf.hacker101.com
* Hacker Security - capturetheflag.com.br
* Hacking-Lab - hacking-lab.com
* HSTRIKE - hstrike.com
* ImmersiveLabs - immersivelabs.com
* NewbieContest - newbiecontest.org
* Resources - t.me/TechPsyche
* OverTheWire - overthewire.org
* Practical Pentest Labs - lnkd.in/esq9Yuv5
* Pentestlab - pentesterlab.com
* Penetration Testing Practice Labs - amanhardikar.com/mindmaps/Practโฆ
* PentestIT LAB - lab.pentestit.ru
* PicoCTF - picoctf.com
* PWNABLE - pwnable.kr/play.php
* Root-Me-root-me.org
* Root in Jail - rootinjail.com
For More Resources:
https://whatsapp.com/channel/0029VajB00n0LKZ7cSloGR1M
Telegram
Tech Psyche . Updates . Tech Tips & Tricks . Programming , Tech Course
Sharing updates & resources on Programming & Coding, Cryptocurrency, Blockchain, Web 3, Python, Data Science, Data Analysis, Java, Web Dev, AI, App Dev, ML, Cyber Security & Hacking & More
Buy Ads: https://telega.io/c/techpsyche
Admin: @mycontactpoint
Buy Ads: https://telega.io/c/techpsyche
Admin: @mycontactpoint
Simple 12-Week Program for you.
โญ๏ธ 1-2 Weeks:
Basics of Programming
* Choose a programming Language: Java/Cpp
* Learn about the concepts of OOPs from
Geeksforgeeks
* Practice basic programming from
Geeksforgeeks
* Practice basic Algorithms for Searching, Sorting & Recursion
* Practice basic questions of Strings and Numbers on Leetcode.
* Keep practicing the easy level questions until the basics are clear.
โญ๏ธ 3-4 Weeks:
Complexities & Basic DSA
* Learn about Time and Space complexities
* Start with DSA from YouTube
Abdul Bari / Strivers A2Z DSA Playlist
* Only practice the basic data structures-
Arrays, Stacks, Queues, Linked Lists
* Practice Easy level questions on Leetcode
* Do this until youโre Confident
โญ๏ธ 5-6 Week
Practicing the basics
* Solve Medium Level Leetcode questions for the topics you've prepared.
* This week aims to solidifying your basic DSA concepts.
* Give contests on Hackerrank to gain speed and getting prepared for Interviews.
Telegram: t.me/TechPsyche
โญ๏ธ 7-10 Weeks:
Web Development / Machine Learning
* Start with Web Development or Machine Learning or any domain which will help you in building Projects.
* Complete playlists or any other courses available on it from Youtube or similar.
* Learn by building Projects. This will help you add it to your Resume as well.
* Simultaneously start with the medium level problems of the topics youโve covered in DSA.
โญ๏ธ 11-12 Weeks:
Advanced DSA
* Start with advanced DS like Trees & Graph
* Practice Easy & Medium level questions on these topics on Leetcode
* Learn more algorithms like Backtracking, Sliding Window, Two pointers and more
* Practice as much as you can.
Channel link: https://whatsapp.com/channel/0029VahGttK5a24AXAJDjm2R
โญ๏ธ 1-2 Weeks:
Basics of Programming
* Choose a programming Language: Java/Cpp
* Learn about the concepts of OOPs from
Geeksforgeeks
* Practice basic programming from
Geeksforgeeks
* Practice basic Algorithms for Searching, Sorting & Recursion
* Practice basic questions of Strings and Numbers on Leetcode.
* Keep practicing the easy level questions until the basics are clear.
โญ๏ธ 3-4 Weeks:
Complexities & Basic DSA
* Learn about Time and Space complexities
* Start with DSA from YouTube
Abdul Bari / Strivers A2Z DSA Playlist
* Only practice the basic data structures-
Arrays, Stacks, Queues, Linked Lists
* Practice Easy level questions on Leetcode
* Do this until youโre Confident
โญ๏ธ 5-6 Week
Practicing the basics
* Solve Medium Level Leetcode questions for the topics you've prepared.
* This week aims to solidifying your basic DSA concepts.
* Give contests on Hackerrank to gain speed and getting prepared for Interviews.
Telegram: t.me/TechPsyche
โญ๏ธ 7-10 Weeks:
Web Development / Machine Learning
* Start with Web Development or Machine Learning or any domain which will help you in building Projects.
* Complete playlists or any other courses available on it from Youtube or similar.
* Learn by building Projects. This will help you add it to your Resume as well.
* Simultaneously start with the medium level problems of the topics youโve covered in DSA.
โญ๏ธ 11-12 Weeks:
Advanced DSA
* Start with advanced DS like Trees & Graph
* Practice Easy & Medium level questions on these topics on Leetcode
* Learn more algorithms like Backtracking, Sliding Window, Two pointers and more
* Practice as much as you can.
Channel link: https://whatsapp.com/channel/0029VahGttK5a24AXAJDjm2R
Forwarded from JavaScript Resources | Libraries & Frameweorks| React Js|Node Js|Vue Js|Express|Angular|jQuery
KENYA
WordPress Developer Needed.
Experienced in E-commerce with Payment Integration.
Ready to start work immediately.
Send CV to joseph@talantadigitalsolutions.com
WordPress Developer Needed.
Experienced in E-commerce with Payment Integration.
Ready to start work immediately.
Send CV to joseph@talantadigitalsolutions.com
โSimply studying othersโ code wonโt make you a great developer. You need to build your own.
- Reading doesn't make you a great writer.
- โ Eating doesn't make you a great chef.
- Watching tutorials wonโt turn you into a dev / engineer.
- Only practice makes you proficient.( make projects)
> Consumption can increase taste, but not proficiency.
t.me/TechPsyche
- Reading doesn't make you a great writer.
- โ Eating doesn't make you a great chef.
- Watching tutorials wonโt turn you into a dev / engineer.
- Only practice makes you proficient.( make projects)
> Consumption can increase taste, but not proficiency.
t.me/TechPsyche
Forwarded from JavaScript Resources | Libraries & Frameweorks| React Js|Node Js|Vue Js|Express|Angular|jQuery
Remote Project Manager Needed at Africa of Our Dream Education Initiative (AODI)
- Location: Remote
- Job Type: Full-time
https://kenyatrends.co.ke/remote-project-manager-needed-at-africa-of-our-dream-education-initiative-aodi/
- Location: Remote
- Job Type: Full-time
https://kenyatrends.co.ke/remote-project-manager-needed-at-africa-of-our-dream-education-initiative-aodi/
KenyaTrends.co.ke
Remote Project Manager Needed at Africa of Our Dream Education Initiative (AODI) - Kenya Trends
Remote Project Manager at Africa of Our Dream Education Initiative (AODI)
Youth and Women Hackathon: Solutions for East Africa's Economic Integration
This Hackathon is designed to drive regional economic integration within the East African CommunitI'y (EAC) by harnessing the creativity and entrepreneurial spirit of women and youth Civil Society Organizations (CSOs)from across the eight EAC Partner States.
https://shorturl.at/5biXe
This Hackathon is designed to drive regional economic integration within the East African CommunitI'y (EAC) by harnessing the creativity and entrepreneurial spirit of women and youth Civil Society Organizations (CSOs)from across the eight EAC Partner States.
https://shorturl.at/5biXe
Forwarded from JavaScript Resources | Libraries & Frameweorks| React Js|Node Js|Vue Js|Express|Angular|jQuery
Vacancies at Jumia
1. Senior Retool Software Engineer
2. Senior Quality Assurance Engineer
3. Senior NodeJS Developer
4. Senior Product Manager
5. Distinguished Principal Engineer
6. Senior Frontend Developer (Angular/React)
7. Senior Java Software Engineer
Apply Here:
https://kenyatrends.co.ke/vacancies-at-jumia
Channel Link
https://whatsapp.com/channel/0029VageofA3GJP3bu7Wyd37
1. Senior Retool Software Engineer
2. Senior Quality Assurance Engineer
3. Senior NodeJS Developer
4. Senior Product Manager
5. Distinguished Principal Engineer
6. Senior Frontend Developer (Angular/React)
7. Senior Java Software Engineer
Apply Here:
https://kenyatrends.co.ke/vacancies-at-jumia
Channel Link
https://whatsapp.com/channel/0029VageofA3GJP3bu7Wyd37
KenyaTrends.co.ke
Vacancies at Jumia - Kenya Trends
JUMIA is an e-commerce startup with an aim to mimic Amazonโs success by delivering a wide range of items, from toys to generators across the African
Here is how you can explain your project in an interview
When youโre in an interview, itโs super important to know how to talk about your projects in a way that impresses the interviewer. Here are some key points to help you do just that:
โค ๐ฃ๐ฟ๐ผ๐ท๐ฒ๐ฐ๐ ๐ข๐๐ฒ๐ฟ๐๐ถ๐ฒ๐:
- Start with a quick summary of the project you worked on. What was it all about? What were the main goals? Keep it short and sweet something you can explain in about 30 seconds.
โค ๐ฃ๐ฟ๐ผ๐ฏ๐น๐ฒ๐บ ๐ฆ๐๐ฎ๐๐ฒ๐บ๐ฒ๐ป๐:
- What problem were you trying to solve with this project? Explain why this problem was important and needed addressing.
โค ๐ฃ๐ฟ๐ผ๐ฝ๐ผ๐๐ฒ๐ฑ ๐ฆ๐ผ๐น๐๐๐ถ๐ผ๐ป:
- Describe the solution you came up with. How does it work, and why is it a good fix for the problem?
โค ๐ฌ๐ผ๐๐ฟ ๐ฅ๐ผ๐น๐ฒ:
- Talk about what you specifically did. What were your main tasks? Did you face any challenges, and how did you overcome them? Make sure itโs clear whether you were leading the project, a key player, or supporting the team.
Channel Link: t.me/TechPsyche
โค ๐ง๐ฒ๐ฐ๐ต๐ป๐ผ๐น๐ผ๐ด๐ถ๐ฒ๐ ๐ฎ๐ป๐ฑ ๐ง๐ผ๐ผ๐น๐:
- Mention the tech and tools you used. This shows your technical know-how and your ability to choose the right tools for the job.
โค ๐๐บ๐ฝ๐ฎ๐ฐ๐ ๐ฎ๐ป๐ฑ ๐๐ฐ๐ต๐ถ๐ฒ๐๐ฒ๐บ๐ฒ๐ป๐๐:
- Share the results of your project. Did it make things better? How? Mention any improvements, efficiencies, or positive feedback you got. This helps show the project was a success and highlights your contribution.
โค ๐ง๐ฒ๐ฎ๐บ ๐๐ผ๐น๐น๐ฎ๐ฏ๐ผ๐ฟ๐ฎ๐๐ถ๐ผ๐ป:
- If you worked with a team, talk about how you collaborated. What was your role in the team? How did you communicate and contribute to the teamโs success?
โค ๐๐ฒ๐ฎ๐ฟ๐ป๐ถ๐ป๐ด ๐ฎ๐ป๐ฑ ๐๐ฒ๐๐ฒ๐น๐ผ๐ฝ๐บ๐ฒ๐ป๐:
- Reflect on what you learned from the project. How did it help you grow professionally? What new skills did you gain, and what would you do differently next time?
โค ๐ง๐ถ๐ฝ๐ ๐ณ๐ผ๐ฟ ๐ฌ๐ผ๐๐ฟ ๐๐ป๐๐ฒ๐ฟ๐๐ถ๐ฒ๐ ๐ฃ๐ฟ๐ฒ๐ฝ๐ฎ๐ฟ๐ฎ๐๐ถ๐ผ๐ป:
- Be ready with a 30 second elevator pitch about your projects, and also have a five-minute detailed overview ready.
- Know why you chose the project, what your role was, what decisions you made, and how the results compared to what you expected.
- Be clear on the scope of the project whether it was a long-term effort or a quick task.
- If thereโs a pause after you describe the project, donโt hesitate to ask if theyโd like more details or if thereโs a specific part theyโre interested in.
Remember, ๐ฐ๐ผ๐บ๐บ๐๐ป๐ถ๐ฐ๐ฎ๐๐ถ๐ผ๐ป ๐ถ๐ ๐ธ๐ฒ๐. You might have done great work, but if you donโt explain it well, itโs hard for the interviewer to understand your impact. So, practice explaining your projects with clarity.
https://whatsapp.com/channel/0029VahGttK5a24AXAJDjm2R
When youโre in an interview, itโs super important to know how to talk about your projects in a way that impresses the interviewer. Here are some key points to help you do just that:
โค ๐ฃ๐ฟ๐ผ๐ท๐ฒ๐ฐ๐ ๐ข๐๐ฒ๐ฟ๐๐ถ๐ฒ๐:
- Start with a quick summary of the project you worked on. What was it all about? What were the main goals? Keep it short and sweet something you can explain in about 30 seconds.
โค ๐ฃ๐ฟ๐ผ๐ฏ๐น๐ฒ๐บ ๐ฆ๐๐ฎ๐๐ฒ๐บ๐ฒ๐ป๐:
- What problem were you trying to solve with this project? Explain why this problem was important and needed addressing.
โค ๐ฃ๐ฟ๐ผ๐ฝ๐ผ๐๐ฒ๐ฑ ๐ฆ๐ผ๐น๐๐๐ถ๐ผ๐ป:
- Describe the solution you came up with. How does it work, and why is it a good fix for the problem?
โค ๐ฌ๐ผ๐๐ฟ ๐ฅ๐ผ๐น๐ฒ:
- Talk about what you specifically did. What were your main tasks? Did you face any challenges, and how did you overcome them? Make sure itโs clear whether you were leading the project, a key player, or supporting the team.
Channel Link: t.me/TechPsyche
โค ๐ง๐ฒ๐ฐ๐ต๐ป๐ผ๐น๐ผ๐ด๐ถ๐ฒ๐ ๐ฎ๐ป๐ฑ ๐ง๐ผ๐ผ๐น๐:
- Mention the tech and tools you used. This shows your technical know-how and your ability to choose the right tools for the job.
โค ๐๐บ๐ฝ๐ฎ๐ฐ๐ ๐ฎ๐ป๐ฑ ๐๐ฐ๐ต๐ถ๐ฒ๐๐ฒ๐บ๐ฒ๐ป๐๐:
- Share the results of your project. Did it make things better? How? Mention any improvements, efficiencies, or positive feedback you got. This helps show the project was a success and highlights your contribution.
โค ๐ง๐ฒ๐ฎ๐บ ๐๐ผ๐น๐น๐ฎ๐ฏ๐ผ๐ฟ๐ฎ๐๐ถ๐ผ๐ป:
- If you worked with a team, talk about how you collaborated. What was your role in the team? How did you communicate and contribute to the teamโs success?
โค ๐๐ฒ๐ฎ๐ฟ๐ป๐ถ๐ป๐ด ๐ฎ๐ป๐ฑ ๐๐ฒ๐๐ฒ๐น๐ผ๐ฝ๐บ๐ฒ๐ป๐:
- Reflect on what you learned from the project. How did it help you grow professionally? What new skills did you gain, and what would you do differently next time?
โค ๐ง๐ถ๐ฝ๐ ๐ณ๐ผ๐ฟ ๐ฌ๐ผ๐๐ฟ ๐๐ป๐๐ฒ๐ฟ๐๐ถ๐ฒ๐ ๐ฃ๐ฟ๐ฒ๐ฝ๐ฎ๐ฟ๐ฎ๐๐ถ๐ผ๐ป:
- Be ready with a 30 second elevator pitch about your projects, and also have a five-minute detailed overview ready.
- Know why you chose the project, what your role was, what decisions you made, and how the results compared to what you expected.
- Be clear on the scope of the project whether it was a long-term effort or a quick task.
- If thereโs a pause after you describe the project, donโt hesitate to ask if theyโd like more details or if thereโs a specific part theyโre interested in.
Remember, ๐ฐ๐ผ๐บ๐บ๐๐ป๐ถ๐ฐ๐ฎ๐๐ถ๐ผ๐ป ๐ถ๐ ๐ธ๐ฒ๐. You might have done great work, but if you donโt explain it well, itโs hard for the interviewer to understand your impact. So, practice explaining your projects with clarity.
https://whatsapp.com/channel/0029VahGttK5a24AXAJDjm2R
Platforms for Coding Interview Preparation ๐ก
๐ธHackerRank
๐ธHackerEarth
๐ธLeetCode
๐ธInterview Cake
๐ธInterviewBuddy
๐ธAlgoExpert
๐ธCoderbyte
๐ธinterviewing .io
๐ธInterview camp
๐ธInterviewBit
๐ธGeeksForGeeks
Channel Link:
https://whatsapp.com/channel/0029VahGttK5a24AXAJDjm2R
Telegram: t.me/TechPsyche
๐ธHackerRank
๐ธHackerEarth
๐ธLeetCode
๐ธInterview Cake
๐ธInterviewBuddy
๐ธAlgoExpert
๐ธCoderbyte
๐ธinterviewing .io
๐ธInterview camp
๐ธInterviewBit
๐ธGeeksForGeeks
Channel Link:
https://whatsapp.com/channel/0029VahGttK5a24AXAJDjm2R
Telegram: t.me/TechPsyche
๐1
Azure Database Resources๐ฏ๐ฅ
Azure Database for PostgreSQL Flexible Server:
https://learn.microsoft.com/azure/postgresql?wt.mc_id=studentamb_205967
Azure Database for MySQL:
https://learn.microsoft.com/azure/mysql?wt.mc_id=studentamb_205967
More on Databases on Azure: https://azure.microsoft.com/products/category/databases
As a student, you receive $100 free Azure credits:
https://azure.microsoft.com/free/students?wt.mc_id=studentamb_205967
For an idea (or prototype) you want to build as a start-up; or a start-up you want to scale up? Microsoft for Startups Founders Hub Program gives one up to $150, 000 of free Azure Credits:
https://www.microsoft.com/startups?wt.mc_id=studentamb_205967
Channel Link:
https://whatsapp.com/channel/0029VahGttK5a24AXAJDjm2R
Azure Database for PostgreSQL Flexible Server:
https://learn.microsoft.com/azure/postgresql?wt.mc_id=studentamb_205967
Azure Database for MySQL:
https://learn.microsoft.com/azure/mysql?wt.mc_id=studentamb_205967
More on Databases on Azure: https://azure.microsoft.com/products/category/databases
As a student, you receive $100 free Azure credits:
https://azure.microsoft.com/free/students?wt.mc_id=studentamb_205967
For an idea (or prototype) you want to build as a start-up; or a start-up you want to scale up? Microsoft for Startups Founders Hub Program gives one up to $150, 000 of free Azure Credits:
https://www.microsoft.com/startups?wt.mc_id=studentamb_205967
Channel Link:
https://whatsapp.com/channel/0029VahGttK5a24AXAJDjm2R
Docs
Azure Database for PostgreSQL - Flexible Server documentation
Azure Database for PostgreSQL - Flexible Server is a relational database service in the Microsoft cloud that is built for developers based on the open-source PostgreSQL database engine.
KENYA
Africaโs Talking Open Hackathon Nairobi: Fintech Solutions
Date: 28th November
https://kenyatrends.co.ke/africas-talking-open-hackathon-nairobi-fintech-solutions/
Africaโs Talking Open Hackathon Nairobi: Fintech Solutions
Date: 28th November
https://kenyatrends.co.ke/africas-talking-open-hackathon-nairobi-fintech-solutions/
KenyaTrends.co.ke
Kenya Trends - News . Entertainment . Job Alerts
KenyaTrends.co.ke covers breaking news, entertainment news, politics, job alerts, technology updates, religion and compelling human interest stories from Kenya and across the world.
