Live data from Hacker News

Viewing profile — kevinoid

kevinoid

HN member
Joined
Thu, Feb 28, 2013, 4:39 AM UTC
HN karma
305
Public activity
77 items

About kevinoid

Email: kevin@kevinlocke.name

Website: https://kevinlocke.name

GitHub: https://github.com/kevinoid

GitLab: https://gitlab.com/kevinoid

Recent public activity

  1. comment
    Comment #48600147

    A significant effect is through opioid receptor activation, as demonstrated by Williams et al. https://doi.org/10.1038/s41380-019-0503-4 > by blocking the receptor with naltrexone,…

  2. comment
    Comment #42023115

    Location: Bozeman, MT Remote: Yes Willing to relocate: No Technologies: C#, Python, Node.js, MSSQL, ASP.NET WebForms, ASP.NET Core, JavaScript, OpenAPI, Selenium, REST, XML, XSLT, …

  3. comment
    Comment #40910526

    This approach sounds similar to Petitboot http://www.kernel.org/pub/linux/kernel/people/geoff/petitboo... > which is a kexec-based bootloader that I used on the Playstation 3 many …

  4. comment
    Comment #32534430

    zstd 1.3.8 and later also has an rsync-friendly mode (via the --rsyncable command-line option). See https://github.com/facebook/zstd/issues/1155

  5. comment
    Comment #31990614

    Perhaps a closer analog would be halt(8) with the -q (BSD) or -f (Linux) option to avoid calling init(8): https://man.openbsd.org/halt https://manpages.debian.org/halt

  6. comment
    Comment #31800454

    It sounds like you may be remembering VBE display modes.[1] I think you can still play with these modes by adding `nomodeset vga=ask` to the kernel parameters[2] if you are booting…

  7. comment
    Comment #31111511

    Perhaps this is a good time to ask: I'd like to use UEFI for my qemu+libvirt virtual machines, but I need snapshot support. Since QEMU doesn't support pflash internal snapshots htt…

  8. comment
    Comment #29131324

    Interesting. If I understand correctly, the "bypass" is https://github.com/coofcookie/Windows11Upgrade/blob/1.0.0/Wi... which is a copy of https://github.com/AveYo/MediaCreationToo…

  9. comment
    Comment #28952330

    To clarify, gcc -Wall only produces the warning with -std=c89/gnu89 (or GCC https://godbolt.org/z/Y7Wx5Y89q

  10. comment
    Comment #28373569

    Agreed. I should have made my post clearer. OpenWrt does not suppport SHA-2 signature hashing or any of the newer key algorithms I mentioned, so you are stuck with RSA+SHA1.

  11. comment
    Comment #28372273

    I've been running with ssh-rsa disabled for a while (with a config based on https://infosec.mozilla.org/guidelines/openssh#modern-openss... ) and it's been pretty smooth. Support f…

  12. comment
    Comment #28369984

    Great suggestions! One caveat: -fsanitize=pointer-compare and -fsanitize=pointer-subtract have some sharp edges and (last I knew) are not considered production ready by the sanitiz…

  13. comment
    Comment #28020235

    It's neat, but I don't believe it is a compliant implementation of HTTP/1.1 (or 1.0). For example, it does not handle percent-encoded characters in the request URI.[1][2] [1]: http…

  14. comment
    Comment #28020133

    I agree. As with many things, it's only simple as long as you ignore the complexities. As they say, the devil's in the details. > this "server" only responds to a simple well forme…

  15. comment
    Comment #27292505

    I still use both, with a shared vimrc. The biggest advantage of neovim for me is support for the clipboard in Wayland.[1] There are workarounds for vim (vim-fakeclip[2] is the best…

  16. comment
    Comment #26927109

    A discussion of Nassim Taleb's tweet of the same sentiment last week: https://news.ycombinator.com/item?id=26840006 (430 comments)

  17. comment
    Comment #26826260

    I agree! As a non-expert, I've also had good luck with NetworkManager, but wouldn't recommend systemd-resolved yet if you use DNSSEC: https://github.com/systemd/systemd/issues/6490…

  18. comment
    Comment #26751440

    It needs both hardware and driver support. You can check supported formats using vdpauinfo. Nouveau maintains a list of supported formats for different hardware at https://nouveau.…

  19. comment
    Comment #26689845

    > Why not just settle on bash, zsh and fish shell? When Ubuntu and Debian switched from bash to dash for /bin/sh, the stated motivations were mostly performance (particularly durin…

  20. comment
    Comment #26680523

    Although it was disabled in Debian bash 2.04-5 on 2000-06-05, it was re-enabled in bash 4.0-5 on 2009-09-13 and is currently enabled. See https://metadata.ftp-master.debian.org/cha…

  21. comment
  22. comment
    Comment #25202257

    I agree. I think the GP commit introduced the bug and the fixing commit was https://github.com/linux-pam/linux-pam/commit/30fdfb90d9864b...

  23. comment
    Comment #25124438

    I was interested in this as well. Unfortunately, excluded sites are configured using PermissionManager https://bugzilla.mozilla.org/1640853 > which stores data in permissions.sqlit…

  24. comment
    Comment #25007315

    https://github.com/scponly/scponly can be used to prevent command execution and supports chroot. It avoids the server-side scp protocol security issues by rejecting shell metachara…

  25. comment
    Comment #24967031

    Another real-world use case is zero-copy interprocess communication, as in the Wayland protocol https://wayland-book.com/surfaces/shared-memory.html >. It can also be combined with…