[help] Learning to code

I’ve been wanting to learn how to code for a while so I figure now is as good a time as any to start. I downloaded VS code on my laptop for python but I don’t really know end product I should try to code and I also am just bad and barely know what I’m doing. Does anyone here have any advice on what to code and how best to learn?

ImpossibleRubiksCube,

I suggest grabbing a basic project book for Python and working from there.

RAM_DOS, (edited )

I’m still learning but what got me hooked (and still hooks me) is finding tasks that I would like to make easier for myself (changing file names, outputting a simple but interesting data analysis to a file), general amusement (creating a list of curse words and the looping through the list and printing f strings with them), visualizing data. Keep it really simple. I would recommend messing around with little projects, googling how to do stuff but absolutely intersperse that with taking the time to learn why things are doing what they are or how they are doing it.

ruffsl,
@ruffsl@programming.dev avatar

Also, be sure to checkout this community: !learn_programming

Mischala,

I would go for something simple ish and build from there.

One thing I used to build every time I was learning a new language was a dice roller for DnD. It had to be able to roll a d4 d6 d8 d10 d20 and percentile.
You can then expand it to do combinations or formula of dice like “roll 4 d6 and sum the highest 3”

Only a suggestion, good luck and welcome.

suburBeebiTcH,

Heres a totally awesome mega list of programming resources put together by someone on github, been my go-to rec for a while

ShaunaTheDead,
ShaunaTheDead avatar

Free Code Camp is pretty great. It's mostly JavaScript and web-based stuff if that interests you.

troye888,

Back in the day before university (around 6 years ago) I got recommended a mooc(massive open online course) by the university of Helsinki. I used this course to get started with learning to program, and to find out whether it was something for me. It has been some time, and it seems they update the course but I hope it can help you too in learning. Here is the link: https://java-programming.mooc.fi/. It really starts from 0, with setting up te environment which is nice. It is in java using the netbeans ide which some would call antique, but in my opinion that does not really matter to start to learn.

ericjmorey,
@ericjmorey@programming.dev avatar
troye888,

Those certainly also look nice, did not notice those

Yoruio,

All the suggestions here are good for a complete beginner with no knowledge of coding, but I wanted to just add that once you get some experience and are more confident with your google-fu, I would suggest looking at the problem from the other side, and look for things you want to improve in your life first, and find ways to do that with code, rather than the other way around. It will help you stay more engaged with your project, and you’ll retain more knowledge.

i.e. I hate guessing which parking lots around my school / office / apartment are full every day -> make a web scraper that scrapes parking lot occupancy and compiles it all in one place

or

I keep forgetting to water my plants -> hook up a raspberry pi to a solenoid, and code up something to water the plants for you

I’ve found that to be a much better approach than going the opposite direction

i.e.

I need to learn how to write embedded code -> write an Arduino control loop that keeps dog bowl topped up.

14th_cylon,

this might be what you are looking for. you get complete course - lessons, homework, and environment to upload to and evaluate these homeworks. work at your own pace.


pll.harvard.edu/…/cs50-introduction-computer-scie…

Course description

This is CS50x , Harvard University’s introduction to the intellectual enterprises of computer science and the art of programming for majors and non-majors alike, with or without prior programming experience. An entry-level course taught by David J. Malan, CS50x teaches students how to think algorithmically and solve problems efficiently. Topics include abstraction, algorithms, data structures, encapsulation, resource management, security, software engineering, and web development. Languages include C, Python, SQL, and JavaScript plus CSS and HTML. Problem sets inspired by real-world domains of biology, cryptography, finance, forensics, and gaming. The on-campus version of CS50x , CS50, is Harvard’s largest course.

Students who earn a satisfactory score on 9 problem sets (i.e., programming assignments) and a final project are eligible for a certificate. This is a self-paced course–you may take CS50x on your own schedule.

TerribleJokes,

That course looks amazing! I’m definitely going to try to find some time to start that soon and learn a lot more!

Max_P,
@Max_P@lemmy.max-p.me avatar

Been coding for 17 years, started when I was 13. A few advices in no particular order:

  • Don’t let yourself get demotivated. It can take a while before it clicks and you feel like a real programmer. That’s fine! My fiancée is coming up to 3-4 years, and she’s barely starting to feel competent at her job. Stuff is hard, and the people you see online with massively deep knowledge has been at it for a really long time, or at the very least, has a lot of experience coming up to that.
  • Code quality is important, design patterns are important. But what’s more important is coming up with something that works: don’t get demotivated by people telling you your code is bad. Take the advice, consider the improvements, learn about the value of said improvements. But getting a project working, even if it’s horribly slow, even if it doesn’t work well, is a success. You made a thing, and it works! Celebrate the victory!
  • It’s very easy to become overwhelmed by the size of a task. Take a deep breath and deal with things one step at a time. Everytime you’re stuck, try to divide up the problem into smaller and smaller steps until you figure it out.
  • Try to work on projects that are fun for you. If you’re not into gaming, don’t make a game, even though it’s a good starting point. Try to find small utilities you wish you had, and make programs to help you with those tasks. It helps feeling rewarded for your efforts rather than feel like you’ve completed a throwaway project for the sake of learning. I got into this because I wanted a website, and so I learned how people make websites. If games are your thing, there’s nothing wrong with starting with something like Godot or Unity or some other free game engine. Heck, if you’re having troubles with a spreadsheet, learn how to make Excel macros.
  • Most programming concepts are portable between languages. Everything related to algorithms, how you approach problem solving, will work mostly the same in other languages.
    • If you feel like you just don’t vibe with a language, it’s worth trying another one for the sake of trying. Establish parallels between them, learn the differences and how it makes you feel about your development experience.
  • If you get overwhelmed and don’t go anywhere, don’t give up. Allow yourself to take breaks, come back to it later. Go at it at your own pace. Having fun makes it a lot less of a chore.
  • Another good way to start is by modifying other people’s code for your needs. Got an open-source software you like but you’d like to switch things around, even just for fun? Figure out how to compile it, make some changes. Observe how it’s made and take inspiration from that.

Also, there’s embedded programming languages in a lot of things. Many games come with embedded languages to do things, often called “scripts”. Heck, for just dicking around, you could install ComputerCraft for Minecraft, and automate some stuff in-game with the turtles. I’ve seen a fair amount of people get into coding that way: start with just simple things and you’ll find yourself wanting more.

Did I mention, try to have fun?

TerribleJokes,

Wow thank you for all the suggestions! My friend taught me some of the basics a few months ago but I got busy and had to stop coding for a bit but I still remember quite a bit of what he showed me but again that’s mostly the very beginner functions. I’m a big fan of fighting games, so would unity be good for potentially making one of those?

Max_P,
@Max_P@lemmy.max-p.me avatar

I’m a big fan of fighting games, so would unity be good for potentially making one of those?

Unity, Godot, SDL, there’s some pretty good Python game libraries as well especially if you’re going for 2D. They’re all pretty good options, as long as it’s easy for you to find documentation and code for. Unity’s a little heavy, I’d recommend maybe starting with Python.

You also have the option of making it for Android if you want to be able to easily show it off to your friends.

Fighting game should definitely be within reach especially if you’re going for 2D like Street Fighter!

yarn,
@yarn@sopuli.xyz avatar

If you’re good with learning via books, then I would recommend Python Crash Course. It assumes you know nothing about programming and has a good reputation as a teaching resource.

ziviz,
@ziviz@lemmy.sdf.org avatar

Some of the projects that pushed my own learning were very small things to help my school or work. When I was younger I had to do 100 FOIL equations and show my work. I did not want to do that all by hand and wrote a program to do it. If you got something super repetitive but not super hard, that would be a perfect project.

beregoth,
  • Hello World
  • Read a file
  • Write a file
  • Read a file and loop through it line by line, printing each one (for loop or equivalent)
  • Program that consists of 2 or more source files

What I’m getting at is instead of a full program, write code snippets and small programs. In doing this eventually an idea for something larger will pop into your head.

groucho,
@groucho@lemmy.sdf.org avatar

Yep! And then read argv for command-line parameters + a parser. File IO + command-line controls gets you a shell of a utility to work with. Then grab a package you like the look, bring it into your project, and do something with it (image manipulation, network stuff, whatever…)

slazer2au,

This is a good start.

My latest python script loads my monthly banking CSV, arranges the columns in the correct order, assigns categories based on the merchant, and finally exports the data to a new CSV.

varsock,

I agree with this comment. Get these down then you can check this out

dbaner,

When I’m learning a new language I like to try and solve problems from sites like adventofcode.com or projecteuler.netI find this gives my learning more of a focus. After you’ve done a few of these you should have enough confidence to attempt your own projects

James,

In addition to what this guy said, don’t just use libraries to skip steps when writing small programs.

For example when parsing a file you will often use the split and strip functions in python, but learning how to implement these by yourself will teach you more.

To really learn fundamentals you should try and implement most operations yourself. It’s why in my opinion C is a better language to start with, because it forces you to learn the fundamentals.

Max_P,
@Max_P@lemmy.max-p.me avatar

I’d say it depends on the learning style. For some people, it’s a lot less demotivating to start as just plumbing libraries together to get the end result than starting from the deep end. Same debate as starting with ASM vs starting with Python.

James,

I see your point, but I would almost argue that starting out with all these shortcuts available in high level languages is ‘jumping into the deep end’ itself.

When a newbie sees obscure error messages in some of these libraries they might not have any idea what they mean or why they were triggered. My opinion is that having a smaller set of tools to start is actually simpler despite being able to do less with them.

I’m slightly biased because I started with C 😅

Max_P,
@Max_P@lemmy.max-p.me avatar

Started with C++, definitely wasn’t easy. I ended up giving up and revisiting a couple years later and PHP/HTML was a fair bit less to take. I did end up revisiting C++ and making an archive format for my game engine. These days I definitely start by the low level, even libraries I jump to the low level features/long form before going to the nicer abstractions for the sake of understanding what’s going on under the hood. It’s definitely valuable too.

Just pointing out different styles of learning exists, OP can choose whatever fits better for them. I’ve known people that good completely demoralized because it was a bit much to take to think about how big an integer is in memory and arrays and whatnot. Especially if you approach it with making games, focusing on player moment and map scrolling can be more intuitive to learn the basics and slowly migrate to lower level things. I have friends that started with 6502 or Z80 assembly (good ol’ Ti 83+ calculators) and they liked that way better because it made them appreciate what compilers really do better. Really dependent on the person.

I advocate for whatever works better for the learner, whatever makes them not give up and whatever keeps them going.

abhibeckert,

Started with C++, definitely wasn’t easy. I ended up giving up

I made it about as far as std::cout << “Hello World!”; and couldn’t figure out wtf cout was or progress from there.

Eventually, nearly a year later, I started over with a simpler language (Basic) and maybe five after that I realised my IDE just wasn’t setup right - so cout literally did nothing at all.

cerement,
@cerement@slrpnk.net avatar

start with a game?

  • All
  • Subscribed
  • Moderated
  • Favorites
  • programming@programming.dev
  • everett
  • DreamBathrooms
  • Durango
  • GTA5RPClips
  • normalnudes
  • magazineikmin
  • khanakhh
  • thenastyranch
  • rosin
  • Youngstown
  • slotface
  • InstantRegret
  • kavyap
  • ngwrru68w68
  • Leos
  • ethstaker
  • modclub
  • anitta
  • tacticalgear
  • osvaldo12
  • mdbf
  • cubers
  • megavids
  • provamag3
  • cisconetworking
  • tester
  • JUstTest
  • lostlight
  • All magazines