Viewing profile — zphds
zphds
HN member- Joined
- Wed, Aug 22, 2012, 12:48 AM UTC
- HN karma
- 117
- Public activity
- 48 items
- HN profile
- View on Hacker News ↗
About zphds
No profile information was provided.
Recent public activity
-
comment
Comment #43974424
In a high-stress environment, try to sleep well and eat healthy. Sleep is important!
-
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
-
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…
-
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 …
-
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 …
-
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…
-
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…
-
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 …
-
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…
-
comment
Comment #14802120
Haha! Thanks Mickey! Was a fun summer.
-
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…
-
comment
Comment #14732577
As a Google Summer of Code student way back in 2008 for Openmoko, this brought a lot of memories :).
-
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 …
-
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…
-
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'
-
comment
Comment #13066247
"Don't do that"
-
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…
-
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.
-
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…
-
comment
Comment #12293126
'Pair Debugging' in my experience, is much more effective than Pair programming. And the constant "No, no that line"... Ugh!
-
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.
-
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 …
-
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,…
-
comment
Comment #12205826
It definitely complements TPP. For me, Pragmatic Programmer was a better bed time book.
-
comment
Comment #12162812
Add visualizations to DOM changes as well and you have a 'living' tree. ;)