Live data from Hacker News

How I learned to code in my 30s

medium.com

121–130 of 208 posts

Re: How I learned to code in my 30s

#121
post #102
post #87

Earlier quoted context omitted.

Sean Smith's story is so inspiring. It teaches us that if you can afford to work unpaid for 7+ hours per day, 50+ hours per week for a whole year and move to one of the most expensive cities in the world without a job, then you can truly achieve anything.

You forgot the /s, but it's pretty obvious;)

What is /s?

Re: How I learned to code in my 30s

#124
post #42

I started to learn to code last November at 37yo. About 30 hours a week for two months I finished the Front End Certificate from freeCodeCamp (highly recommend the site for starters). Then I decided it was better to build my own projects with the tech I wanted to learn (mostly React) using official documentation and tutorials. This is what I accomplished in around 3 months: www.rodrigo-pontes.glitch.me Then I started…

I've been clicking on your 'hacker news best comments' button for like twenty minutes now... you weren't kidding when you said 'basically a time waster' :P Seriously, really good looking stuff for your early projects! I'm not surprised someone picked you up :) http://www.opusnota.com/hnbc

Really addicting! Thanks for a great time-killer!

Re: How I learned to code in my 30s

#125

I also learned to code after 30. At some point Excel and Origin weren't dealing well with ever increasing data sizes in my field (biology). I did an intro course on Python (2) of 3 days (basic Python and some Numpy). Back on the job I immediatly switched to Python 3, learned about Jupyter and was lucky enough to have a job where I could take time to learn (although it doesn't take much time to get back up to Excel/Or…

Would you know, or can recommend, any good datasets (or practice exercises) using "Jupyter/Python/NumPy/Pandas/Seaborn" for someone with a similar Excel background (and basic understanding of Jupyter/Python/Pandas)?

Seaborn has a standard data set (now that I searched it, it is part of scikit I think) [0], however, I think what made learning fast is that I used the same type of data as I did before and had a clear goal. Excel sheets are easily loaded into pandas:

    import pandas as pd
    file = pd.read_xlsx('some_excel_file.xlsx')
    file # Just typing this will display the file as a table in jupyter, after ctrl-enter to execute the code block
To plot:

    import seaborn as sns
    %matplotlib inline # This makes the plot appear in the notebook instead of in a separate window
    sns.violinplot(file)
Boom, that is it (assuming the Excel file is a number of columns with labels as the top row).

[0] http://scikit-learn.org/stable/auto_examples/datasets/plot_i...

Re: How I learned to code in my 30s

#126

I've been programming for 13 years. I started when I was 14 years old and studied software engineering at university. These days, when I take on well-paid contract work, sometimes I find myself working alongside people who only started learning to code at around 25 and never went to university. It's upsetting for me to think of all the fun I missed out on in my early life because I was learning programming and pushin…

Nice to see the hacker ethos is still alive and well.

Re: How I learned to code in my 30s

#127
post #42

I started to learn to code last November at 37yo. About 30 hours a week for two months I finished the Front End Certificate from freeCodeCamp (highly recommend the site for starters). Then I decided it was better to build my own projects with the tech I wanted to learn (mostly React) using official documentation and tutorials. This is what I accomplished in around 3 months: www.rodrigo-pontes.glitch.me Then I started…

Congratulations! This is awesome

> but I know the rough part is only starting

Yes and no. Getting the first job is a huge hurdle, you actually have overcome probably the most difficult challenge of the early years of your dev career, so well done.

Of course, the challenges keep coming, and quickly, but from here on it will look much more like a (possibly rather steep ;-) upward curve wrt time rather than a huge cliff (hobby projects/qualifications -> first job).

So long as you're expecting and prepared for that, which you clearly are, you're now in much more of a position to control your own success, which in relative terms is actually a lot easier, less stressful, and even fun!

Re: How I learned to code in my 30s

#128

Earlier quoted context omitted.

It looks like you've learned a lot, but a lot of people are going to criticize you based off your design skills. Frankly, it's ugly so you're automatically not going to be doing any product work. If you could clean up your demos to look more acceptable to the modern day reviewer, I think you would have better presented yourself.

This is constructive and honest opinion. Why downvote?

Exactly. There's this poisonous atmosphere in HN that dislikes criticizing honestly. In fact, throw in some compliments and you'll get a zillion upvotes. But complain about something, and fear getting banned...

Re: How I learned to code in my 30s

#129
post #66
post #42

I started to learn to code last November at 37yo. About 30 hours a week for two months I finished the Front End Certificate from freeCodeCamp (highly recommend the site for starters). Then I decided it was better to build my own projects with the tech I wanted to learn (mostly React) using official documentation and tutorials. This is what I accomplished in around 3 months: www.rodrigo-pontes.glitch.me Then I started…

Champion! May I ask, what was your background prior to moving into coding? A different technical field or trade?

I graduated in Economics. The first ~7 years of my career was at non-profit organizations (as project manager and fundraiser). Then I went to the startup world, one year as a startup founder, two years working with growth marketing at another startup.

But I always had a good mind for logic and analytical stuff, I think it helps a lot.

Re: How I learned to code in my 30s

#130
post #42

I started to learn to code last November at 37yo. About 30 hours a week for two months I finished the Front End Certificate from freeCodeCamp (highly recommend the site for starters). Then I decided it was better to build my own projects with the tech I wanted to learn (mostly React) using official documentation and tutorials. This is what I accomplished in around 3 months: www.rodrigo-pontes.glitch.me Then I started…

It looks like you've learned a lot, but a lot of people are going to criticize you based off your design skills. Frankly, it's ugly so you're automatically not going to be doing any product work. If you could clean up your demos to look more acceptable to the modern day reviewer, I think you would have better presented yourself.

I considered using a common framework, but I wanted to create some design from scratch. I know it is not good for some people, but I think it added to my skills doing that way. Someday I will try to improve it, but still using my own ideias, to see if it gets better. But with the job now and all I have to learn, it is not a priority.

If I were to create a product, I wouldn't try to be creative. I would just use some modern CSS framework.

Post reply on HN