hcm | 7 months ago | on: Show HN: Apple Health MCP Server
hcm's comments
hcm | 1 year ago | on: The Joy of Nand2Tetris
A big part of the joy came from making up my own extra credit side quests: implementing a compile-to-WASM emulator for the hack machine, adding optimisations to the compiler to produce smaller and/or faster programs, etc.
hcm | 2 years ago | on: Ask HN: Could you share your personal blog here?
hcm | 3 years ago | on: Making a Go program faster with a one-character change
hcm | 3 years ago | on: Making a Go program faster with a one-character change
hcm | 3 years ago | on: How stdbuf works
hcm | 6 years ago | on: Show HN: Search code in GitHub repos using regular expressions
hcm | 6 years ago | on: Dependabot is joining GitHub
hcm | 6 years ago | on: Dependabot is joining GitHub
hcm | 10 years ago | on: Postgres Job Queues and Failure by MVCC
We're super cautious about long-running transactions anyway, as they cause a load of other issues (e.g. http://www.databasesoup.com/2013/11/alter-table-and-downtime... - full blog post coming soon!)
hcm | 11 years ago | on: Runnable – jsfiddle for everything
hcm | 12 years ago | on: Ask HN: Who is hiring? (March 2014)
We're a fast-growing online payments startup that makes it really simple to collect money with Direct Debit. We've been around for 2 and half years, and are now a team of 25. We're backed by a bunch of top-tier investors (inc. Y Combinator, Accel, Balderton), pay very competitive salaries, and will shortly be moving in to a shiny new office.
We're looking to hire senior software developers to work on our core product, and web operations engineers to scale & manage our infrastructure. We've got lots of interesting challenges to solve this year: building the next generation of our product to handle the growth we're seeing, finding more intelligent ways to fraud-assess our merchants and customers, expanding what we do to work internationally (we're already beta-testing a European expansion).
There's plenty more information at https://gocardless.com/jobs. If you're interested in finding out more, email me at [email protected].
hcm | 12 years ago | on: Ask HN: What are you working on and why is it cool?
It's built on Docker. I posted an article about how I built it here: http://hmarr.com/2013/oct/16/codecube-runnable-gists/
The source is up on GitHub at https://github.com/hmarr/codecube
hcm | 12 years ago | on: CodeCube: Docker-powered Runnable Gists
hcm | 12 years ago | on: CodeCube: Docker-powered Runnable Gists
hcm | 12 years ago | on: Resque Bus
hcm | 12 years ago | on: Hutch: Inter-Service Communication with RabbitMQ
hcm | 12 years ago | on: Hutch: Inter-Service Communication with RabbitMQ
Totally agree with your last paragraph, introducing a message queue has solved a lot of problems for us.
hcm | 13 years ago | on: Squash
The Ruby support in Sentry currently isn't quite as good as the Python support, but it's not bad at all, and constantly improving.
hcm | 13 years ago | on: Rubies and Bundles - switching from RVM to rbenv
I don't want to get in to the rbenv vs RVM debate - they're both good tools and it's an issue that has been done to death. I linked to five articles in the post, and you can find many, many more with a simple Google. My personal motivation for switching was that bundler's overridden 'cd' function includes some commands that fail, which is fine under most circumstances but it breaks as soon as you use 'set -e' in bash. We spoke to the author and he said he said that RVM wouldn't be 'set -e' compatible in the foreseeable future.
For getting Apple Health data into duckdb, I’ve used this in the past: https://github.com/dogsheep/healthkit-to-sqlite. (You can load the SQLite database directly in duckdb.)