Viewing profile — hnakamur
hnakamur
HN member- Joined
- Sat, Jun 13, 2015, 2:26 PM UTC
- HN karma
- 9
- Public activity
- 7 items
- HN profile
- View on Hacker News ↗
About hnakamur
Recent public activity
-
comment
Comment #27851696
I agree. For example, most of Rust libraries uses the drop handler (something like desctructors) to close a file descriptor. However it has problems since in async model closing is…
-
comment
Comment #24760944
Thanks for your pointer. Do you mean this thread? "Json-Base – Database built as JSON files | Hacker News" https://news.ycombinator.com/item?id=23715558
-
comment
Comment #24546849
previous discussion: https://news.ycombinator.com/item?id=2378110
-
comment
Comment #22800953
How about https://github.com/quininer/io-uring ? It is licensed under either of Apache2/MIT.
-
comment
Comment #20415434
https://github.com/skiplang/skip > The Skip project concluded in 2018 and Skip is no longer under active development at Facebook.
-
comment
Comment #12926525
In Go, I use https://github.com/pkg/errors these days and wrap errors with stack trace. package main import ( "fmt" "io" "os" "github.com/pkg/errors" ) func main() { v, err := run(…
-
comment
Comment #9711098
Great work! I created a build script for Node9: https://gist.github.com/hnakamur/13808187bf59e47456c3