Please lead with the location of the position and include the keywords
REMOTE, INTERNS and/or VISA when the corresponding sort of candidate is welcome.
When remote work is not an option, please include ONSITE.
Submitters: please only post if you personally are part of the hiring company—no
recruiting firms or job boards.
Readers: please only email submitters if you personally are interested in the
job—no recruiters or sales calls.
You can also use kristopolous' nifty console script to search the posts in these threads: https://news.ycombinator.com/item?id=10313519.
I wrote a way to search these recently ... just paste this in your console: https://gist.github.com/kristopolous/19260ae54967c2219da8
There is both OR and AND support here. If you specify your function parameter as an ARRAY then it operates as an AND, otherwise each argument is an OR.
For instance, to see posts that are remote and python OR remote and ruby, you can do
query(['remote','python'],['remote','ruby']);
The return of the function shows how many jobs were shown versus in total. For instance, as of this writing, I get the following result when running the above function:
{ shown: 56, total: 827 }
It's worth noting that some people have turned this into various "web apps" ... and a few people have forked it and added more sophisticated queries ... search HN news stories for links.