Live data from Hacker News

Viewing profile — diggs

diggs

HN member
Joined
Sat, Oct 06, 2012, 10:09 AM UTC
HN karma
124
Public activity
29 items

About diggs

No profile information was provided.

Recent public activity

  1. comment
    Comment #37132457

    I did, and the fixation on React’s age struck me. Was it the core premise? No. Was it a central theme? Yes.

  2. comment
    Comment #37132341

    I don’t care that React isn’t new or innovative anymore, that’s a good thing in my book. Give me old and boring any day.

  3. comment
    Comment #35936029

    An infinite timeout works in theory, but it is impractical at scale.

  4. comment
    Comment #35924311

    Every time this topic comes up, it seems people invariably divide into one of two groups. In the first group are those who trust in the odds and play the probability game. In the o…

  5. comment
    Comment #32103433

    A use case that I wish authorization service providers would talk more about is support for "list" queries e.g. What resources of type foo can the user read? In really simple cases…

  6. comment
    Comment #31788356

    This is a misleading and dangerous service. You provide a distributed lease, not a lock. A distributed lease by itself doesn’t provide mutual exclusion. Distributed leases are typi…

  7. comment
    Comment #30859624

    There's so much more to CI/CD than the build definitions (e.g. dashboarding, log viewing/retention, access control, manual interventions, secret management, test reporting, etc.) a…

  8. comment
    Comment #30368155

    I had a little chuckle at this. One day you will too :)

  9. comment
  10. comment
    Comment #30197952

    I am yet to work on a team with a simple, reliable and repeatable build process. Most build processes (from basic scripts or Makefiles all the way up to CI/CD product-specific pipe…

  11. comment
    Comment #30081384

    Agreed - I’ve spent months working on a deep tech problem before I could even show a functional core, let alone putting it into production. Some problems take time, experience and …

  12. comment
    Comment #29439312

    Recognition and trust have never been a problem for me. Have you hired at this level before, or merely assuming? As always there is nuance, as other commenters have touched on.

  13. comment
    Comment #29427571

    “Someone that avoids talking about what they did, and focuses too much on "we"” This is very interesting. I naturally use “we” when discussing past products and achievements. I do …

  14. comment
    Comment #28704051

    My first experience with event sourcing was having a new hire at a previous company try to shill it. It was a smaller company and he had previously built a career consulting on ES.…

  15. comment
    Comment #28352827

    Object tags instead of named resources look like a neat and flexible concept, and is something I hadn't considered before. It is quite jarring transitioning from the filesystem exa…

  16. comment
    Comment #21919797

    The beauty isn't in the UX of the API per se, it's in the reduction of historically complex file system APIs down to a simple set of primitives and behaviours that enable massive t…

  17. comment
    Comment #16451889

    There's also no deduplication with client-side encryption.

  18. comment
    Comment #15561085

    Deleting a bucket in an object store is surprisingly non-trivial. See Amazon’s UI - it works fine for small object counts but is very buggy for larger buckets.

  19. comment
    Comment #14128224

    I recommend using a static site generator and hosting on S3. It's the cheapest way to do it and will survive a hacker news storm. It's also easily managed in version control and ze…

  20. comment
    Comment #12401627

    Sorry, I should have perhaps put a disclaimer in my original comment. I work for a company called StorReduce and built our replication feature* (an intelligent, continuous "sync" e…

  21. comment
    Comment #12401346

    That depends on how you're storing the files. I was really just trying to highlight that for deduplication across files you need to deduplicate before you encrypt.

  22. comment
    Comment #12400957

    This approach works well enough for relatively small amounts of objects. Once you start getting in to the millions (and significantly higher) then it begins to break down. Every "s…

  23. comment
    Comment #12400896

    How about if a single byte changes? Now the encrypted output looks 100% unique, and you have to treat it as an entirely new file. You lose the ability to do diffs on a file by file…

  24. comment
    Comment #10654399

    When flying, so quite a bit for me, actually :)

  25. comment
    Comment #10155835

    Our server software is typically deployed as close to the source data as possible. This lets us move only deduplicated data over the WAN. It also supports our encryption model wher…