bsandert's comments

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: 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: 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: 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: 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.
page 1