Viewing profile — tuxychandru
tuxychandru
HN member- Joined
- Thu, Mar 11, 2010, 1:05 PM UTC
- HN karma
- 549
- Public activity
- 136 items
- HN profile
- View on Hacker News ↗
About tuxychandru
No profile information was provided.
Recent public activity
- story
-
comment
Comment #37179553
> now I only touch nano when I need to de-crappify a vimrc file You can start vim with --clean to fix your vimrc.
-
comment
Comment #36711570
Apple gets a cut of the payments made through them and yet they provide this option to the consumers. The FTC or the govt can force (?. I'm not a US resident and know nothing of US…
-
comment
Comment #36711259
This is what Netflix's Terms of Use says, "If a payment is not successfully settled, due to expiration, insufficient funds, or otherwise, and you do not cancel your account, we may…
-
comment
Comment #36709947
Why is it still the norm in the US to allow companies to charge their customers whenever they please, without the customers having any control? In India, businesses are required to…
-
comment
Comment #32908055
If the primary concern is the lack of a common packaging format/app store, please consider publishing to https://flathub.org/ . It should solve these for you across all distributio…
- story
-
comment
Comment #26363062
Signal desktop runs as multiple processes. Did you add up all their memory consumption? On my Debian laptop, Signal processes consume about 700 MB of RSS in total, immediately afte…
-
comment
Comment #26004213
This will mean a virtual memory allocation of 800 GB. Such large allocations can fail, even if virtual, depending on over commit settings.
-
comment
Comment #25854933
What is the collective noun for programmers? Merge conflict.
- story
- story
- story
-
comment
Comment #23424558
You can format code as "Verbatim" (Ctrl+T), and it will not be interpreted as wiki text.
-
comment
Comment #20026756
Can you share some details or point to articles describing the design issues with NATS streaming?
-
comment
Comment #14109314
What's the best way to get patent encumbered media working with Fedora for non Americans? apt install ubuntu-restricted-extras, does it in Ubuntu.
-
comment
Comment #9257298
This article points to an attack that applies to AES-256, but not 128. https://www.schneier.com/blog/archives/2009/07/another_new_a...
-
comment
Comment #9235963
I tried rust on this. https://github.com/tuxychandru/golang-challenge-rust/tree/ma... It was shorter in LOC than my go version, mainly due to try!, but the lines themselves were lo…
-
comment
Comment #9155458
How do sum types make error handling safer (without also adding exhaustive pattern matching) or easier (without adding do notation or macros)? The point I am trying to make is that…
-
comment
Comment #8884253
I said 2 things in very first comment. I never claimed rust doesn't have select. This is quoted from my very first comment in this thread, AFAIK, rust also doesn't allow selecting …
-
comment
Comment #8881693
No the select statement of go. It is way more capable that rust's select macro. The tone of your previous comment made me feel that this thread is going in an unproductive directio…
-
comment
Comment #8881129
I was referring to select statement, not async messaging support.
-
comment
Comment #8879715
I was wrong about synchronous communication. Since most rust example use async channels, I missed the existence of sync_channel. However, even if that exists, rust's concurrency do…
-
comment
Comment #8878034
Yes, that's what I meant when I said it not clear whether goroutines can be replicated as a library in rust "without compromising rust's core values". In fact, I mentioned no-GC an…
-
comment
Comment #8872874
Rust's multi-threading most certainly is not CSP. CSP requires communication to be synchronous. Rust documentation states that send() will never block and channels have infinite bu…