Live data from Hacker News

Viewing profile — kamov

kamov

HN member
Joined
Fri, May 20, 2022, 10:35 AM UTC
HN karma
56
Public activity
28 items

About kamov

No profile information was provided.

Recent public activity

  1. comment
    Comment #48878912

    Okay, so would you say LuaJIT is slop, just because it is hand coded?

  2. comment
    Comment #48871858

    100k satellites is kind of insane, why not a smaller number of satellites which are more powerful, like the satellites from AST Spacemobile? It should be possible to launch smaller…

  3. comment
    Comment #48744744

    > I've approximated it somewhere around 15 minutes of maintenance per month, barring an emergency. If that's normal to you, congrats - you've peaked in life. However, that's absolu…

  4. comment
    Comment #47734071

    This is an oversimplification, adopting "capitalism" wholesale as a developing nation without guardrails is incredibly risky because foreign capital will just buy out or crush nati…

  5. comment
    Comment #46893650

    What do you use local models for? I'm asking generally about possible applications of these smaller models

  6. comment
    Comment #46624069

    https://kamoshi.org/ I have written from scratch an SSG and used my website to dogfood it. A lot of it is/was experimenting and learning how web works bottom up, so it is rough aro…

  7. comment
    Comment #46415306

    > This isn't democratization. It's feudalism with better marketing. It's not "feudalism", it's just capitalism. Everything will be commodified in the end including your feelings an…

  8. comment
    Comment #46180376

    You can use both Nix and Cargo at the same time, and they accomplish different things. Nix's purpose is more like rustup, except it works for each program on your computer

  9. comment
    Comment #44930284

    Except in Python you can easily access the type hints at runtime, which allowed people to build ergonomic libraries such as Pydantic

  10. comment
    Comment #42234498

    What were the main issues you came across? What language would you prefer if you had to start from scratch and had the choice to go with anything else?

  11. comment
    Comment #42092714

    Is a city council unethical too? It is a form of government as well

  12. comment
    Comment #41980003

    Rust used to have a GC in the past, as well as green threads and a bigger runtime. All of this has been explicitly removed before Rust 1.0. The reasons are well documented in many …

  13. comment
    Comment #41240710

    The fundamental issue is that humans contrary to machines will never know for sure whether whatever they do write is in fact correct code. One can think they are writing good and r…

  14. comment
    Comment #41235482

    I personally think that writing so called "terse, clever" (misnomer) code, is not an issue with the language, rather the user. Do we really want to have worse tools, just because s…

  15. comment
    Comment #41230082

    Sum types allow for more robust modeling of the API boundary in libraries, so in fact having a better type system is desirable even when "just gluing libraries", because it can mak…

  16. comment
    Comment #41127284

    Elliptic curve cryptography can be broken by Shor's algorithm as well https://arxiv.org/pdf/1706.06752

  17. comment
    Comment #40855647

    Whatever language you end up choosing, I hope it will be a memory safe one. Browsers' main purpose is to interact with the outside world, and they even have to run third party code…

  18. comment
    Comment #40855567

    I think that pioneering the work of reimplementing web standards in not strictly OOP language will make the implementation easier for anyone else in the future, surely many of the …

  19. comment
    Comment #40835904

    Not paying for a book when you have the full ability to do so is just greed. But there are also those who come from places where monthly wage is like $200, so they wouldn't be able…

  20. comment
    Comment #40833370

    Sadly this program seems to segfault on Wayland.

  21. comment
    Comment #40246880

    > If your language only supports adding more complexity and never simplifies syntax, it's inevitably going to be replaced. The same thing will happen with Rust in 20 years, it's ju…

  22. comment
    Comment #40188140

    Knowing the industry there's a bunch of people out there on the payroll continuously knocking out these assets all day long every day.

  23. comment
    Comment #39990091

    Sorry, I don't want to be that guy , but I'm curious why use Java and not something like Rust? Is it because of the Lucene ecosystem?

  24. comment
    Comment #39927481

    This isn't quite right, linked lists and trees in functional languages can be represented extremely succintly, i.e. data List a = Nil | Node a (List a) data Tree a = Leaf a | Node …

  25. comment
    Comment #39600777

    Right about now KDE is moving to Wayland. KDE Plasma 6 released a week ago will use Wayland by default, with X11 being an opt in mode. I think that X11 while it might exist for the…