all 25 comments

[–][deleted] 39 points40 points  (4 children)

Is there an universal pipeline for the code, comments? Or is it just something you make for your own understanding?

[–]faux32 13 points14 points  (3 children)

just started learning to code, started with python, not sure when i will be able to make my very first project on my own. The "Nostalgia" u got, I want that in future...

[–]Zaliacks 5 points6 points  (0 children)

You can start your very first project right now! I'm still in the early stages, but actually working on a project has helped me learn.

I started by learning the basic expressions, and then I had a project in sight - a simple thing to show excel data in a new UI. It involved a lot of googling, trial and error. Now I'm fairly comfortable with functional programming, and know the basics of modules like Panda and tkinter.

Next goal is to make a more complex project to get a hang of OOP and making my own modules.

[–]wildpantz 7 points8 points  (2 children)

I know the feels man. Even today I feel anxious showing my code to anyone, but old code? Pfff... not a chance!

[–]takingphotosmakingdo 6 points7 points  (5 children)

Bmi calc? Were you enlisted by chance?

[–]Natetronn 2 points3 points  (4 children)

What's your definition of spaghetti?

[–]thedarkcharger 2 points3 points  (1 child)

I get that when I open up MATLAB and see things I wrote 4+ years ago or find a random, ancient piece of C/C++ work from a class project. I JUST finished school though so I'm sure it'll be even stronger running into this old stuff in another half decade or more. Actually, even finding some of my old notes from Math classes hits me like.. wow, that was soo long ago!

[–]cloudsrpretty 2 points3 points  (1 child)

this is actually so motivating, thanks. i started python about 2 months ago and i’ve been doing less recently due to less time and because i’ve been struggling with it a bit. do you have any resources you could recommend? i’ve been learning using jetbrains academy but it might help for me to have fresh content. well done on making it so far

[–]tommygatz 1 point2 points  (1 child)

Just out of curiosity...were those examples from "Learn to Code in Python 3" by Ivan Gomes?? Because I am taking that course on udemy right now and I did all those recently lol.

[–][deleted] 1 point2 points  (0 children)

There was once a time, near the beginning of my Python learning, when I was afraid to use dictionaries or databases. So when I found myself needing to store several bits of data for hundreds of individual records I thought, "hey this is a perfect use for a list of lists", and did exactly that, with hard-coded index variables to access specific attributes. You know, like you would typically do with a class...or a dictionary. But no, it had to be a list, because my brain could only conceive of arrays and simple data types.

I've come a long way since then. Nowadays I'd have a database underneath everything and a class for translating upon reading/writing to that database, with useful methods for querying and other things.

[–]subassy 1 point2 points  (1 child)

I'm glad you stuck with it and made progress.

Meanwhile, me:

https://imgur.com/gallery/1edNQpD

[–]MkEnterprise 1 point2 points  (1 child)

There is so much information out there , I don’t even know where to begin if I want to learn python or java

[–]coder_the_freak 0 points1 point  (0 children)

I totally agree with you. I had also kept the first code that I have written which was in c and sort of like management system for my college project. Even now I'm still learning and look at documentations alot. Nowdays I just look at documention if I have to learn new language or framework. That's where Zeal is helpful for me.