HN user

u02sgb

125 karma
Posts1
Comments105
View on HN

There's an excellent Changelog podcast interviewing him which talks about his early career as well.

There are now d-locks that are angle grinder resistant. The reviews I've read suggest they need two cuts to open and each cut uses a full angle grinder disc.

As ever, impossible to stop a determined thief, but starting to get "good enough".

I ski and board. In my opinion boarding was the really popular thing to start a while back. That meant all the newbies that didn't know slope etiquette were doing it. I think that's why it got the bad reputation.

Skiing seems to be back to being cool again so things have levelled out a bit. The rivalry is still talked about though so it persists. There also probably a misunderstanding of what the "other" can see while moving.

I'd argue that while they can't "do" their own testing, developers should be writing Unit tests that prevent their code from being broken in future. They should also be writing tests that exercise their code so they find corner cases that were not obvious when coding.

The problem is it's difficult to define what that is (and particularly to teach a junior Dev what to do).

I didn't like Inversions the first time I read it either but re-read all the Culture books, in order, after Banks died and enjoyed that. I think I was expecting it to be very Culture-y and was disappointed it wasn't. On a reread my expectations were different and it was just a very enjoyable story.

I'd also suggest avoiding Excession until you've become familiar with the Minds. It's my favourite book, I think, but you lose a lot without having a little context.

I would argue that Javascript is a hybrid of pass by reference because of the case below though.

    function someFunc(v) {
      v.myvar = 456;
      v = someOtherObject;
    }

    var foo = someObject;
    foo.myvar = 123;
    someFunc(foo);
    // foo still refers to someObject
    // foo.myvar is 456
Banning our team from passing objects around except in specific, discussed, cases got rid of lots of difficult to track down bugs.

Not seen NetApp but from a quick Google it seems to be more intelligent database management.

Delphix is more using the power of ZFS and Copy On Write to give you instant database copies with minimal storage footprint. We used it to give every developer their own Database that they could do anything to and not worry about locks etc. Refreshing to a more recent copy was a very quick operation and required a developer running one command. Had a nice web interface and a REST interface for automation.

I'd recommend it but with the caveat that I've no idea how much it costs as it was a Dev thing a client was encouraging use of. Was really nice to work with though.