Viewing profile — diggs
diggs
HN member- Joined
- Sat, Oct 06, 2012, 10:09 AM UTC
- HN karma
- 124
- Public activity
- 29 items
- HN profile
- View on Hacker News ↗
About diggs
No profile information was provided.
Recent public activity
-
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.
-
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.
-
comment
Comment #35936029
An infinite timeout works in theory, but it is impractical at scale.
-
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…
-
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…
-
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…
-
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…
-
comment
Comment #30368155
I had a little chuckle at this. One day you will too :)
- comment
-
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…
-
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 …
-
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.
-
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 …
-
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.…
-
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…
-
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…
-
comment
Comment #16451889
There's also no deduplication with client-side encryption.
-
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.
-
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…
-
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…
-
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.
-
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…
-
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…
-
comment
Comment #10654399
When flying, so quite a bit for me, actually :)
-
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…