Coding Buddies
530 subscribers
63 photos
1 video
37 files
479 links
This is the official telegram channel of Coding Buddies. If you have any doubt then you can message in our telegram group. Also if you want to chat with me personally then you can ping me here @kishan_rajput23
Download Telegram
Hii guys,
Scaler open source september challenge 8 overview.

1. First of all you have to update your both branches by using sync and update button in your github repo.

2. Go to your branch called name-details then in contributor folder then in under your username folder then create a new file there like

your_github_username-2.md

3. In this file write anything whatever you want.

4. Commit file and now go to your Pull Request, you'll be able to see recent changes over there.

5. Share that PR link in discord channel and don't forget to edit the title of PR.

6.Congratulations you have just completed your Day 8 ChallengeπŸ₯³πŸ₯³

If you still have any doubt then feel free to ping in group.

Also if you like this post then share with your friends and give me a thumbs up. πŸ‘

Happy Learning
Regards
@Coding_Buddies
Hii guys,
Scaler open source september challenge 9 overview.

1. First of all you have to update your both branches by using sync and update button in your github repo and also update your local repository by using git pull.

2. Run this command

git log --oneline

3. You'll get output like this

cdb76bf Added another feature
d425161 Added one feature

4. After this pick a hash you want to revert it then run below command (Hash is 7 character letter)

5. git revert <commit hash>

Ex : git revert cdb76bf

6. You can revert as many commits as you want but, do one by one .

7. After this run below command

git commit -am "blabla"

Then

git push -f origin <branch-name>

8.Congratulations you have just completed your Day 9 ChallengeπŸ₯³πŸ₯³

If you still have any doubt then feel free to ping in group.

Also if you like this post then share with your friends and give me a thumbs up. πŸ‘

Happy Learning
Regards
@Coding_Buddies
How to remove DCO Check Error?

1. Firstly go to your PR where you're getting this error.

2. Under error message you'll be able to see "Details" Word at right corner.

3. Click on it and scroll down and there you'll find two commands so, you have to run first one which is something like this

git rebase HEAD~x --signoff

Where x is the total commit in your PR. Also this x varies with different PR so, don't compare with others.

4. Run that command in git bash.

5. After that run below command again and again till you see message like this

Successfully rebased and updated.

git rebase --skip

6. Now push the changes to your branch by using below command

git push origin name-details -f

7. Refresh your PR page and you'll find that error has been gone.

Congrats you did it. πŸ‘

If you still have any doubts then feel free to ping in group.

Also if you like this post then share it with your friends and give me a thumbs upπŸ‘

Happy Learning
Regards
@Coding_Buddies
πŸ‘2
Hey guys,
Finally we have found the answers of Jina AI Quizzes of all tracks πŸ₯³

So, anyone who want answers then he/she can dm on telegram I'll give you answers.

Special thanks to @chaitanya_7700 for his effortsπŸ‘

Swags take 4-5 months to arrive at your home via dtdc so please wait patiently.

Thank you.
Coding Buddies pinned Β«Hey guys, Finally we have found the answers of Jina AI Quizzes of all tracks πŸ₯³ So, anyone who want answers then he/she can dm on telegram I'll give you answers. Special thanks to @chaitanya_7700 for his effortsπŸ‘ Swags take 4-5 months to arrive at your…»
Hii guys,
Scaler open source september challenge 10 overview.

1. First of all you have to update your both branches by using sync and update button in your github repo and also update your local repository by using git pull.

Note : Below things need to be completed on using git bash you don't need to change anything on GitHub directly.

2. Switch branch to your name-details

Now go to contributers/your_username/your_username.md

3. Edit your md file content to

---
name: your_name

github_user_name: YOUR-GITHUB-USERNAME

url_of_github_issue:
Link_of_the_github_issue_created_in_first_challenge

your_favroite_programming_language: Add your favorite programming language here
---

4. Then commit your file by using below commands

git commit -S -m "your commit message"

git push origin branch-name

5. Now check your PR.

6. If you're still facing DCO error then run below commands

git commit --signoff

git commit --amend --signoff

git push -f origin branch-name

7. Now check you PR, hope you error has been removed.

8.Congratulations you have just completed your Day 10 ChallengeπŸ₯³πŸ₯³

If you still have any doubt then feel free to ping in group.

Also if you like this post then share with your friends and give me a thumbs up. πŸ‘

Happy Learning
Regards
@Coding_Buddies
πŸ‘1
Hii guys,
Scaler open source september challenge 11 overview.

1. First of all you have to update your both branches by using sync and update button in your github repo and also update your local repository by using git pull.

2. Switch to your name-details branch and create an another branch

3. You can give any name to your branch because in this challenge there is no naming convention.

4. use this command to create branch

git branch your_branch_name

git checkout your_newly_created_branch_name

Above command helps you to switch branch

Lastly use below command to view all the branches available in your local repository

git branch

5. Take screen shot of that and put it in your issues and don't forget to rename your issue.

6.Congratulations you have just completed your Day 11 ChallengeπŸ₯³πŸ₯³

If you still have any doubt then feel free to ping in group.

Also if you like this post then share with your friends and give me a thumbs up. πŸ‘

Happy Learning
Regards
@Coding_Buddies
πŸ‘2
Hii guys,
Scaler open source september challenge 12 overview.

1. First of all you have to update your both branches by using sync and update button in your github repo and also update your local repository by using git pull command.

2. Switch to your name-details branch and just squash your commits.

3. For reference you can take help of this blog by FreeCodeCamp.

https://www.freecodecamp.org/news/git-squash-explained/

4. You have to squash your commits if you have a lot of commits in your PR.

5. After squashing check your PR, the count of commits will be less over there. Hence, copy that PR link and share it in discord.

6.Congratulations you have just completed your Day 12 ChallengeπŸ₯³πŸ₯³

If you still have any doubt then feel free to ping in group.

Also if you like this post then share with your friends and give me a thumbs up. πŸ‘

Happy Learning
Regards
@Coding_Buddies
Hii guys,
Scaler open source september challenge 13 overview.

1. First of all you have to update your both branches by using sync and update button in your github repo and also update your local repository by using git pull command.

2. So, in today's challenge we have to use stash command and that's it. Also we have to move some changes in stash and then we have to delete that stash.

3. So, simply just watch this below video and you'll get to know how to use stash.

https://youtu.be/ts3qntjhgxI

4. After watching video, I hope you'll understand how to use stash.

5. So, simply shift to your name-details branch and under

contributor/your_github_username/

create a file and move it on stash and then delete that stash.

6. Take that screenshot of git commands and upload it on your issue. Then share that issue link in discord channel.


7. Congratulations you have just completed your Day 13 ChallengeπŸ₯³πŸ₯³

If you still have any doubt then feel free to ping in group.

Also if you like this post then share with your friends and give me a thumbs up. πŸ‘

Happy Learning
Regards
@Coding_Buddies
For today's challenge run below commands

Firstly switch to your name-details branch

Then run below commands

cd contributors

cd your_github_username

touch temp.md

git add .

git status

git stash

git stash list

git stash drop

git stash list

git status

Now maximum git window take screen shot and upload it in your issue.

Happy Learning
@Coding_Buddies
Hii guys,
Scaler open source september challenge 14 overview.

1. So, for today's challenge you don't have to do anything with your github repository and cloned repository.

2. For completing today's challenge you can refer below article for better understanding.

https://www.atlassian.com/git/tutorials/using-branches/merge-conflicts

3. Make a folder in your pc and and inside that folder open git bash and run below commands.

Note : you can change contents in between " " and commits messages as per your interest. Don't just copy paste only.

4. Here's are the commands πŸ‘‡

git init


echo "this is some content to mess with" > merge.txt

git add merge.txt

git commit -am "we are commiting the inital content"

git checkout -b new_branch_name

echo "totally different content" > merge.txt

git commit -am "edited the content of merge.txt"

git checkout main

echo "content to append" >> merge.txt

git commit -am "append content in merge.txt"

git merge new_branch_name

So, after running above command you will get a conflict error so for resolving above error run below commands.

git status

cat merge.txt

5. How to resolve merge conflicts using the command line?


The most direct way to resolve a merge conflict is to edit the conflicted file. Open the merge.txt file in your favorite editor. For our example lets simply remove all the conflict dividers for example symbol like this

<<<<<<
======
>>>>>>>

git add .

git commit -m "merge and resolved conflict"

git status

6. Congratulations you have just completed your Day 14 ChallengeπŸ₯³πŸ₯³

If you still have any doubt then feel free to ping in group.

Also if you like this post then share with your friends and give me a thumbs up. πŸ‘

Happy Learning
Regards
@Coding_Buddies
πŸ‘6
How many of you completed your 1st Milestone of Scaler 30 Days Open Source Challenge?
Anonymous Poll
38%
Yes completed πŸ₯³πŸ₯³
28%
No (some changes need to do) πŸ˜ͺπŸ˜ͺ
34%
Didn't receive any comments yet 😒😒
Hii guys,

If you haven't made an account on scaler.com then please make it.

Also remember fill same name, email, contact number which you filled while registering in scaler events.

Also complete your profile with profile pic, address, education, and your tshirt size.

Because whenever you order something from scaler store then moderators or admins will take whole details from your scaler account.
😁3
Hii guys,
Scaler open source september challenge 15 overview.

1. First of all you have to update your all three branches by using sync and update button in your github repository.

2. So, today's task is very simple. You just need to edit and add your name in challengers_list.md file and then check your PR whether your changes visible there or not. Your name should be in below format.

[Your_Name](https://github.com/your_github_username)


3. Congratulations you have just completed your Day 15 ChallengeπŸ₯³πŸ₯³

If you still have any doubt then feel free to ping in group.

Also if you like this post then share with your friends and give me a thumbs up. πŸ‘

Happy Learning
Regards
@Coding_Buddies
πŸ‘1πŸ‘Ž1
Hii guys,
Scaler open source september challenge 16 overview.

1. First of all you have to update your all three branches by using sync and update button on your github repository and also in your cloned repository in by using git pull.


2. So, if you see your PR today you will notice a conflict issue at the bottom of your PR.

3. We'll resolve this issue by using git in our local repository. So, shift to your name-details branch.

4. Open challengers_list.md and remove all the symbols like
<<<<<
>>>>>
=====
and save your file

4. Then add your updated file then commit then finally push it.

5. For reference I'm attaching a link of an issue in which you'll get an idea of how to solve today's challenge.

https://github.com/scaleracademy/scaler-september-open-source-challenge/issues/111

6. Now check your PR again you'll see your issue or conflict has been resolved. So, now take screenshot of your git commands and upload it in your issue.

7. Congratulations you have just completed your Day 16 ChallengeπŸ₯³πŸ₯³

If you still have any doubt then feel free to ping in group.

Also if you like this post then share with your friends and give me a thumbs up. πŸ‘

Happy Learning
Regards
@Coding_Buddies
πŸ‘Ž1
Hey guys,
Tokens have been added for Milestone 1.

Please check yoursπŸ‘
πŸ‘5πŸ‘Ž1
Hii guys,
Scaler open source september challenge 17 overview.

1. So, in today's challenge you don't have to do anything with your github repository or your cloned repository.

2. Today you just have to learn about how to use GitHub Desktop.

3. You can refer below article for more information.

https://docs.github.com/en/desktop/installing-and-configuring-github-desktop

4. For reference I'm attaching a link of an issue in which you'll get an idea of how to do today's challenge.

https://github.com/scaleracademy/scaler-september-open-source-challenge/issues/46#issuecomment-1250027349

5.Congratulations you have just completed your Day 17 ChallengeπŸ₯³πŸ₯³

If you still have any doubt then feel free to ping in group.

Also if you like this post then share with your friends and give me a thumbs up. πŸ‘

Happy Learning
Regards
@Coding_Buddies
πŸ‘1πŸ‘Ž1
Scaler coins and scaler tokens are two different things.

The actual price of mug is 500 scaler tokens and when it is converted in coins then it's price reduced at 300 scaler coins.

Check store channel and find which goodies you want to purchase.

After deciding dm to any moderator or admins then he/she give you a form to fill then only you will get goodies.

Also after the filling form it takes 2-3 weeks to goodies reach at your home. So, have patience.

Note : if you want to purchase scaler tee, mug and notebook separately then please don't purchase because after purchasing separately you will loss 1900 tokens.

So, use a trick order direct scaler goodies which will cost you only 1500 tokens and in bonus you'll get two scaler badges also.
πŸ‘Ž1
Hii guys,
Scaler open source september challenge 19 overview.

1. So, today's challenge is also very easy.

2. Firstly update your repository by using sync and update button.

3. Switch to your name-details branch and add any code file under contributors/username directory.

4. Commit the changes and push it.

5. Now check your PR whether it is passing all the checks or not. If not then write code properly in your file then push it.

6. After green tick or all checks has been passed then you are done with today's challenge.

Note : If anyone's check need approval then dm Shivay on discord for same.

7.Congratulations you have just completed your Day 19 ChallengeπŸ₯³πŸ₯³

If you still have any doubt then feel free to ping in group.

Also if you like this post then share with your friends and give me a thumbs up. πŸ‘

Happy Learning
Regards
@Coding_Buddies
πŸ‘4πŸ‘Ž1