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] 2 points 1 day ago

Ah the project was just an excuse to familiarise myself with low-level network code. It's basically just a simple TUI app that takes a list from a popular comics podcast website and allows the user to locally track the comics they've read then update the list when the a new podcast comes out adding additional comics to the list.

I could have done the project in a quarter of the time in Python. But I wanted to get a strong foundation in low-level socket programming, network protocols, TLS and HTML parsing. I suppose on some level I'm just interested in those things.

That said, you probably have a point. Maybe I should just look into Rust and Go. I've had some fun with the latter.