this post was submitted on 13 Jun 2023
11 points (100.0% liked)

Experienced Devs

3956 readers
1 users here now

A community for discussion amongst professional software developers.

Posts should be relevant to those well into their careers.

For those looking to break into the industry, are hustling for their first job, or have just started their career and are looking for advice, check out:

founded 1 year ago
MODERATORS
 

What are some of your recommendations for books, videos, podcasts, or any other media that inspire and spark more passion for programming and computer science in general? I'm interested in hearing how these resources have helped you grow as a programmer.

top 10 comments
sorted by: hot top controversial new old
[–] mdhughes@lemmy.ml 5 points 1 year ago* (last edited 1 year ago) (1 children)
  • The Pragmatic Programmer, by Andrew Hunt & David Thomas: How to not suck at programming.
  • Algorithms, by Robert Sedgewick: Stick to the early C or Pascal editions, later ones are full of language-specific Java, etc. distractions.
  • Programming Pearls, by Jon Bentley: Short snippets of how to design & optimize.
  • SICP: Just do every exercise, take it seriously, you'll learn super powers. Watching the lecture videos alongside is helpful, but the book and problem sets are mandatory.
  • BASIC Computer Games, by David H. Ahl: The type-in listings are fairly hard to read & understand to newbies now, I suspect, but it's still the master class in how to decompose gameplay problems into low-level programming.

Videos and podcasts won't help you, they're pleasant noise but you learn to program by programming, by taking a problem and solving it.

[–] binwiederhier@discuss.ntfy.sh 5 points 1 year ago* (last edited 1 year ago) (1 children)

I know you specifically asked for books, videos and podcasts, but I have actually personally never found any books, videos or podcasts I tried super inspiring or helpful. The only thing I have done on occasion is to use Pluralsight courses to learn a particular language or platform really fast (Android development, React, ...).

What I can really recommend though is to just read Hacker News and get inspired by what other people do. I find only about 10% or so actually interesting, but there's always something fascinating.

Aside from that, I learned most of my programming knowledge (not necessarily engineering knowledge) from side projects. For about a year now I have worked on a push notification service called ntfy that truly fulfills me, and that forces me to constantly learn new things.

[–] sisyphean@programming.dev 2 points 1 year ago

Your app is really impressive and something I've been explicitly looking for in the last couple of days. Installed!

[–] sisyphean@programming.dev 3 points 1 year ago* (last edited 1 year ago)

The videos on The Coding Train YouTube channel reignited my passion for programming about 3 years ago. I was very burnt out and cynical at that time. I highly recommend them, they are all super interesting projects with elegant, minimal code producing highly complicated results, by a wonderfully enthusiastic and silly guy who is impossible not to like.

[–] l3mming@lemmy.fmhy.ml 3 points 1 year ago* (last edited 1 year ago)

Jumping in to right a wrong. Nobody has mentioned Sebastian Lague on youtube. His programming demos are sheer magic and joy. He's like the European Bob Ross of programming.

edit: https://youtube.com/channel/UCmtyQOKKmrMVaKuRXz02jbQ

[–] funbike@programming.dev 2 points 1 year ago

I found TDD make programming more fun because it results in less debugging. Debugging can be frustrating and depressing when you get stuck.

I've found ChatGPT makes coding more fun, as I don't get stuck as often on hard problems and it can generate boilerplate quick than I can.

Watch videos by Primeagen on Twitch and YT. He's very high energy. Although successful, He has also struggled with depression, drugs, and ADHD in his past, which might be helpful to you. It's inspiring.

[–] LiquidityC@programming.dev 2 points 1 year ago

computerenhance.com, Rust, C and switching clients at work

[–] tonkaTruck@programming.dev 2 points 1 year ago* (last edited 1 year ago)

IMO, my passion stems from helping others. Romanticizing it, it's literally part of the first sentence in the Agile Manifesto:

We are uncovering better ways of developing software by doing it and helping others do it.

So with that, my passion is finding ways to help:

  • At university where I'd try to help by forming study groups and going over material or debug sessions for larger projects.

  • At work asking my lead/manager/seniors what pain points they're facing and trying to figure out a way to fix/own that issue.

  • Spending time to check in with other engineers on my team and asking them how they're doing.

  • Volunteering as a mentor for various Employee Resource Groups (or whatever your company might call them).

Maybe some of this is mental gymnastics for my brain, but by having more personal time with others it helps me feel like I'm actually driving an impact. Programming is a means to an end for me. The "drive" that stems from wanting to help has been far more powerful than any sort of "puzzle" that is some programming/architecture work.

This could also be my many years as part of the Scouting program and "helping other people at all times" ...


IDK if that was what you were wanting to hear, but it might give you a slightly different perspective. Regardless if this was helpful, best of luck.


Edit:

If you really push me to give you a book of sorts ...

https://quii.gitbook.io/learn-go-with-tests/

You don't have to fully drink the Test Driven Development koolaid in your day to day life ... but working through this book, it gives you an appreciation for how following good Design Patterns can make testing oh so much easier.

Plus, IMO, good code is easy to test. Easy to test code is less risky. Less risky code helps me not get called a 2am with a prod incident. Getting 8 hours a sleep is something I value very highly.

[–] JackbyDev@programming.dev 1 points 1 year ago

Context, I am a full time professional developer with about 8 years of job experience.

I generally do not get motivated to study during my off hours. I tend to do what I want to do. I (used to) browse r/programming and every now and then an article would catch my eye. This sounds dorky as hell but sometimes I read technical documentation to help me fall asleep (can be very hot or miss though).

The few side projects I have carried to what I'd call completion have been related to things I was interested in apart from programming that I wanted to pursue. Without fail, everytime I look for inspirational ideas of things to make I have lost interest immediately. Recently I played through Breath of the Wild and was annoyed by all the armor trackers online so I made a super bare bones one I wanted to use. I learned some frontend stuff doing it. A year ago I built an irrigation controller for my yard. (This was a waste of money and effort though and I can't say I enjoyed the process but I did still learn from it lol.)

The moral of the story is have your eyes open to gaps in your everyday life. Ask yourself "could I make that?" Give it a go and see. Give it a good weekend's worth of effort and see what you get. Usually I can dedicate about 2 days to something before losing interest so I try to keep it as minimal as possible. Start small. Super small. The smaller the better. Willingly accept that it will be shitty. In fact, try to make it shitty so you don't get discouraged by it not being perfect. I get hung up a lot on how to make things perfect from the start. Intentionally making it imperfect helps me get over that.

load more comments
view more: next ›