Live data from Hacker News

Viewing profile — zphds

zphds

HN member
Joined
Wed, Aug 22, 2012, 12:48 AM UTC
HN karma
117
Public activity
48 items

About zphds

No profile information was provided.

Recent public activity

  1. comment
    Comment #43974424

    In a high-stress environment, try to sleep well and eat healthy. Sleep is important!

  2. comment
    Comment #20883893

    oooh, as a software engineer, too low... too low... In our defense we do not have hundreds of millions of years of test driven development. :P

  3. comment
    Comment #20046315

    Same here. I had the same problem especially when dealing with problems that required me to go back and (un)learn stuff from scratch. I found that the greatest barrier to deal with…

  4. comment
    Comment #19221062

    `uncomplicate` libraries are awesome. Thanks so much for all this write up and putting out one of my favorite pieces of open source code. It's just so easy to rapidly iterate when …

  5. comment
    Comment #18985586

    I really dig the line protocol. Pretty simple. Any HA features? Sharding to look out in 2.0? Or is the general idea to set streaming relays of influxdb tsm's and treat HA as an L7 …

  6. comment
    Comment #18662002

    Same here! Trawling around forums and mailing lists to try and get Beryl working on my old desktop with a cheap-ass SiS integrated motherboard was quite a learning experience. Dead…

  7. comment
    Comment #17870547

    Yesterday, as I was taking a left turn with my motorcycle on a big intersection with flashing red signals, I couldn't help but wonder if I'd be able to communicate with self drivin…

  8. comment
    Comment #17770736

    How does Timescale solve the problem of retention. In InfluxDB, old data is thrown out at every tick as the retention window continuously rolls. In the world of Postgres, wouldn't …

  9. comment
    Comment #17121473

    Here's another similar library for Clojure. https://github.com/overtone/overtone Recommend this talk that made Music 'click' for me. Also fun if you are trying to read GEB and gene…

  10. comment
    Comment #14802120

    Haha! Thanks Mickey! Was a fun summer.

  11. comment
    Comment #14741486

    Mickey was my mentor and didn't get a chance to directly work with Sean and Harold. My project was to build APIs in Vala to control the hardware (volume, screen brightness, etc) th…

  12. comment
    Comment #14732577

    As a Google Summer of Code student way back in 2008 for Openmoko, this brought a lot of memories :).

  13. comment
    Comment #13503666

    Here's my understanding. Please correct me if I am wrong. Visualizing your program as a tree of values that are borrowed, owned, mutated through variables helps in reasoning about …

  14. comment
    Comment #13067256

    Note that keeping them separate has a benefit that when your 'Visualization' portal is down, your 'Alerting' systems are unaffected (and vice versa). Collectd, telegraf. etc, can b…

  15. comment
    Comment #13067192

    Great work! Including a way to set grace periods will be really useful to prevent flapping on the metrics. ex, 'Alert When CPU > 95% for 10m'

  16. comment
    Comment #13066247

    "Don't do that"

  17. comment
    Comment #12926553

    try!() is a macro. Hence all it does is take a given expression and expand the whole thing into a if-error-then-return block. I guess you say that it's an explicit return under the…

  18. comment
    Comment #12924914

    It's worth mentioning that try! is a macro that basically takes that expr and turns it to something similar to your go example.

  19. comment
    Comment #12362097

    We do this with telegraf + influxdb. It has support for tags in measurements where we add the release version among other metadata which we can then visualize in grafana with a sim…

  20. comment
    Comment #12293126

    'Pair Debugging' in my experience, is much more effective than Pair programming. And the constant "No, no that line"... Ugh!

  21. comment
    Comment #12214626

    > To clarify, we don't think of these specs as URLs That makes it a lot clearer. :). Looking forward to take noms for a spin soon.

  22. comment
    Comment #12213333

    But isn't ` / ` more or less similar to ` :: `? The only difference is the choice of a delimiter to disambiguate between a database and a dataset. For me, the first scheme is much …

  23. comment
    Comment #12212967

    Going through the SDK docs, why was a scheme like ' http://localhost:8000::people' chosen instead of the plain old ' http://localhost:8000/people' ? Are there any benefits? If yes,…

  24. comment
    Comment #12205826

    It definitely complements TPP. For me, Pragmatic Programmer was a better bed time book.

  25. comment
    Comment #12162812

    Add visualizations to DOM changes as well and you have a 'living' tree. ;)