Hacker Newsnew | past | comments | ask | show | jobs | submit | alch-'s commentslogin

Man, how did I get by for so long without this. Brilliant. I'd like to have the whole web in this tone please, thanks in advance!


Channable | Utrecht, Netherlands | HYBRID / ONSITE | https://jobs.channable.com/working-at-channable

Join one of the fastest growing scale-ups in the Netherlands. We have several open engineering positions to join our team in Utrecht. We are a young company with a strong engineering culture and some unique data problems, which we are solving for our customers.

You can read more about our work on our tech blog: https://www.channable.com/tech

Our stack includes: Python, Haskell, Rust, PostgreSQL, Redis, Nix, Terraform, Nomad, Ansible

We process over 100 billion products per day and offer technically interesting and challenging work. We are looking for highly motivated and skilled engineers to join our team.

Open positions:

- Python Software Engineer, team Marketplaces: develop our API and integrations with marketplaces - https://jobs.channable.com/o/python-software-engineer-market...

- Haskell Software Engineer: develop highly scalable backend services - https://jobs.channable.com/o/haskell-software-engineer-5


would you be able to visa sponsor?


Unfortunately that depends on the level you would be hired at, because of immigration law intricacies. I would just apply and see how it goes!


Channable | Utrecht, Netherlands | HYBRID / ONSITE | https://jobs.channable.com/working-at-channable

Join one of the fastest growing scale-ups in the Netherlands. We have several open engineering positions to join our team in Utrecht. We are a young company with a strong engineering culture and some unique data problems, which we are solving for our customers.

You can read more about our work on our tech blog: https://www.channable.com/tech

Our stack includes: Python, Haskell, Rust, PostgreSQL, Redis, Nix, Terraform, Nomad, Ansible

We process over 100 billion products per day and offer technically interesting and challenging work. We are looking for highly motivated and skilled engineers to join our team.

Open positions:

- Python Software Engineer, team Marketplaces: develop our API and integrations with marketplaces - https://jobs.channable.com/o/python-software-engineer-market...

- Haskell Software Engineer: develop highly scalable backend services - https://jobs.channable.com/o/haskell-software-engineer-5


Channable | Utrecht, Netherlands | HYBRID / ONSITE | https://jobs.channable.com/working-at-channable

Join one of the fastest growing scale-ups in the Netherlands. We have several open engineering positions to join our team in Utrecht. We are a young company with a strong engineering culture and some unique data problems, which we are solving for our customers.

You can read more about our work on our tech blog: https://www.channable.com/tech

Our stack includes: Python, Haskell, Rust, PostgreSQL, Redis, Nix, Terraform, Nomad, Ansible

We process over 100 billion products per day and offer technically interesting and challenging work. We are looking for highly motivated and skilled engineers to join our team.

Open positions:

- Python Software Engineer, team Infra: improve our codebase's maintainability, performance and robustness - https://jobs.channable.com/o/python-software-engineer-python...

- Python Software Engineer, team Marketplaces: develop our integrations with marketplace platforms - https://jobs.channable.com/o/python-software-engineer-market...

- Full-stack Software Engineer, team Growth: improve user activation and retantion - https://jobs.channable.com/o/full-stack-software-engineer

- Haskell Software Engineer: develop highly scalable backend services - https://jobs.channable.com/o/haskell-software-engineer-2-3

- DevOps Engineer, team DevEx: make our software engineering frictionless - https://jobs.channable.com/o/devopsdevex-engineer


Channable | Utrecht, Netherlands | HYBRID / ONSITE | https://jobs.channable.com/working-at-channable

Join one of the fastest growing scale-ups in the Netherlands. We have several open engineering positions to join our team in Utrecht. We are a young company with a strong engineering culture and some unique data problems, which we are solving for our customers.

You can read more about our work on our tech blog: https://www.channable.com/tech

Our stack includes: Python, Haskell, Rust, PostgreSQL, Redis, Nix, Terraform, Nomad, Ansible

We process over 100 billion products per day and offer technically interesting and challenging work. We are looking for highly motivated and skilled engineers to join our team.

Open positions:

- Python Software Engineer, team Infra: improve our codebase's maintainability, performance and robustness - https://jobs.channable.com/o/python-software-engineer-python...

- Python Software Engineer, team Marketplaces: develop our integrations with marketplace platforms - https://jobs.channable.com/o/python-software-engineer-market...

- Haskell Software Engineer: develop highly scalable backend services - https://jobs.channable.com/o/haskell-software-engineer-2-3

- DevOps Engineer, team DevEx: make our software engineering frictionless - https://jobs.channable.com/o/devopsdevex-engineer


Are you all flexible on not having a work permit? I am a US citizen actively seeking to relocate to NL, but do not have a visa yet.


I'm afraid I don't have a clueful answer to this right now because the people who know are on vacation this week. In general we require candidates to have a work permit, but we may we able to make exceptions for what the immigration office calls "highly skilled migrants", i.e. if your salary would be above a certain threshold: https://ind.nl/en/required-amounts-income-requirements#reduc...

If you're interested, I would suggest filling out the application form and we'll get back to you asap with a proper answer.


I was able to check now, and indeed we can make exceptions for candidates who would earn enough to be qualified as a "highly skilled migrant". So I would definitely just apply and see how it goes.


are you willing to hire fully remotely for the Haskell position within CET?


Sorry, no, we work hybrid / on-site (at the office for at least 2 days a week).


I mean, Boeing is still around...


Oooooh decades later I finally get the name Slashdot! Thank you!


Ha, same here.


I'm very happy with my system: I have ~/tmp/ with subdirs `hour`, `day`, `week`, `month`, `6months`, `2years`. Files in each of these get removed by a cronjob x time after they were created/modified (i.e. after an hour; a day; etc).

  */10 * * * * /usr/bin/find ~/tmp/hour/ -mindepth 1 -mmin +60 -cmin +60 -delete
  0    * * * * /usr/bin/find ~/tmp/day/ -mindepth 1 -mmin +1440 -cmin +1440 -delete
  # etc
Files in ~/Downloads/ are deleted in the same way, after 2 hours. If I download something that I want to keep "forever", I move it to where it belongs. Anything that is not "forever" goes into one of the ~/tmp/ subdirs (with a useful filename so I can trivially find it when I need it). You get into the habit of moving things out of ~/Downloads/ very quickly, and it's not very painful: downloaded things can almost always be re-downloaded if you forgot to move them.

I used to have another (crude) cronjob to warn me before deleting files:

  0 21 * * * (/usr/bin/find /Users/me/tmp/week/ -mindepth 1 -mtime +5 -ctime +5; /usr/bin/find /Users/me/tmp/month/ -mindepth 1 -mtime +28 -ctime +28; /usr/bin/find /Users/me/tmp/6months/ -mindepth 1 -mtime +183 -ctime +183) | /usr/bin/sed 's/^.Users.me.tmp.//g' | /usr/bin/mail -E -s "will delete some ~/tmp files soon" me@domain
... but I found it unnecessary. In practice, I just take some margin in deciding where to put things. If I think I'll need it for max a week, I'll put it in tmp/month to be on the safe side, etc. And worst case, I can just retrieve it from my backups.

I can't recommend a system like this enough. It feels like "inbox zero" for your filesystem; very liberating.


> I'd use it

I think you mean "leverage".


If you like `python3 -c ...`, you'll love Bash ¯\_(ツ)_/¯


Eh, no thanks.


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: