Live data from Hacker News

Viewing profile — Tigress8780

Tigress8780

HN member
Joined
Thu, Oct 20, 2022, 10:43 AM UTC
HN karma
49
Public activity
32 items

About Tigress8780

No profile information was provided.

Recent public activity

  1. story
  2. comment
    Comment #44014855

    Even though ESPHome has warnings about using WiFi and Bluetooth proxy together being unstable, I've found it to be much better in terms of stability and performance than the Intel …

  3. comment
    Comment #43075840

    We have this thing called NATMap: https://github.com/heiher/natmap It gives you a public dynamic IP + port combination if your network is NAT1 all the way to the internet. Both IP …

  4. comment
    Comment #42438534

    A fresh HAOS VM can not successfully boot without internet access, maybe due to how they are managing everything with Docker within HAOS? I noticed this because the VM was accident…

  5. comment
    Comment #41031339

    Rust will determine what `parse` does based on the inferred return type (which is being explicitly set to `Timestamp` here). This is possible when the return type has `FromStr` tra…

  6. comment
    Comment #40594225

    It probably is. I remember that putting a /72 into OpenWRT's `ip6prefix` field actually breaks the whole network stack (including IPv4, the interface no longer has any address assi…

  7. comment
    Comment #40592835

    SLAAC is fine, until you somehow get a subnet smaller than /64 on your router, in which case SLAAC completely breaks. I understand why SLAAC has such a limitation, but this is what…

  8. comment
    Comment #39418784

    That's probably the best thing we can do (for now) for a PCIe device. PCIe hotplug [1] is a thing, but your (badly-written) WiFi kernel driver is probably not designed for that. [1…

  9. comment
    Comment #38921528

    Given examples, Copilot can generate code for extremely rare languages or data structures. For example, it worked fine when I was writing for an obscure scripting language found in…

  10. comment
    Comment #38780967

    I recently had the idea of making similar hardware with ESP32 (some of them has USB hardware). You may lose mouse acceleration, but many do not like this to begin with, so it's fin…

  11. comment
    Comment #38730299

    These "super apps" get special treatment everywhere. Many phone manufacturers even automatically grant certain permissions when these apps are installed (the list is sometimes hard…

  12. comment
    Comment #37829644

    This still happens on my Windows 11 machines (the tooltip stays there unless you move the mouse over the same icon again), but only to a small number of applications. Makes me wond…

  13. comment
    Comment #37634668

    I buy digital Japanese Doujin music on sites like booth.pm, and their provided zip files extracts "beautifully" on Linux if you simply `unzip` them.

  14. comment
    Comment #37634587

    On desktop clients, they fetch the cursor bitmap and renders it locally, then send absolute movements. For mobile clients, it is possible (and better) to send relative coordinates …

  15. comment
    Comment #37632726

    Talking about how strange the current state of Windows API is, there are actually 3 different APIs that can move the mouse cursor: SetCursorPos [1], SendInput [2], and mouse_event …

  16. comment
    Comment #37557675

    The way our "MongoFS" was organized is actually also low quality and probably would fall apart pretty quickly if used as a serious web service. However, it works if you try to quic…

  17. comment
    Comment #37554556

    Once we had to ship millions of extremely small files to our customer, we ended up throwing them into a MongoDB and serve them with a web server. It worked great. We tried to use a…

  18. comment
    Comment #37553596

    Well, it's never the same 20%, which is precisely why we have plugins and extensions even outside of the Linux GUI bubble. This include IDEs, browsers, office suites, media product…

  19. comment
    Comment #37452183

    IO is not a part of the async runtime contract (I don't know if this is good or bad), and Tokio & futures famously have different `Async{Read,Write}` traits. I once had to do this …

  20. comment
    Comment #37143554

    Tinc works, but is not really stable for my use case: strange network environment thanks to my school. It frequently falls into infinite loops, dropping all packets and fully use a…

  21. story
  22. comment
    Comment #36809408

    That metadata is usually put around the end of the file for compatibility reasons, but one can use ffmpeg's `-movflags faststart` option to move it to the beginning (very common in…

  23. comment
    Comment #35997375

    Official OpenWRT builds do this by default (though you can turn that off in DNS settings), but many newer consumer routers that use OS based on OpenWRT might not have the option.

  24. story
  25. comment
    Comment #35536319

    An Opus frame can be as short as 2.5 ms [1] (at this packet size the effect of network buffering can be pretty obvious), but I use a frame size of 20 ms anyway when capturing on Wi…