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

Programming

17832 readers
107 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] 21 points 1 day ago (1 children)

I've had to review resumes when we were trying to find someone else to bring on the team. My boss dumped hundreds of resumes on me and asked if any of them looked promising -- that's after going through whatever HR bullshit filters were in place -- on top of all the other work I was already behind on since we didn't have enough staff. That is the state of mind you should expect someone to be in while looking at your project.

If anyone looks at your repo, they're going to check briefly to see if you have any clue at all what you're doing and whether your code likes like it's written by the kind of person they can stand working with. Don't make any major blunders that someone would notice with a quick glance at the repository. Be prepared to talk about your project in detail and be able to explain why you made the choices you did -- you might not get asked, but if you are you should be able to justify your choices. If it gets to the point of an interview and your project looks like something that could've been done easily in 100 lines of Python you'd better believe I'm going to ask why the hell you wrote it in C in 2025... and I say that as someone who has written a significant amount of C professionally.

If you say you have multiple years of professional programming experience and send me a link to a repo that has .DS_Store in it... your resume is going straight into the trash.

[–] MadhuGururajan 5 points 20 hours ago (1 children)

send me a link to a repo that has .DS_Store in it... your resume is going straight into the trash.

What's a .DS_Store?

[–] [email protected] 5 points 18 hours ago (1 children)

It's a hidden file created by Apple devices whenever you open a folder

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

Basically desktop.ini on Windows, right?