Live data from Hacker News

Viewing profile — Rucadi

Rucadi

HN member
Joined
Thu, Jul 08, 2021, 1:43 PM UTC
HN karma
172
Public activity
113 items

About Rucadi

No profile information was provided.

Recent public activity

  1. comment
    Comment #48039067

    And doesn't forbid you from using their platform for free if you sell the keys by yourself and you can also decide to publish your game to other stores...

  2. comment
    Comment #46772565

    I'll be honest, I just want something that I can develop on (linux is the easiest by far) and that's not annoying (Nixos is the best at that). I don't even use any advanced config,…

  3. comment
    Comment #46391999

    I also got the same feeling from that, in fact, I would go as far as to say that nixpkgs and nix-commands integration with git works quite well and is not an issue. So the phrase t…

  4. comment
    Comment #46331999

    The best part of statement expressions is that a return there returns from the function itself, not from the statement expr. I use that with with macros to return akins to std::exp…

  5. comment
    Comment #46331977

    This is also somewhat common in c++ with immediate-invoked lambdas

  6. comment
    Comment #46271689

    it makes function declarations/instantiations much more grep-able.

  7. comment
    Comment #46271541

    auto has a good perk, it prevents uninitialized values (Which is a source of bugs). For example: auto a; will always fail to compile not matter what flags. int a; is valid. Also it…

  8. comment
    Comment #46265905

    This will end up with people creating their pages in top of godot engine to avoid html scrapping hahaha

  9. comment
    Comment #46262517

    To be honest I don't know what to say, you can use nix in many ways, and you don't even require to know the language. The easiest entry-point is to just use it like a package manag…

  10. comment
    Comment #46253287

    If you really need a portable binary that uses shared libraries I would recommend building it with nix, you get all the dependencies including dynamic linker and glibc.

  11. comment
    Comment #46244617

    Nix allows you to do this with any language and required dependency: https://wiki.nixos.org/wiki/Nix-shell_shebang

  12. comment
    Comment #46166762

    If the source is known, it is not less bad that downloading a program and running it

  13. comment
    Comment #46111477

    yes just use brige networking instead of nat

  14. comment
    Comment #46111470

    cpu 100% and shitty integration.

  15. comment
    Comment #46106965

    Smite used to do that, but long time since I played it.

  16. comment
    Comment #45802247

    Location: Barcelona/Spain Remote: Preferred Willing to relocate: No Technologies: C++(up to 23), Nix, Linux Namespaces / Docker, Python, CUDA, FPGA development(xilinx) with a littl…

  17. comment
    Comment #45691738

    The most success I had so far on doing a project where I had to work with binary data parsing is Deku in rust, I would give this a try if I have the opportunity

  18. comment
    Comment #45540622

    I compiled/ported the mario64 port to the LG TV quite easily, so I would say that LGTV is the best for that.

  19. story
  20. comment
    Comment #45100494

    Totally, the only ""freedom"" that they have is the free development program... But they can cancel your account at any time if they wish for "abusing" it, and you even have to ref…

  21. comment
    Comment #45002370

    I've been struggling with this topic a lot, I feel the slowness everyday and productivity loss of having slow computers, 30m for something that could take 10 times less... it's hor…

  22. comment
    Comment #44841349

    Cool project! I'm kinda of the opinion that the real option to handle dotfiles is to override/overlay the package itself with the dotfiles, patching if necessary in order to make i…

  23. comment
    Comment #44316711

    Until zed doesn't work on windows (publicly) unfortunately can't use it in my working computer

  24. comment
    Comment #44304828

    I personally find a lot more relevant the part about "Enabling cross-compilation ", which in my opinion is important and a win. The same about exported symbols and being able to co…

  25. comment
    Comment #43909952

    I created a library "cpp-match" that tries to bring the "?" operator into C++, however it uses a gnu-specific feature ( https://gcc.gnu.org/onlinedocs/gcc/Statement-Exprs.html ), I…