Web design & ๐Ÿ˜ƒ development
29.2K subscribers
499 photos
23 videos
67 files
762 links
Admin๐Ÿ‘ฎ @sreetamo @Tranjar

Get free resources for webdevelopment , html , CSS , JavaScript , reactjs , wordpress , Php , nodejs ...etc. Buy ads: https://telega.io/c/WebsiteDesignLearningGroup
๐Ÿ‘ฅGroup๐Ÿ‘ฅ @website_DesignLearning_Group
Download Telegram
๐Ÿ‘‰ Learn Ai Tools ๐Ÿ‘ˆ
๐Ÿ‘13
๐Ÿš€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
๐Ÿ‘15โค9
๐Ÿ”ดJoin our new channel for learning Ai tools
https://t.me/Aitechnologylearning
๐Ÿ‘10โค4
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
๐Ÿ‘44โค9๐Ÿ”ฅ8๐Ÿค”6๐Ÿคฃ5
๐ŸŽ For paid promotion contact @sreetamo
๐Ÿ‘18
๐Ÿคฃ51๐Ÿ‘10๐Ÿ˜6๐Ÿ˜ข2โค1
๐Ÿ”ด Become a professional Frontend Developer
in just 4 weeks!
Apply now: https://shorturl.at/dnKY8

โš ๏ธ Limited seats available.
๐Ÿ‘10
๐Ÿ˜Š Please boost our channel
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
๐Ÿ‘31โค4
๐ŸŽ๐ŸŽ Paid promotion available contact @sreetamo . ๐Ÿ…Starting at just $5. Offer for limited time. Grab it now.
โค4
๐Ÿ˜‚๐Ÿ˜‚๐Ÿ˜‚๐Ÿ˜‚
๐Ÿคฃ42๐Ÿ˜11๐Ÿ‘6
๐Ÿ”ฅ11๐Ÿ‘6โค2
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.
๐Ÿ‘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.
๐Ÿ‘17โค6