Live data from Hacker News

Viewing profile — styluss

styluss

HN member
Joined
Wed, Nov 16, 2011, 3:03 PM UTC
HN karma
236
Public activity
125 items

About styluss

No profile information was provided.

Recent public activity

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

  2. comment
    Comment #48401505

    Australia is part of the EBU https://en.wikipedia.org/wiki/European_Broadcasting_Union

  3. 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…

  4. comment
    Comment #47666545

    https://lisette.run/

  5. comment
    Comment #47111676

    Hey tried a couple and got "iBackgroundColor undeclared identifier" on ghostty 1.2.3

  6. 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,…

  7. comment
    Comment #46679731

    Someone should make a areweidiocracy with links to these

  8. comment
    Comment #46513016

    https://go.dev/doc/faq#assertions

  9. comment
    Comment #46470012

    And Venetian Snares encoded his cat https://eeggs.com/items/46956.html

  10. comment
    Comment #46256774

    Which conflicts? Gleam seems to be released often?

  11. 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…

  12. comment
    Comment #46015144

    What kind of work accomodations have you seen that work/help for people with autism or ADHD?

  13. 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.

  14. 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…

  15. comment
    Comment #45344630

    lacy https://crates.io/crates/lacy might be what you want

  16. comment
    Comment #44366468

    sounds like your describing https://linux.die.net/man/1/ts

  17. comment
    Comment #43760758

    They also changed maps' iteration order to be random, rather than insertion order.

  18. comment
    Comment #43308688

    Nil receivers are such a thing to have

  19. 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

  20. 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"

  21. comment
    Comment #41738686

    data, ok := If ok is false, the channel is closed and data is a zero value.

  22. 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…

  23. comment
    Comment #40974817

    Nim fits a lot of Go's use cases. It is way more niche though.

  24. comment
    Comment #40832547

    First link in "further information" https://cacm.acm.org/research/almost-linear-time-algorithms-...

  25. 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…