this post was submitted on 04 Jan 2025
29 points (73.8% liked)
Programming
17762 readers
493 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities [email protected]
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
The languages i used up until now do not have entry points (intrepeted). I know what is that, but i don't know where they should be. Up until now, i only used llms for debugging, i'm far from correcting source code, i'm happy if i can write something that even remotely resembles to the correct structure. Also, is it a good idea to start adding smaller functions to already existing c# projects made by others on github (not to publish, just for myself, don't want to ruin someone's work with malicious commits). My python understanding is vague too. Only class i ever defined was a csv file reading class like class Class: def init(self, stuff1, stuff2): self.stuff1 = str(stuff1) self.stuff2 = int(stuff2)
Checkout CS50. It's free and should help with the basics, even if it does use Python rather than C#. As I said before - the concepts are transferable. You need to learn more than just "syntax".
Programming can be hard at first. Don't be discouraged if you find it confusing or if you need to start with very simple things. There is a lot to learn so keep your expectations low, and feel free to return and ask questions. And if you're comfortable using AI you can use it to explain concepts and code rather than just having it spit out solutions. It's usually pretty good for this since there is a lot of material on the internet for it to have learned from.