HN user

fortytw2

591 karma

github.com/fortytw2

username @ gmail

Posts19
Comments130
View on HN
github.com 6y ago

Show HN: Autoroute – encoding/JSON for Go HTTP Handlers

fortytw2
1pts0
www.schalla.me 8y ago

Bypass Slack mention Restrictions

fortytw2
3pts1
github.com 9y ago

leaktest – automatically detect goroutine leaks in Go code

fortytw2
2pts0
fortytw2.com 9y ago

Mapping Relational DBs onto K/V Stores

fortytw2
5pts0
valvesoftware.github.io 9y ago

Steam Audio – Free Spatial Audio Toolkit

fortytw2
6pts1
eng.fromatob.com 9y ago

Let’s Encrypt, OAuth 2, and Kubernetes Ingress

fortytw2
177pts30
cloud.google.com 9y ago

Google Container Engine with Preemptible VMs

fortytw2
2pts0
www.florinpatan.ro 9y ago

Why you should not use iris for your go projects

fortytw2
6pts0
github.com 9y ago

Generics for Go

fortytw2
8pts3
fortytw2.com 9y ago

Go Dependencies Considered Harmful

fortytw2
7pts0
www.skylight.io 10y ago

Skylight – A Smart Profiler (for Ruby)

fortytw2
2pts0
github.com 10y ago

Show HN: Leaktest – Goroutine leak detector

fortytw2
5pts0
github.com 10y ago

Skicka – A CLI for Google Drive

fortytw2
1pts0
torrentfreak.com 10y ago

Google’s “Pirate Update” Fails to Punish Illegal Streaming Sites

fortytw2
9pts0
www.japantimes.co.jp 10y ago

Bitcoins lost in Mt. Gox debacle ‘not subject to ownership’

fortytw2
49pts45
medium.com 11y ago

Embercrest – The Search for an API Driven Game

fortytw2
3pts0
elementary.io 11y ago

Elementary OS switches to a .io domain

fortytw2
2pts1
blogs.blackberry.com 11y ago

Blackberry's Net Neutrality Plan

fortytw2
8pts4
bitcannon.io 11y ago

BitCannon – A torrent index archiving, browsing, and backup tool

fortytw2
54pts24

I have a HiSense HiReader Pro that I picked up right when it came out. It's absolutely loaded with nonsense + makes zillions of requests to Chinese IPs and it takes ages to figure out how to disable / block it all.

It also only works on a single GSM band in the US (which to be fair, I knew before I bought it), but I was hoping that single band would be usable.

I went back to using a Kindle because the experience is so much better all around. Vaguely intrigued by the new Boox Palma though.

Seems like this is more of a "PostgreSQL distribution with search extensions" than "ParadeDB is an open source ElasticSearch alternative built on Postgres..."

Interesting, sure, but confusing marketing/positioning at a glance

[dead] 3 years ago

American pickup truck driver never asks his gigantic blacked-out coal-rolling Ford F-150 Raptor

I'd love to know how a gasoline powered F-150 can roll coal.

Many of the points in this article are entirely a matter of implementation, not inherent to or ingrained in any particular architectural choice.

You can just as easily build a highly modular and decoupled monolith as you can a tightly coupled and fragile microservice. The same point holds true for many of the other pro/cons the author brought up.

I used to use mithril for almost every new project I'd start, but I've switched over to using React w/ Hooks for just about everything for two main reasons:

- toolchain support is a lot less finicky and better supported (you can use parcel and it "just works") - should I need to bring in a obnoxious third party library, it's far more likely to exist in a react world than mithril

If you're just building something small / on your own, mithril is definitely worth a shot though, it's relatively pleasant to use and packs in some very handy XHR related helpers

The third point is extremely close to how trucks have always been built. Body-on-frame construction has been prevalent in the automotive industry for a very long time.

Ever see a crazy classic car body dropped on top of a truck frame, i.e. a 4x4 60s mustang on a bronco frame?

Is it just me or did apple just bungle this entire announcement by not announcing a consumer facing ARM MacOS device, only a hot-rodded Mac Mini with an iPad Pro chip inside.

How many devs actually have the setup in place to use a non mobile device?

I also wonder if the current+last gen iPad Pro that has the new keyboard + trackpad case will gain the ability to run Xcode and native macOS apps in the near future.

About Musl 6 years ago

by doing this, do you suggest also tying your dependencies versions to those packages with the distro version you're running?

I absolutely agree. The one time I had the great misfortune of building software for windows I was extremely happy to see Go worked at all.

Linux and OS X largely work the same way due to their shared Unix-ness and pretty much everyone I’ve ever met or talked with uses Go on one of those two platforms.

If you have to develop software primarily for Windows, maybe don’t use Go - it’s easily the least actively maintained OS target and there are many options for languages that are well supported on Windows by vendors who actually care. Kind of the same folly as trying to write an iOS app not in Swift or ObjC and then complaining it doesn’t work well.

It's pretty incredible to think that for all the billions of dollars around Slack it's still fundamentally the same product with the same value add that it was when it first launched.

Sure, maybe it's faster or more efficient or whatever now, but what it is at heart is the _exact_ same thing it was on Day 1.

empty interface{} and struct tags really shine when used as a library author, or authoring a bit of extremely reusable code that’s pervasive throughout a codebase.

Think things like json encoding (entirely réflection based), or writing a set of functions that can operate on something more generic. It’s not scary and it’s not really that slow, you just need to be very particular and choosy in your application of it.