Live data from Hacker News

Viewing profile — mgunyho

mgunyho

HN member
Joined
Sun, Dec 12, 2021, 2:14 PM UTC
HN karma
429
Public activity
42 items

About mgunyho

No profile information was provided.

Recent public activity

  1. comment
    Comment #46136502

    Yep, I think in Taka the most confusing case is lists - writing list [ 1 2 3 ] creates the list [3 2 1]. (When indexing, the first item of the list is the one on top of the stack.)…

  2. comment
    Comment #46135101

    PN makes it appear more like a traditional programming language on the surface, even if it's still read in a kind of strange way. So it might help spread the joy of stack languages…

  3. story
    Show HN: The Taka Programming Language

    Hi HN! I created a small stack-based programming language, which I'm using to solve Advent of Code problems. I think the forward Polish notation works pretty nicely.

  4. comment
    Comment #43998938

    For Torch, I have come across Named Tensors, which should work in a similar way: https://docs.pytorch.org/docs/stable/named_tensor.html The docs say that it's a prototype feature, …

  5. comment
    Comment #43998683

    Seconded. Xarray has mostly replaced bare NumPy for me and it makes me so much more productive.

  6. comment
    Comment #40703326

    I want to second the idea of broadcasting based on named axes/dimensions. I think it's a logical next step in the evolution of the array programming paradigm. I particularly recomm…

  7. comment
    Comment #38360250

    The pro version of Overleaf supports offline work with a simple trick: every Overleaf document can be accessed as a git repo. It's a bit limited (there's no branches or tags, and i…

  8. comment
    Comment #37223164

    Looks very similar to my tool, tere: https://github.com/mgunyho/tere . The main difference seems to be that I don't do any file manipulation, while walk has the option to delete fi…

  9. comment
    Comment #36516577

    Hmm, this indeed seems to be the case! I think I was confused by ln(1), since 1 is a real number, but the multi-valued complex logarithm of 1 is indeed k 2pi (and now I see the app…

  10. comment
    Comment #36511738

    But note how right above this span there is the , which is not aria-hidden, and which contains the MathML representation of the equations. I would have assumed that a screen reader…

  11. comment
    Comment #36511256

    Yes, I manually put 2π in the html , while the has the KaTeX rendered math in it :)

  12. comment
    Comment #36511199

    Not a coincidence :)

  13. comment
    Comment #36511155

    > sin(x) is the sinus function with the angle implicitly divided by 1 radian This to me sounds like the most natural explanation. For example, in a sibling comment someone mentione…

  14. comment
    Comment #36511028

    I think parent is referring here to the fact that math used to be written without symbols (other than numbers) up to the 1300s according to Wikipedia: https://en.wikipedia.org/wiki…

  15. comment
    Comment #36510913

    From what I can tell it's the opposite (on Firefox): the math is in the source HTML twice, once in , which is hidden using CSS in the non-reader mode but is rendered in the reader …

  16. comment
    Comment #36510702

    > You can also eliminate the constant in some of the integral formulas by using đx instead of dx. I'm surprised the author does not propose this. In the post I propose doing that f…

  17. comment
    Comment #36510474

    Author here, I'm sorry to hear that it doesn't work well with a screen reader. I tested it with the reader mode of Firefox, which renders MathML perfectly, although I don't know ho…

  18. story
  19. comment
    Comment #32109764

    That's true, although I think in the case of Go, it is a central design decision to make single-binaries easy so it's more of an exception to the rule. I don't think it's an inhere…

  20. comment
    Comment #32108906

    Indeed, Python would be a good language to implement this in terms of ease of development, but it's very difficult to distribute a standalone binary (which I wanted to do). The bui…

  21. comment
    Comment #32108893

    Also, aho-corasick comes from the name of this algorithm that is named after its inventors https://en.wikipedia.org/wiki/Aho%E2%80%93Corasick_algorithm

  22. comment
    Comment #32108302

    Not really. The main reason for choosing Rust was to try it out, because it's the new cool thing. And I do find it really enjoyable. Rust is also trying very hard to keep dependenc…

  23. comment
    Comment #32108024

    > one extra keystroke is hardly cumbersome To me, there really is a significant difference in friction when navigating in vim vs tere. Maybe it's because I need to use shift to typ…

  24. comment
    Comment #32107588

    Nice! Looks like xplr can indeed "integrate them all", as you say in the readme.

  25. comment
    Comment #32107432

    As mentioned in another comment, vim doesn't provide exactly the same experience: navigation is more cumbersome because you need extra keystrokes for type-to-search and to cd a fol…