dignati's comments

dignati | 3 years ago | on: Ask HN: How do you work with Dependabot?

> one that broke the test runner, and ignored a number of tests

That's unfortunate! For the project I'm working on, we've "solved" that by showing the number of test and the difference to the number of tests that ran on main.

FWIW, at previous jobs, upgrading Java dependencies was a major pain because they were all outdated and the latest versions introduced too many breaking changes for us. At my current job, we pretty much instantly merge all PRs from dependabot because we trust our CI. Upgrades rarely introduce problems and if they do, they are easy to fix.

dignati | 3 years ago | on: Ask HN: How do you work with Dependabot?

> What I've noticed in practice however, is that occasionally, this process will allow an upgrade to a dependency that will pass the automated build and test step, but introduce the wildest runtime error into the application. Usually at the time when we aim to deliver something.

Sounds like dependabot is very useful for uncovering insufficient test coverage or missing integration tests :)

dignati | 9 years ago | on: Specifying JSON

Do you have any data on that? We found that using transit could actually increase overall throughput because it does some minimal compression/deduplication.

dignati | 10 years ago | on: Apple Is Said to Be Working on an iPhone Even It Can’t Hack

It can be the same hardware but I believe that not usually meant with "hardware based encryption". The point is that the private keys never leave the hardware of the phone, thus making it secure. So they could employ the same hardware but the hardware does not have the necessary keys.

dignati | 10 years ago | on: Onyx 0.6.0: Going Faster

I can't tell much about it but we are using Onyx in production in a few months. Has been a real pleasure to use so far.

dignati | 11 years ago | on: American students head to Germany for free college

Not the same, CS majors in Germany have to choose one "Anwendungsfach" that consist of a subset of classes of natural-sciences, humanities or engineering majors. You have to choose one and stick with it. Also there is the "Nichttechisches Wahlpflichtfach" (probably the most german words I know) which can be a language class or mentoring first-semesters or something similar. So I feel like we get a lot of interdisciplinarity.

dignati | 11 years ago | on: Efficient Nested React Components

The render function only renders to the virtual DOM, which React diffs with the previous rendered virtual DOM to decide what changes to the real DOM have to be made. That's why the render function is, or should be, efficient.
page 1