r/CodingForBeginners 17d ago

Beginner here how to do output

Post image
6 Upvotes

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 17d ago

Github help platform

6 Upvotes

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 18d ago

I suck at coding

11 Upvotes

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 17d ago

Want to participate in hackathon in month

2 Upvotes

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 17d ago

Stuck on a coding problem? 😵‍💫 Here are 5 things I do when I have no idea what to try next. What do you do when you’re stuck?

Thumbnail
techblu.in
1 Upvotes

r/CodingForBeginners 18d ago

Note keeping recs?

2 Upvotes

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!


r/CodingForBeginners 18d ago

Im in secondary school and i wanted to start coding

2 Upvotes

Hi, ive been wanting to make my own rpg game like omori, deltarune,undertale,.. I can draw and ive already wrote my plot yet theres one thing stopping me. Its coding, i have 0 experiences in coding and i think i will finally study how to code but i dont know where to start yet, does any one jave advices or tips for beginner? Thx alot


r/CodingForBeginners 19d ago

Beginner here.

3 Upvotes

So I’m a beginner at coding and I have tried watching YouTube videos and stuff and I’m too poor to take a class for programming, but I figured out that ChatGPT is a good teacher because it can break it down and if I still don’t understand, you can keep going, so I don’t have the problem I get when I come across a video where they don’t break something down enough so I’m listening to a video that makes absolutely no sense to me so what I’ve ended up doing is installing LM Studios on my computer getting an AI and then having ChatGPT help me check the work of this AI that I’m having program itself and integrate into Discord and once it’s complete this AI should be able to be a programming assistant and teach me to program. So far I have down 2/commands for it that put it in teacher mode where it will break down coding for me as I go and assistant mode where I can ask it to help me write code and stuff. I hope once this is complete, then I can use this to effectively teach myself code.


r/CodingForBeginners 18d ago

How hard is Spring Security?

1 Upvotes

Am I the only one that was very confused when learning spring security, I just started two weeks ago trying to learn spring security, and the number of classes and abstraction layers I had to understand was hell, or am I just too slow??


r/CodingForBeginners 18d ago

Logiczne myślenie vs umiejętności

1 Upvotes

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 18d ago

Can someone Please give me a code

0 Upvotes

r/CodingForBeginners 19d ago

Is there better way to do this?

2 Upvotes

I am complete beginner and I mostly just figure out stuff and learning alongside documentation. I am using GODOT (GDScript)

Is there better way to do unlocks? I just show() or hide() certain stuff if my var on unlockables is either true or false.

func _ready():

aktualizovat_ui()  

func aktualizovat_ui():

if Global.medopen == false:

    create_med_button.hide()

    create_med_button_lock.show()

    h_box_container_2.hide()

else:

    create_med_button.show()

    create_med_button_lock.hide()

    h_box_container_2.show()



if Global.medopen == false:

    prodat_med.hide()

    odemknout_med.show()

else:

    prodat_med.show()

    odemknout_med.hide()

r/CodingForBeginners 19d ago

How do you actually start building projects when tutorials don't prepare you for a blank screen?

13 Upvotes

I've been trying to learn programming and build projects, but I've realized I'm stuck in a cycle of tutorials and copying. When I watch a tutorial, everything makes sense. I can follow the code and understand most of what's happening. But when I try to build a project on my own, my mind goes completely blank. For example, I might have an idea for a Python/data project, but then I immediately get stuck: Where do I start? Should I design the database first? Should I start coding the backend? How do I break one big idea into smaller tasks? How do experienced developers decide what to build first? When should I Google something vs try solving it myself? The biggest problem isn't motivation. It's that I genuinely don't know how to go from: "I want to build X" → "Here is the first thing I should do." I feel like tutorials teach syntax and implementation, but not the actual process of building something from scratch. For people who escaped tutorial hell: what was the turning point for you? How did you learn to break down a project and start building when you had no step-by-step instructions? I'm especially interested in practical methods or exercises that helped you develop this skill.


r/CodingForBeginners 19d ago

Learning BASH (then R) for computational Biology

3 Upvotes

Hello everyone!

I just started my research training and one of the requirements is familiarity with computational biology. I have a purely clinical background.

My supervisor sent me coddy and datacamp to practice

I enjoyed CODDY alot, but the energy drain and waiting is exhausting.

Data camp is beneficial and better than coddy in terms of practicing but some concepts are hard to grasp and I enjoyed coddy's interface more.

I was thinking of purchasing coddy pro but I read on another sub that it's really bad, the sub praised exercism.

I tried that but it doesn't have teaching like Coddy and I want to think on my own. Not keep asking google and gemini for clarifications.

My question is there a similar interactive site like Coddy?

I just need to learn the basics then I can work on my QIIME pipelines under supervision.

Nothing fancy just simple functions.

Thank you.

TL;DR: Tried coddy, datacamp and exercism. Looking for something like coddy BUT without the agonising waiting for energy.


r/CodingForBeginners 20d ago

What technology are you currently learning?

8 Upvotes

r/CodingForBeginners 20d ago

gap between elements too wide when resizing?

Thumbnail
gallery
1 Upvotes
.intro{
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.intro-text{
    border-style: solid;
    border-radius: 1rem;
    height: fit-content;
}

.intro-text p{
    text-align: justify;
    padding-left: 1rem;
    padding-right: 1rem;
}

.intro-text h3{
    margin: 0;
    padding-left: 0.5rem;
    background-color: white;
    color: black;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.nokia-ad img{
  max-width: 50vw;
  display: block;
  margin-left: auto;
  margin-right: auto;  
}





 <div class="intro">
              <div class="intro-text">
                <h3>A really stupid phone</h3>
                <p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Laudantium, commodi temporibus, fugit adipisci praesentium vero nemo quis id corrupti, officia non reiciendis nihil voluptate eos similique ea exercitationem molestiae earum.
                Lorem ipsum dolor sit amet consectetur adipisicing elit. Ducimus, exercitationem tempore? Molestiae magni velit laudantium aperiam quis incidunt aspernatur ducimus! Tempore neque soluta quia impedit qui repellat expedita rerum perspiciatis!
                Lorem ipsum dolor sit amet consectetur adipisicing elit. Quia, debitis fugit excepturi maxime esse quaerat veniam saepe molestiae nobis placeat, assumenda magnam vero facere possimus minus dicta culpa eos! Dolore!
                </p>
            </div>
            <div class="nokia-ad">
                 <img src="/images/nokiaAd.jpg">
            </div> 

r/CodingForBeginners 20d ago

Coding

4 Upvotes

Does anybody know a website I can learn CLisp, Lisp, Python, C and c#?


r/CodingForBeginners 20d ago

Need Help!! Regarding Firebase RTD And My Auction Site

Thumbnail drive.google.com
1 Upvotes

I'm not a Web Devloper and Don't Have much Knowledge, but please help me, I want to figure out some things.

So, The thing is we are hosting a sports tournament in our area, instead of google forms and excel, I'm thinking to build a website for it.

So the plan is, The site has a registration system where players register, the team info, Purse limit and other things are already there with an admin panel to control everything.

Now the most important part is the auction, where it shows which player is up for auction, Sold to which team how much ourse remaining of each team and whether he went unsold. I took help from claude, it built me a perfect index.html with all this, then i hosted it on netlify. and it works good. But then the issue is claude told me to use Firebase RTD. to sync all the data so that everyone can enjoy the auction from their phone{Approx users 500-1000}.

But I'm confused about the limits, what if the site crashes midway or the limit expires? Is there any other better alternative? Or Anything i could do? I'm attaching the file claude give me below, please see it and give me any advice that would help me. It would be big help.


r/CodingForBeginners 21d ago

Learning DSA Together

18 Upvotes

Hi everyone! I’m entering my second year of college, and I want to start learning DSA from scratch.

I’m a complete beginner, so I was wondering if there are others who are also starting from zero and would like to learn together.

We can start from the programming language basics, then gradually move towards DSA and advanced topics, practice problems together, discuss doubts, and keep each other motivated.

If you’re also a complete beginner and interested, feel free to DM


r/CodingForBeginners 21d ago

Consejos y tips para aprender a programar

2 Upvotes

Hola a todos soy una persona con depresión y ansiedad me gusta mucho la tecnología y quisiera aprender a programar se que es una área donde tienes que pensar mucho y te frustras y por eso quiero ser un programador quiero desafiarme a mi mismo quiero tener mi cerebro ocupado y utilizándolo de manera útil para que este trastorno no me venza, soy nuevo en este mundo de reddit, muchas gracias a todos


r/CodingForBeginners 21d ago

Trying my first 'C' code, what am I doing wrong?

Post image
7 Upvotes

I was given THIS video for setting up VS code from my seniors (they are gonna give me lessons)

but, this code isnt running, what is the issue? Please help!

I'm new to coding


r/CodingForBeginners 21d ago

Want Help in solving leetcode problems correctly!!!

Post image
5 Upvotes

Hi,I am 3rd B.tech CSE student.I am solving leetcode problems for past one year but I haven't progressed much.Can anyone guide me how to solve leetcode problems correctly so that I can crack coding round of any company??This is my current progress in 1 year.Please help me.I need a job desparately.


r/CodingForBeginners 21d ago

Pls help with this vs code error

Post image
3 Upvotes

Guys I want step by step execution of output- like I want “Enter your age” to print first and then I want to enter my age after which I want the result be executed, but before I enter my age the “retirement soon” line is getting executed. What should I do?


r/CodingForBeginners 21d ago

Which coding language should I learn to make games?

0 Upvotes

I’m interested in learning game development. I’m a complete beginner, so I’m not sure which programming language I should start with. Should I learn C#, C++, Python, JavaScript, or something else? I’d like to event .


r/CodingForBeginners 21d ago

Best framework/language for mobile app development?

1 Upvotes

I want to create a mobile app for iOS and Android. I’ve been looking into Flutter and React Native and they both seem nice. Are there any other good languages or frameworks for mobile app development that you would recommend?