Hacker News new | ask | show | jobs
Side Project: Job Search Board – Ideas Needed
1 points by qsmrf 2317 days ago
Hello folks, hope you are well. I am looking to build a simple job search board with minimum functionality search as CRUD and search. However, in order to spruce it up - I would like your guy's opinion on what more I can add to the job board that would be considered a great feature + would allow me to learn/implement something new along the way.

I am trying to do this in ASP.NET btw.

1 comments

CRUD typically implies using a relational model. Job listings tend to be unstandardized. A document model is probably more suited. This means search rather than query with the significant advantage of less data wrangling. Good luck.