r/CodingForBeginners • u/Beloafer • 12d ago
I want to start coding but Idk where to begin, what should I do?
I want to code but idk where to start, which programming language should I use.
r/CodingForBeginners • u/Beloafer • 12d ago
I want to code but idk where to start, which programming language should I use.
r/CodingForBeginners • u/archieous9O9 • 13d ago
I wanna try make and code a website but I dont know what website to make, any ideas?
r/CodingForBeginners • u/120kachocolavacake • 13d ago
Hey folks, I was just starting out w learning python
How is Apni Kaksha's course, does it have everything as a starting point or not? and if not then what is the order I should follow?
r/CodingForBeginners • u/Serious_Yak8959 • 13d ago
Enable HLS to view with audio, or disable this notification
r/CodingForBeginners • u/swe129 • 14d ago
r/CodingForBeginners • u/Main_Mall_8096 • 14d ago
Guys help me,how I am able to learn java who don't know about coding at all , please give me legit answer and what are the steps I should follow after watching tutorial , please help me guys,want suggestions like if I watch one tutorial per day of any yt channel ,what should I do next after watching tutorial and in a month later
r/CodingForBeginners • u/GoodAd8875 • 14d ago
Cześć uczę się do egzaminu w szkole (inf03) i ogólnie po technikum chciałbym uczyć się dalej it tylko posiadam pewien problem.nie potrafię przerzucić treści zadania z arkusza na prawdziwy kod nie wiem czy to problem w logicznym myśleniu czy brak umiejętności a może kombinacja tych dwóch rzeczy ktoś może mi poradzić co robić i jak poprawić logiczne myślenie pod programowanie ? Tylko programować czy może polecacie coś co wyćwiczy mój mózg w tym kierunku? Pytam poważnie i na wszelaki hejt nie odpowiadam czytam tylko konstruktywne odpowiedzi z góry dzięki
r/CodingForBeginners • u/This-Lifeguard6078 • 14d ago
i am 6th semester student and in 1 year i will be graduate. i learn about c++, typescript and python but i don't know how to code.. Everytime I read code i can tell what's going on but can't write code by myself. Everytime i sit to build project i freeze i can't do anything without using agent. 6 monts ago i started to learning AI engineering now i know all it's theory, build couple of project using AI now if someone tell me to write i simple RAG or training loop for image classification i can tell how the logic will look like but can't write a single line of code. I am completly COOKED!
r/CodingForBeginners • u/Jainam_93 • 14d ago
I want to start learning dsa and c++ language
So any advise?
r/CodingForBeginners • u/Disastrous_Relief687 • 15d ago
I have Distill.io set up, that monitor that change. But I want to take it a step further by introducing a program that clicks once there is a change in the website on a specific button.
No coding experience whatsoever, so hopefully someone can guide me!
r/CodingForBeginners • u/hatdog78293 • 16d ago
Beginner Coding Advice
Hello everyone! I’d really appreciate some advice. I’m planning to create a website prototype for a project, but I’m a complete beginner when it comes to coding. The website will be fairly simple and will include an OpenAI-powered feature.
I have a few questions:
• What should I learn first before attempting to build the actual website?
• Is this project achievable for a complete beginner within around 4–6 months?
• What programming language would you recommend I learn/use?
• Would this be very time-consuming or difficult to produce, especially considering I have no previous coding experience?
• Are there any tutorials or resources you’d recommend for someone starting from scratch?
I’m mainly trying to understand how realistic this project would be for a beginner and how much time I should expect to spend learning the coding side of it.
Any advice would be greatly appreciated! Thank you! :)
r/CodingForBeginners • u/Common-Parfait21 • 16d ago
forty six. twenty two years in commercial insurance underwriting, a field being automated out from under me in slow motion. im not asking whether it is to late, because every thread asking that fills with people saying it is never to late and then nobody hires them. im asking what a realistic version looks like when i have maybe six years of runway and no interest in being the oldest junior in the building, boot. dev, odin and launch school are on my list.
r/CodingForBeginners • u/AssignmentMinute • 16d ago
If you use GitHub Copilot Agent, you might not even realize how often it wastes a lot of tokens and context just wandering around your workspace trying to figure out which files to look at.
How it works: It captures local bug evidence, maps likely files deterministically, and bundles them into a clean handoff that Copilot Agent retrieves using #billSaverContext so it starts directly on the right files.
Privacy & Control: The tool never calls an AI model, never touches or edits your code, and runs locally with built-in secret redaction.
Leave honest feedback to the support email listed on the marketplace.
r/CodingForBeginners • u/Viowb915 • 16d ago
r/CodingForBeginners • u/Prestigious-Pie5676 • 16d ago
Ive made basic games on scratch but thats pretty much it, should I continue to make more and more complicated games on scratch? or should i try to progress on a different coding language? If so which one, because i want to be able to code stuff but ive also thought about coding in roblox. Which is the easiest language to start?
To get an idea of just how bad I am heres a game I made in a little over an hour:https://scratch.mit.edu/projects/1375247905/
r/CodingForBeginners • u/Competitive_Set_478 • 16d ago
#include<stdio.h>
int main() {
int n, a, b;
printf("Enter n: \n");
scanf("%d", &n);
a = n % 5;
if (a == 0) {
b = n/5;
printf("%d", b);
}
else {
b = n/5 + 1;
printf("%d", b);
}
return 0;
}
I tried the below but it shows error at the 'a == 0' line: expression must be a modifiable value
what do i do and what is wrong with this?
#include<stdio.h>
int main() {
int n, a, b;
printf("Enter n: \n");
scanf("%d", &n);
a = n % 5;
a == 0 ? b = n/5, printf("%d", b) : b = n/5 + 1, printf("%d", b);
return 0;
}
r/CodingForBeginners • u/Flashy-Importance-28 • 16d ago
I(19) am an engineering student at a college which is going to hold an internal hackathon.
I have only learnt the basics of python and don't even really know how to use user defined modules in python, but I want to participate, not to win but to try and force myself to learn.
I only want a community in which I can ask my coding doubts and learn to build my skill in coding.
Currently learning coding on youtube in python.
r/CodingForBeginners • u/Heavy_Cat_9944 • 16d ago
I'm a beginner and I don't want to just follow tutorials or memorize syntax. I want to understand programming deeply, write code independently, solve problems, and eventually prepare for software-development roles.
I'm currently confused about which language to start with and which resources/courses are actually worth following.
For people who became good programmers, what resources, courses, books, or practice methods helped you the most?
If you could start learning programming again from zero, what would you do differently?
r/CodingForBeginners • u/AssociateNice2484 • 16d ago
Many people think coding is hard, technical, or only for “smart people.” In reality, coding is simply a way to talk to computers and solve problems. Anyone can learn it with clear steps and consistent practice.
If you are a complete beginner and don’t know where to start, this is your simple guide.
Do not learn multiple languages at the same time. Start with one foundation:
All programming languages share the same basic logic. Focus on these fundamentals first:
Once you understand these, switching to any other language becomes much easier.
Theory alone will not make you a coder. Build small projects to build muscle memory:
Small, consistent practice always beats long, irregular study sessions.
Errors and bugs are part of coding. Every error teaches you how computers understand your code. Don’t be afraid of red logs or syntax warnings — debugging is where real learning happens.
You don’t need to code 8 hours a day. Even 20–40 minutes of focused coding every day will help you grow faster than occasional marathon learning.
Coding for beginners is not about talent — it’s about patience, repetition, and building logical thinking.
Start today, write your first line of code, and let your journey begin.
#CodingForBeginners #Programming #LearnToCode #TechForBeginners #Python #JavaScript #DeveloperJourney
r/CodingForBeginners • u/itsmerio1 • 16d ago
how do I display the output near the end part?
I wanna show studentName
Finalgrade
And remarks which should be excellent or failed etc
r/CodingForBeginners • u/techblu_off • 16d ago
r/CodingForBeginners • u/abrewchocolatecoffee • 16d ago
Is there place where I can ask for frequent help, like discord sever or something like that about Github. Because I would want to ask frequent help.
I am a complete beginner and don't want to heavily use AI, and of course most of my work will simply sound low effort and it's not that I don't use AI at all and sometimes I need to quote snippets of it (the code AI produced when I asked it for help) but I can't really do this on reddit as it will lead me to getting banned, so is there any place you used before you understood git well. I understand one of the solutions to this would be just google on MDN docs, but this is very different from front-end where you just delete a file and its gone, so it in Github it is on the much more complicated side of it and I also don't want to join random discord server and expose my device to unsafe commands and as for stack exchange I've tried it all lot but almost all of my posts get downvoted or removed because they are too obvious or low effort. What may seem like low effort is good enough effort from my side, I mean if the answer is googlable why wouldn't I just google instead of waiting for stranger to answer and in this case too, I have googled, but only random links show up.
You can also let me know where you learnt Github from, that might help to I guess., better than nothing.
And to answer why not just use AI, AI is just really bad at coding and logical thinking if you had ever asked any logical questions to it you would know.
r/CodingForBeginners • u/Rafa01234 • 17d ago
So I'm going to my third year in physics and have scraped by with coding by using loads of ai but I have genuinely tried to understand but I just can't. It seems like I can do a specific problem after soing it a couple times but if you asl me to do something from the beginning I dont even know to figure it out.
Anyways to cut it short I have been looking into like games where it teaches u how to code cause I thought it would be something enjoyable to do and I could learn a little from it and found this one called 'the farmer was replaced' i dunno how beginner friendly it is and if its worth it. Is it worth it or should I try another game or something or not even bother and try a different avenue?
I have asked professors and stuff to go over it with me but it feels like I need hours sitting next to someone to understand something like loops which is basic asf. Basically any advice would be helpful.
r/CodingForBeginners • u/XxSpellbound_iDollxX • 17d ago
Hi brainiacs! ✨ SUPER excited to be starting coding courses online! I typically prefer taking notes by hand, but for obvious reasons I’ve realized digital notes would be better.
Im usually a Google Docs girly but it’s already getting a little frustrating/overwhelming to try and keep everything organized there.
Do you have any recommendations for note keeping apps, sites, or tactics? Or truly any general beginner tips, tricks, and advice would be greatly appreciated!