Show HN: BigOofN – job board from the perspective of software engineers
1–10 of 54 posts
Re: Show HN: BigOofN – job board from the perspective of software engineers
#2Re: Show HN: BigOofN – job board from the perspective of software engineers
#3Where are you finding these jobs? Are you scraping something?
Re: Show HN: BigOofN – job board from the perspective of software engineers
#4But I also feel that we're at maximum capacity for aggregated job boards. We see a new one posted on here every week. So even though I like this better than many of the others I've seen, the job board market has exploded to the point of absurdity, so I'm not sure what to make of them all.
Re: Show HN: BigOofN – job board from the perspective of software engineers
#5I do like the simplicity of the design, and the filters by type of company. But I also feel that we're at maximum capacity for aggregated job boards. We see a new one posted on here every week. So even though I like this better than many of the others I've seen, the job board market has exploded to the point of absurdity, so I'm not sure what to make of them all.
Re: Show HN: BigOofN – job board from the perspective of software engineers
#6Re: Show HN: BigOofN – job board from the perspective of software engineers
#7Also. I love the clean and simple design.
If there is one tweak I would make I would add a simple badge to the company name like you see here for the 'Developers' tag:
https://www.webase.com/website-gallery
All the best!
Re: Show HN: BigOofN – job board from the perspective of software engineers
#8Love the design and simplicity of it! Are you using any APIs? I ask because if you can add info on the date it was posted that could be useful information to display as well.
Re: Show HN: BigOofN – job board from the perspective of software engineers
#9Ok. First off I love the name. Fantastic. Also. I love the clean and simple design. If there is one tweak I would make I would add a simple badge to the company name like you see here for the 'Developers' tag: https://www.webase.com/website-gallery All the best!
Re: Show HN: BigOofN – job board from the perspective of software engineers
#10Also when typing in a filter for the location name, the site stutters. This is probably because the JS is trying to filter the whole list on each keypress. You could implement a slight delay before starting a search. I've previously implemented something similar by restarting a timer (clearTimeout + setTimeout) each keypress. Once the setTimeout actually executes (in my case after 200 ms) OR the user hits the enter key, the state is updated and the filter search is performed using the current value of the text input. I've found this to be a great solution for responsiveness.