nonconvergent | 5 years ago | on: Git is too hard
nonconvergent's comments
nonconvergent | 5 years ago | on: Game Design Curriculum
nonconvergent | 5 years ago | on: A collection of videos of police brutality
nonconvergent | 5 years ago | on: A collection of videos of police brutality
Police already publish arrest records, mug shots, and they're covered by the media as well. Criminal charges are public records and covered by FOIA requests.
nonconvergent | 6 years ago | on: Show HN: Docket – A Todo application that serves as a API testing resource
nonconvergent | 6 years ago | on: German banks are hoarding so many euros they need more vaults
nonconvergent | 6 years ago | on: Equifax securities fraud class action [pdf]
nonconvergent | 6 years ago | on: NordVPN confirms it was hacked
nonconvergent | 6 years ago | on: My Favourite Git Commit
A good commit message isn't about convention, and no convention makes a commit message good.
When I review a commit, I need only the information I won't get from the diff that I need to understand the context and the behavior.
My brainpower is a limited resource and extra noise in my signal is extra work.
I'm totally here for `ISSUE_123456 fixes defect` and `wip` are insufficient, but I'm not writing a code blog post in there.
nonconvergent | 6 years ago | on: Rx – Extensible pixel editor implemented in Rust, inspired by Vi
nonconvergent | 6 years ago | on: WeWork says will file to withdraw IPO
Uber's autonomous car fatally collided with a woman, raising questions of negligence and liability in automation.
Uber acquired some of Alphabet/Waymo's trade secrets when they aqui-hired one of their former engineers who apparently kept a bunch of Waymo's IP he worked on. That engineer himself is now facing a federal indictment, and Uber and Waymo have settled.
E-scooters are facilitating a number of city-specific crimes (it's usually illegal to operate a vehicle, bike, or skate on a city sidewalk and the e-scooters do not provide helmets but neither do the riders). To say nothing of the legally dubious use of public property to deploy them.
Move fast and break stuff indeed.
nonconvergent | 6 years ago | on: Rx – Extensible pixel editor implemented in Rust, inspired by Vi
Namespace collision is gonna be a pain for end users and newcomers, possibly depressing discovery, which is our point.
nonconvergent | 6 years ago | on: Rx – Extensible pixel editor implemented in Rust, inspired by Vi
Highlights for a "poop+scoop" related startup include: Flingo, Trash.ly, Fastpoop, Stinkere, Guunk, and Spoop
nonconvergent | 6 years ago | on: Rx – Extensible pixel editor implemented in Rust, inspired by Vi
nonconvergent | 6 years ago | on: Rx – Extensible pixel editor implemented in Rust, inspired by Vi
Plus first result for "rx rust" lead me to https://github.com/ReactiveX/RxRust
nonconvergent | 6 years ago | on: French court rules Steam’s ban on reselling used games breaks European law
nonconvergent | 6 years ago | on: Introduction to Event-Driven Architectures with RabbitMQ
Tracing will show you the distributed behavior, but the best log, at most, can only show you the current state of information on a single service on a single node even when you aggregate. Tracing also works hand in hand because the correlation id should associate with the relevant log message when you do decide to drill down.
nonconvergent | 6 years ago | on: Introduction to Event-Driven Architectures with RabbitMQ
nonconvergent | 6 years ago | on: Apple is making corporate ‘BYOD’ programs less invasive to user privacy
BYODTEI
BYOD are a cost cutting measure by the office, but if you buy a second device then the cost isn't cut, it's transfered. To you. So congratulations on your pay decrease.
nonconvergent | 7 years ago | on: PayPal Alternatives for Startups
Particularly on teams that like to keep main clean and avoid reverts and merge commits in favor of rebasing. Thankfully my current team likes to keep their PRs clean and main is whatever works.
That and merge conflicts, especially on a stale branch. I use cli for most things and Intellij's merge tool for merge conflicts because I can get a clear view of what's what.