Viewing profile — styluss
styluss
HN member- Joined
- Wed, Nov 16, 2011, 3:03 PM UTC
- HN karma
- 236
- Public activity
- 125 items
- HN profile
- View on Hacker News ↗
About styluss
No profile information was provided.
Recent public activity
-
comment
Comment #48422390
I work with a Go monorepo and set up Bazel for a couple of services that used CGo. It took a while but was painless to set up.
-
comment
Comment #48401505
Australia is part of the EBU https://en.wikipedia.org/wiki/European_Broadcasting_Union
-
comment
Comment #47919390
> The world is like a ride in an amusement park. And when you choose to go on it you think it's real because that's how powerful our minds are. And the ride goes up and down and ro…
-
comment
Comment #47666545
https://lisette.run/
-
comment
Comment #47111676
Hey tried a couple and got "iBackgroundColor undeclared identifier" on ghostty 1.2.3
-
comment
Comment #47013630
Mild Spoilers. I will always have a special place for Babylon 5. One time I was watching it with my father who lived under a dictatorship, watched a scene with Mr Morden and Lando,…
-
comment
Comment #46679731
Someone should make a areweidiocracy with links to these
-
comment
Comment #46513016
https://go.dev/doc/faq#assertions
-
comment
Comment #46470012
And Venetian Snares encoded his cat https://eeggs.com/items/46956.html
-
comment
Comment #46256774
Which conflicts? Gleam seems to be released often?
-
comment
Comment #46031258
In Go, if one would ignore the error, it could result in a panic or the program would continue with some unexpected state. Go projects work on an honour system and either return Ni…
-
comment
Comment #46015144
What kind of work accomodations have you seen that work/help for people with autism or ADHD?
-
comment
Comment #45512872
52,874 are connected to the internet according to Shodan. https://www.shodan.io/search?query=redis+product%3A%22Redis+... Not affiliated with them.
-
comment
Comment #45347856
Pprof doesn't tell you if something was leaked aka still around. I fixed a leak recently because of misuse of a slice with code like slice = append(slice[1:], newElement) I only fi…
-
comment
Comment #45344630
lacy https://crates.io/crates/lacy might be what you want
-
comment
Comment #44366468
sounds like your describing https://linux.die.net/man/1/ts
-
comment
Comment #43760758
They also changed maps' iteration order to be random, rather than insertion order.
-
comment
Comment #43308688
Nil receivers are such a thing to have
-
comment
Comment #42004296
To this day, the best way to practice typing, for me, is https://en.m.wikipedia.org/wiki/The_Typing_of_the_Dead
-
comment
Comment #41739314
Oh absolutely, whenever i use anything, I have to see how to integrate cancellation and now context is everywhere just for this. It gets overly verbose because of "simplicity"
-
comment
Comment #41738686
data, ok := If ok is false, the channel is closed and data is a zero value.
-
comment
Comment #41152777
I accidentally tried to fly with a small kids juice box and sunscreen. They throw your stuff into a machine. I would've expect that they take a sample from inside but they just sca…
-
comment
Comment #40974817
Nim fits a lot of Go's use cases. It is way more niche though.
-
comment
Comment #40832547
First link in "further information" https://cacm.acm.org/research/almost-linear-time-algorithms-...
-
comment
Comment #40774123
can you explain a bit what you mean with > - Lack of dependency injection/inversion of control. I find it interesting the author lists this as an advantage. With Rails, I was alway…