bsandert
|
7 years ago
|
on: Ask HN: What open source project, in your opinion, has the highest code quality?
This is not necessarily about the code, but I've been really impressed for a while by the lodash project and its maintainer's dedication to constantly keep the number of open issues at 0. Any issues get dealt with at record speed, it's quite a sight to see.
https://github.com/lodash/lodash/issues
bsandert
|
7 years ago
|
on: Reality Driven Development: Fixing Project Management in Software
In my experience, knowing when work on some functionality will _start_ plus a rough estimate on effort (talking hours/days/weeks level) is quite acceptable for most stakeholders. It is also far easier to provide, and less likely to be off by an order of magnitude, which some low-level estimates may suffer from.
bsandert
|
8 years ago
|
on: Software Testing Anti-patterns
it('sends an email to the user', ...)
bsandert
|
8 years ago
|
on: Chrome 59 stable released
One I've been looking forward to for a while: native notifications on OSX!
bsandert
|
8 years ago
|
on: Show HN: Early-stage Yahoo Pipes spiritual successor
Vendor lock-in.
bsandert
|
8 years ago
|
on: Malicious Subtitles Threaten Kodi, VLC and Popcorn Time Users
Please don't fall into the Dunning-Kruger[0] trap by assuming a straightforward task is also easy to perform. These things may very well be complex and include aspects that are not immediately obvious. And even if they don't, even simple code executing simple tasks can be vulnerable to bugs or flawed reasoning without the authors (or tooling) being stupid or naive.
[0]: https://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
bsandert
|
9 years ago
|
on: GitHub lost $66M in nine months of 2016
Feature-wise it's great but the .com version can be really slow. A simple git push of a few small commits took me about 50 seconds earlier this week.
bsandert
|
9 years ago
|
on: Thought Experiments to De-Risk Your Startup
bsandert
|
9 years ago
|
on: Amazon seller’s account suspended after changing profile name on Kindle Fire
This also reminds me of a talk by Maxim Februari at the most recent TEDx Amsterdam[0]. From the description:
The infrastructure of connected things [..] imposes norms on citizens. Not in the form of written laws: the norms are hidden in the design of things. Citizens can’t protest the new laws, or change them, because they do not know them. And because decisions are made automatically, the laws can’t even be violated [..]
[0]: https://youtu.be/qIVTKBeiabI (skip to 2:30 to get to the meat directly)
bsandert
|
9 years ago
|
on: What’s wrong with Git? A conceptual design analysis
Git only started really clicking with me when I started thinking of most of my actions as graph building and traversals. It also helps to realize that for most intents and purposes, commits in git are immutable and "destructive" actions such as rebase don't _actually_ rewrite history, but rather create a new path in the graph and moves your branch pointer to it, leaving all previous commits intact (though potentially hard to reach and subject to garbage collection).
bsandert
|
9 years ago
|
on: Ask HN: What is your favorite internet rabbit hole?
bsandert
|
9 years ago
|
on: Primary Model Predicts Trump Victory
bsandert
|
9 years ago
|
on: 'Black Mirror' Is Back, Reflecting Our Technological Fears
That one and the Christmas Special were the two episodes that kept me up at night.
bsandert
|
9 years ago
|
on: EC2's most dangerous feature
What also floats on water?
bsandert
|
9 years ago
|
on: Why's that company so big? I could do that in a weekend
To me this is a form of the Dunning-Kruger effect[0], where only somewhat informed people estimate the cost of a "0.1" (or POC) release without considering the famous "unknown unknowns" which may involve scaling, billing, 3rd party integrations, etc.
[0]: https://en.wikipedia.org/wiki/Dunning%E2%80%93Kruger_effect
bsandert
|
9 years ago
|
on: Don't Start Big, Start a Little Snowball
While luck isn't something you can completely control, it doesn't have to be entirely random either. I read this article a while back talking about a "luck surface area"[0], which you can expand, increasing your odds of being "lucky" in the future.
[0]: http://www.codusoperandi.com/posts/increasing-your-luck-surf...
bsandert
|
9 years ago
|
on: Insomnia 3.0 – A simple and beautiful REST API client
I would love to see a general purpose API client that works similar to the Elasticsearch client Sense [0]. A simple, free-text scratchpad style client that allows for easy editing and firing of requests. Maybe it's hard to support all the advanced functionality this way, but I find Sense absolutely invaluable when working with Elasticsearch and would love to use it on other API.
[0]: https://www.elastic.co/guide/en/sense/current/introduction.h...
bsandert
|
9 years ago
|
on: Why we lost Uber as a user
> The PostststgreSQL project never fails to impress me.
Let's see how many iterations we'll need for people to actually notice what was pointed out here ;)
bsandert
|
9 years ago
|
on: John Oliver buys $15M in debt and forgives all of it on 'Last Week Tonight'
Love that podcast. Really a shame he's stepping down from it.
bsandert
|
9 years ago
|
on: Specifying JSON
Try writing YAML in combination with templating (such as in Salt). Because indentation means hierarchy, it's terrible. I'd much rather use JSON in such a context.
https://github.com/lodash/lodash/issues