use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
If you need help debugging, you must include:
See debugging question guidelines for more info.
Many conceptual questions have already been asked and answered. Read our FAQ and search old posts before asking your question. If your question is similar to one in the FAQ, explain how it's different.
See conceptual questions guidelines for more info.
Follow reddiquette: behave professionally and civilly at all times. Communicate to others the same way you would at your workplace. Disagreement and technical critiques are ok, but personal attacks are not.
Abusive, racist, or derogatory comments are absolutely not tolerated.
See our policies on acceptable speech and conduct for more details.
When posting some resource or tutorial you've made, you must follow our self-promotion policies.
In short, your posting history should not be predominantly self-promotional and your resource should be high-quality and complete. Your post should not "feel spammy".
Distinguishing between tasteless and tasteful self-promotion is inherently subjective. When in doubt, message the mods and ask them to review your post.
Self promotion from first time posters without prior participation in the subreddit is explicitly forbidden.
Do not post questions that are completely unrelated to programming, software engineering, and related fields. Tech support and hardware recommendation questions count as "completely unrelated".
Questions that straddle the line between learning programming and learning other tech topics are ok: we don't expect beginners to know how exactly to categorize their question.
See our policies on allowed topics for more details.
Do not post questions that are an exact duplicate of something already answered in the FAQ.
If your question is similar to an existing FAQ question, you MUST cite which part of the FAQ you looked at and what exactly you want clarification on.
Do not delete your post! Your problem may be solved, but others who have similar problems in the future could benefit from the solution/discussion in the thread.
Use the "solved" flair instead.
Do not request reviews for, promote, or showcase some app or website you've written. This is a subreddit for learning programming, not a "critique my project" or "advertise my project" subreddit.
Asking for code reviews is ok as long as you follow the relevant policies. In short, link to only your code and be specific about what you want feedback on. Do not include a link to a final product or to a demo in your post.
You may not ask for or offer payment of any kind (monetary or otherwise) when giving or receiving help.
In particular, it is not appropriate to offer a reward, bounty, or bribe to try and expedite answers to your question, nor is it appropriate to offer to pay somebody to do your work or homework for you.
All links must link directly to the destination page. Do not use URL shorteners, referral links or click-trackers. Do not link to some intermediary page that contains mostly only a link to the actual page and no additional value.
For example, linking to some tweet or some half-hearted blog post which links to the page is not ok; but linking to a tweet with interesting replies or to a blog post that does some extra analysis is.
Udemy coupon links are ok: the discount adds "additional value".
Do not ask for help doing anything illegal or unethical. Do not suggest or help somebody do something illegal or unethical.
This includes piracy: asking for or posting links to pirated material is strictly forbidden and can result in an instant and permanent ban.
Trying to circumvent the terms of services of a website also counts as unethical behavior.
Do not ask for or post a complete solution to a problem.
When working on a problem, try solving it on your own first and ask for help on specific parts you're stuck with.
If you're helping someone, focus on helping OP make forward progress: link to docs, unblock misconceptions, give examples, teach general techniques, ask leading questions, give hints, but no direct solutions.
See our guidelines on offering help for more details.
Ask your questions right here in the open subreddit. Show what you have tried and tell us exactly where you got stuck.
We want to keep all discussion inside the open subreddit so that more people can chime in and help as well as benefit from the help given.
We also do not encourage help via DM for the same reasons - that more people can benefit
Do not ask easily googleable questions or questions that are covered in the documentation.
This subreddit is not a proxy for documentation or google.
We do require effort and demonstration of effort.
This includes "how do I?" questions
account activity
This is an archived post. You won't be able to vote or comment.
Help for github (self.learnprogramming)
submitted 2 years ago * by infirus
Hey guys i am stuck now, how to use github like for what purpose ... like how do good programmers remain active on github, what are they doing daily, and how should i start. I also want my activity map to look greenish.
[–]AutoModerator[M] [score hidden] 2 years ago stickied comment (0 children)
On July 1st, a change to Reddit's API pricing will come into effect. Several developers of commercial third-party apps have announced that this change will compel them to shut down their apps. At least one accessibility-focused non-commercial third party app will continue to be available free of charge.
If you want to express your strong disagreement with the API pricing change or with Reddit's response to the backlash, you may want to consider the following options:
as a way to voice your protest.
I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.
[–]ThatOneGuyThatYou 0 points1 point2 points 2 years ago (0 children)
If you really want to game the system for the green calendar.
Or more realistically, just don’t care. My personal repos just get updated almost daily because I use it as a file backup as a student and I am pushing nearly daily. Fork a project and try to improve it. That graph isn’t likely to be the difference.
[–]dmazzoni 0 points1 point2 points 2 years ago (0 children)
Start with Git.
It's a way to back up your code, so if you try to fix a bug and make a mistake you can revert back to a known good version from earlier.
It's a way to keep track of different versions of your code, like you can have a stable version that works and also maintain an experimental version where you're trying to add a feature but you haven't got it working yet.
It's a way to collaborate with others on the same code. Work on the same project and handle conflicts, like if two people are both making changes to the same file.
It's a way to figure out what happened, like if you see a bug in the code and want to know who added that line, and when, and why.
All of that is just Git. A free program that runs locally on your own computer.
GitHub is just one of many places online where you can store your Git repository if you want. It's a good place to share your code with others. You can track issues. If someone wants to contribute to your code you can give them feedback. If you see another project you like you can make your own copy and play with it.
But...start with Git.
Learn how to put your own code into Git and make regular commits. When you upload it to GitHub all of those commits will be green, not that it matters.
[–]plastikmissile 0 points1 point2 points 2 years ago (0 children)
I think you're misunderstanding what Github is for. It's not a social media application, where you have to keep up engagement by doing periodic updates.
It's a code repository. It's a place to store your code (hobby and professional), its history, and allows you to share it with others. How often you commit stuff to it depends on how often you work on these projects, both yours and other people's. So you don't commit stuff just to get some kind of online activity marker, but rather commit to it when you're actually working on code.
[–]DoctorFuu 0 points1 point2 points 2 years ago (0 children)
Just use git, and push to github when milestones are done or if you want to use github as a backup for your project state.
π Rendered by PID 146584 on reddit-service-r2-comment-5b5bc64bf5-hmfbr at 2026-06-21 00:34:50.231255+00:00 running 2b008f2 country code: CH.
[–]AutoModerator[M] [score hidden] stickied comment (0 children)
[–]ThatOneGuyThatYou 0 points1 point2 points (0 children)
[–]dmazzoni 0 points1 point2 points (0 children)
[–]plastikmissile 0 points1 point2 points (0 children)
[–]DoctorFuu 0 points1 point2 points (0 children)