๐10 API-based project ideas
1. QR code generator
2. Weather app
3. Translation app
4. Chatbot
5. Geolocation app
6. Messaging app
7. Sentiment analysis
8. COVID tracker
9. URL shortener
10. Music player
๐Contact @sreetamo for promotion/ collaboration
1. QR code generator
2. Weather app
3. Translation app
4. Chatbot
5. Geolocation app
6. Messaging app
7. Sentiment analysis
8. COVID tracker
9. URL shortener
10. Music player
๐Contact @sreetamo for promotion/ collaboration
๐15โค9
Become Full Stack Developer in just
steps: ๐๐
Step 1: Learn HTML & CSS
Step 2: Learn Java Script
Step 3: Learn React, Node JS
Step 4: MySql
Step 5: MongoDB
Step 6: Git Commands
Step 7: Build Projects & Push on GitHub
Step 8: Practice, Practice & Practice
Resources: https://t.me/WebsiteDesignLearningGroup
steps: ๐๐
Step 1: Learn HTML & CSS
Step 2: Learn Java Script
Step 3: Learn React, Node JS
Step 4: MySql
Step 5: MongoDB
Step 6: Git Commands
Step 7: Build Projects & Push on GitHub
Step 8: Practice, Practice & Practice
Resources: https://t.me/WebsiteDesignLearningGroup
๐44โค9๐ฅ8๐ค6๐คฃ5
๐ด Become a professional Frontend Developer
in just 4 weeks!
Apply now: https://shorturl.at/dnKY8
โ ๏ธ Limited seats available.
in just 4 weeks!
Apply now: https://shorturl.at/dnKY8
โ ๏ธ Limited seats available.
๐10
๐ Please boost our channel
https://t.me/boost/WebsiteDesignLearningGroup
https://t.me/boost/WebsiteDesignLearningGroup
โค4
โ
Javascript Reduce method Example.
โซ๏ธ Finding the longest word in a given string.
function longerWord(a, b) {
if (a.length > b.length) {
return a;
} else {
return b;
}
}
const sentence = 'Hey there what are you doing this Wednesday night';
const longest = sentence.split(' ').reduce(longerWord);
console.log(longest);
// Wednesday
#JavaScript
(๐) โข @WebsiteDesignLearningGroup
โซ๏ธ Finding the longest word in a given string.
function longerWord(a, b) {
if (a.length > b.length) {
return a;
} else {
return b;
}
}
const sentence = 'Hey there what are you doing this Wednesday night';
const longest = sentence.split(' ').reduce(longerWord);
console.log(longest);
// Wednesday
#JavaScript
(๐) โข @WebsiteDesignLearningGroup
๐31โค4
๐๐ Paid promotion available contact @sreetamo . ๐
Starting at just $5. Offer for limited time. Grab it now.
โค4
Top 10 Github Repositories For Web Developer
1. Web Developer-Roadmap : https://github.com/kamranahmedse/developer-roadmap
2. 30-Seconds-Of-Code : https://github.com/30-seconds/30-seconds-of-code
3. Awesome-Cheatsheets : https://github.com/LeCoupa/awesome-cheatsheets
4. CSS-Protips : https://github.com/AllThingsSmitty/css-protips
5. 33-JS-Concepts : https://github.com/leonardomso/33-js-concepts
6. You-Dont-Know-JS : https://github.com/getify/You-Dont-Know-JS/tree/2nd-ed
7. Front-End-Checklist : https://github.com/thedaviddias/Front-End-Checklist
8. Javascript-Questions : https://github.com/lydiahallie/javascript-questions
9. Clean-Code-Javascript : https://github.com/ryanmcdermott/clean-code-javascript
Join for more: https://t.me/WebsiteDesignLearningGroup
1. Web Developer-Roadmap : https://github.com/kamranahmedse/developer-roadmap
2. 30-Seconds-Of-Code : https://github.com/30-seconds/30-seconds-of-code
3. Awesome-Cheatsheets : https://github.com/LeCoupa/awesome-cheatsheets
4. CSS-Protips : https://github.com/AllThingsSmitty/css-protips
5. 33-JS-Concepts : https://github.com/leonardomso/33-js-concepts
6. You-Dont-Know-JS : https://github.com/getify/You-Dont-Know-JS/tree/2nd-ed
7. Front-End-Checklist : https://github.com/thedaviddias/Front-End-Checklist
8. Javascript-Questions : https://github.com/lydiahallie/javascript-questions
9. Clean-Code-Javascript : https://github.com/ryanmcdermott/clean-code-javascript
Join for more: https://t.me/WebsiteDesignLearningGroup
๐11๐ฅ5โค3
Companies won't go from 100 developers down to 0 because of AI.
They will, however, solve 10x more problems with the same team. 10x more software, 10x higher quality.
We may see a net gain in software jobs, not a decrease.
They will, however, solve 10x more problems with the same team. 10x more software, 10x higher quality.
We may see a net gain in software jobs, not a decrease.
๐23โค8๐3
๐ฅ Git: Merging vs Rebasing
In git, when there are some changes in a parent branch from which you forked, there are two strategies to incorporate them into your working branch:
โจ Merging:
As the name suggests, 'merges' the parent branch into your branch. The advantage is that handling conflicts (if any) is easier, since you only need to resolve them for the merge commit once. However, this may make the git history a bit harder to follow
โจ Rebasing:
Takes all the commits you made in your branch, and applies them on top of the head of the parent branch. As if repositioning the base of the branch.
This helps to create a linear and easy to follow git history, but conflict resolution may be tedious and you need to force push the branch to the origin.
In git, when there are some changes in a parent branch from which you forked, there are two strategies to incorporate them into your working branch:
โจ Merging:
As the name suggests, 'merges' the parent branch into your branch. The advantage is that handling conflicts (if any) is easier, since you only need to resolve them for the merge commit once. However, this may make the git history a bit harder to follow
โจ Rebasing:
Takes all the commits you made in your branch, and applies them on top of the head of the parent branch. As if repositioning the base of the branch.
This helps to create a linear and easy to follow git history, but conflict resolution may be tedious and you need to force push the branch to the origin.
๐17โค6