this post was submitted on 16 Jan 2025
49 points (100.0% liked)

Programming

17832 readers
110 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
 

I'm currently working on a project in C where I have a choice between using a library for hash tables or simply creating my own hash table from scratch.

What would look better on a Github portfolio from an employability perspective?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 8 points 1 day ago (1 children)

Personally (as a dev), I wouldn't particularly care that you know a specific library (the chance of us using the exact same library is pretty slim and will probably change when the project changes). But I would care to see that you are using a library when it makes sense.

So, if you implemented a hashtable yourself and I spotted that, I'd remember that as you either not knowing that that's called a "hashtable", so you didn't find a library for it. Or I might think that you're potentially stuck-up, thinking you can do a better job implementing it yourself.

The aspects I'd look for, starting with the most important:

  1. Does it seem like you have fun when programming?
    I don't need you to be writing humorous commit messages, but if it looks like you just specifically coded some portfolio applications three years ago and then never touched them again, that wouldn't leave a good impression on me.
  2. Do your projects fulfill an actual need and look like they've seen real-world use?
    Writing out some example applications is a whole different shtick than actually making it work in the real-world.
  3. Do you have unit tests? Is your commit log clean? Is your project reasonably documented?
    I can teach technologies and architecture, but it's much harder to teach a drive for good code quality.
[–] Feyd 1 points 9 hours ago (1 children)

I'd think it's just as likely they reinvented a wheel for fun/learning if I'm looking at a personal project... I also don't judge hobby projects for absence of unit tests.

I have used those topics as discussion points after looking at code someone volunteered as it can be very enlightening, but to hold hobby code to a professional standard is kind of nuts tbh.

[–] [email protected] 1 points 8 hours ago

I'm not expecting insane test coverage. What I'm looking for, is that they've understood that writing tests makes their (future) life easier, too. A hobby project can benefit from that just as well. I'd argue almost even more so, because you might be working on a feature over the course of several weekends, where you'll benefit from having written down the intended behavior at the start.