Live data from Hacker News

Viewing profile — aaronbee

aaronbee

HN member
Joined
Thu, Jun 16, 2011, 4:09 PM UTC
HN karma
124
Public activity
32 items

About aaronbee

No profile information was provided.

Recent public activity

  1. comment
    Comment #44620647

    The trade off is discussed here: https://github.com/golang/go/issues/70835

  2. comment
    Comment #36764735

    Your code is an example of a "pull iterator", and it's not as much of a concern. The harder case to deal with is a "push iterator", which are often much simpler to implement, but l…

  3. comment
    Comment #33678770

    There are some folks working on porting SwissTable to Go: https://github.com/golang/go/issues/54766 What’s holding it back currently is coming up with a way to do incremental rehas…

  4. comment
    Comment #32544946

    Here’s a description of the new map implementation and why it’s more efficient: https://www.pypy.org/posts/2015/01/faster-more-memory-effici...

  5. comment
    Comment #32281070

    Russ Cox has a few good explainer blog posts: https://research.swtch.com/mm

  6. comment
    Comment #31700109

    I believe they made a mistake with that example. It doesn't look unsafe to me because the myResults sliced passed to the goroutine is not used. Or perhaps the racy part was left ou…

  7. comment
    Comment #30520041

    go1.18 is coming out soon with generics. The first release candidate came out 2 weeks ago. You can track the open issues here: https://github.com/golang/go/milestone/201

  8. comment
  9. comment
    Comment #24472239

    I believe the GP's point is that even with a 10,000x increase in data center energy consumption, the effect on ocean temperature is tiny.

  10. comment
    Comment #21167384

    Even more exciting, this is already present in go1.13. I believe the author of these slides made a mistake. Here it is mentioned in go1.13 release notes: https://golang.org/doc/go1…

  11. story
  12. comment
    Comment #19995617

    TCL is pronounced "tickle." https://en.wikipedia.org/wiki/Tcl

  13. comment
    Comment #14512170

    Amazon's pricing is yearly.

  14. comment
    Comment #14492173

    This suggests that Google/Facebook/Twitter will still be able to track you, assuming you use their websites regularly, but advertising companies that don't have pages frequented by…

  15. comment
    Comment #12609361

    Cool Earth [1] is a highly rated [2] charity fighting climate change. [1] https://www.coolearth.org/ [2] https://www.givingwhatwecan.org/charity/cool-earth/

  16. comment
    Comment #11206272

    When it comes to accessing shared data it's often much simpler and more efficient to use a lock to protect that data. Channels are good in other scenarios.

  17. story
  18. comment
    Comment #9976422

    The Chrome team has been working on power efficiency improvements [1], some of them have gone into the already released Chrome 44. [1] https://plus.google.com/+PeterKasting/posts/G…

  19. comment
    Comment #9716639

    Google cache: http://webcache.googleusercontent.com/search?q=cache:srB_qjf...

  20. story
  21. story
  22. comment
    Comment #9035672

    Facebook's Wedge 1U switch is what this builds on. https://code.facebook.com/posts/681382905244727/introducing-...

  23. comment
    Comment #8098621

    This article from 2013 makes the argument that lead in the environment is responsible for violent crime. http://www.motherjones.com/environment/2013/01/lead-crime-li...

  24. story
  25. comment
    Comment #6625141

    The problem with soft-links is that if the underlying file/directory is deleted, you are screwed. For example if you have 100 full-machine backups and want to free some space so yo…