Live data from Hacker News

Viewing profile — LittleLily

LittleLily

HN member
Joined
Thu, Apr 16, 2026, 4:03 AM UTC
HN karma
21
Public activity
5 items

About LittleLily

No profile information was provided.

Recent public activity

  1. comment
    Comment #49106312

    Any reason why you didn't just use ESPHome for the firmware? It even has a component specifically for the ULN2003 stepper motor driver you were using https://esphome.io/components/…

  2. comment
    Comment #49106058

    I wonder if it would be possible to get ZMK working on it instead, since that's built primarily for wireless support, and also supports wired configurations too as of recently. See…

  3. comment
    Comment #47961222

    In my experience it makes even more sense in functional programming languages, not less, since they usually also have more powerful type systems that help with actually representin…

  4. comment
    Comment #47929480

    DEL is unicode codepoint U+007F, which is the byte 0x7F in UTF-8, not 0xFF. Perhaps you were thinking of ÿ which is codepoint U+00FF, which encodes to the bytes 0xC3 0xBF in UTF-8.…

  5. comment
    Comment #47788556

    Here's an equivalent shell script that only uses bash builtins, so no other software required: #!/bin/bash mac="\\x${1//:/\\x}" wol="\xFF\xFF\xFF\xFF\xFF\xFF" for i in {1..16}; do …