Live data from Hacker News

Viewing profile — tuxychandru

tuxychandru

HN member
Joined
Thu, Mar 11, 2010, 1:05 PM UTC
HN karma
549
Public activity
136 items

About tuxychandru

No profile information was provided.

Recent public activity

  1. story
  2. 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.

  3. 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…

  4. 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…

  5. 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…

  6. 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…

  7. story
  8. 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…

  9. 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.

  10. comment
    Comment #25854933

    What is the collective noun for programmers? Merge conflict.

  11. story
  12. story
  13. story
  14. comment
    Comment #23424558

    You can format code as "Verbatim" (Ctrl+T), and it will not be interpreted as wiki text.

  15. comment
    Comment #20026756

    Can you share some details or point to articles describing the design issues with NATS streaming?

  16. 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.

  17. 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...

  18. 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…

  19. 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…

  20. 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 …

  21. 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…

  22. comment
    Comment #8881129

    I was referring to select statement, not async messaging support.

  23. 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…

  24. 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…

  25. 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…