Show HN: Keyword-based search for “Who's Hiring?” posts
hnhiring.evgg.cc
Show HN: Keyword-based search for “Who's Hiring?” posts
1–5 of 5 posts
Re: Show HN: Keyword-based search for “Who's Hiring?” posts
#2After getting a little frustrated trying to Ctrl-F my way through the "Who's Hiring?" posts, I decided to build an interface that would make searching by keywords less of hassle.
Examples of the two currently supported query formats are:
1) "python London intern" -> simple matching (equivalent to ANDing the words)
2) "(haskell | golang) & Berlin" -> with groupings and logical operators
The backend is built in Go with Postgres for full-text search. The source is available at https://github.com/evgorchakov/hnwh .
Please let me know what you think!
Re: Show HN: Keyword-based search for “Who's Hiring?” posts
#3SEEIICCKK
Re: Show HN: Keyword-based search for “Who's Hiring?” posts
#4Good job! I made something similar in Haskell as a CLI application... Yours is much more complete and featureful though.
Re: Show HN: Keyword-based search for “Who's Hiring?” posts
#5Good job! I made something similar in Haskell as a CLI application... Yours is much more complete and featureful though.
Thanks! I'd love to see the source of your cli app!