Viewing profile — acconsta
acconsta
HN member- Joined
- Sat, Dec 20, 2014, 7:11 PM UTC
- HN karma
- 152
- Public activity
- 169 items
- HN profile
- View on Hacker News ↗
About acconsta
No profile information was provided.
Recent public activity
-
comment
Comment #29005630
Moderna and Pfizer tested variant-specific (B1.351) boosters and found they weren't significantly more-effective than a third dose of the original vaccine. https://www.nature.com/a…
-
comment
Comment #14215720
How about when they were buying those DCs?
-
comment
Comment #13602457
> modern C++ This library is old enough to drive...
-
comment
Comment #11325668
Google implemented fibers. Hopefully they'll get upstreamed. https://www.youtube.com/watch?v=KXuZi9aeGTw
-
comment
Comment #11112568
>Many of Rust's safety guarantees come from compile-time checks that then do not have any runtime penalty. But not bounds checks, which are unfortunately what you need with respect…
-
comment
Comment #10926372
For large allocations, realloc can remap virtual memory instead of doing a naive copy: http://blog.httrack.com/blog/2014/04/05/a-story-of-realloc-a...
-
comment
Comment #10877472
A networking library based on Asio has been proposed for C++17. In the meantime, use Asio. http://think-async.com/
-
comment
Comment #10813214
> And I can think of more than one well-regarded unicorn where everyone still has access to basically everything , even after their first or second bad security breach. Which compa…
-
comment
Comment #10494609
>A rotating disk is roughly able to saturate a 1Gb ethernet link. Locality is key there. Read randomly and you won't saturate a 100Mb link.
-
comment
Comment #10350727
It's good to have competition in this area. Influx is giving me whiplash (it's on its third database engine in six months!) The circular buffer approach is fine, but it does have t…
-
comment
Comment #10348799
Yeah, but... Need replication? Gotta write your own sharding logic or set up pg_shard. Need aggregations? Gotta write your own logic. Will you do them on the fly? Use triggers? On …
-
comment
Comment #10329258
Yeah, I'm not brave enough for embedded. I'm still pretty excited about what's happening in this space though. Thanks for your thoughts.
-
comment
Comment #10328474
I apologize if I gave the impression I was claiming otherwise. It's just context for the discussion.
-
comment
Comment #10328109
The author also points out that some of the benchmarks poorly represent real workloads: "Bottom up (since the worst offenders are now first), binary-trees is silly since it measure…
-
comment
Comment #10325820
Ah, so Rust does represent thread semantics through types? It's curious that the authors don't mention that in their proposal.
-
comment
Comment #10325580
Unmanaged native code definitely has an edge, even in I/O-heavy applications like databases. http://www.scylladb.com/technology/cassandra-vs-scylla-bench... Not to mention low-memo…
-
comment
Comment #10325365
Basic question — when you're writing a kernel in Rust with its own threading implementation, how does the rust compiler even know what threads are? It has to identify thread bounda…
-
comment
Comment #10325284
Any thoughts on C++ coroutines? Microsoft has a draft implemented in their compiler, and there's a second competing proposal. https://msdn.microsoft.com/en-us/magazine/mt573711.asp…
-
comment
Comment #10325047
I think every OS does this to some extent. Windows uses DPCs, Linux uses tasklets.
-
comment
Comment #10321305
Even with the intrinsics AES is pretty expensive https://software.intel.com/en-us/articles/intel-aes-ni-perfo...
-
comment
Comment #10319968
That might make you the biggest company using Rust? Very cool, I hope you write it up.
-
comment
Comment #10314744
Oh OK, that's cool. I don't think many languages could enforce that.
-
comment
Comment #10314038
I was thinking async-await, which I thought hasn't been standardized yet. Do generators provide the same functionality? Either way, I hope Rust skips the callbacks.
-
comment
Comment #10314000
Scope-bound resource management (SBRM) is clearer than RAII, I think.
-
comment
Comment #10313960
And... how would that be possible at compile time?