Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)JU
JustBrian7872 @feddit.de
Posts 3
Comments 102
Are there any macro pads that can be programmed via a text file stored onboard?
  • I think https://github.com/KMKfw/kmk_firmware might be what you are looking for: It exposes itself as flash drive in bootloader-mode and the files on there are just regular Python scripts. If you search for "KMK macro pad", you'll find a bunch of projects - most of them diy. If you want to start from scratch, Jan Lunge created an awesome tool for setup and keymap adjustments (video https://www.youtube.com/watch?v=RtYJYFMWjNM, repo https://github.com/JanLunge/pog) - with the idea being that after setup you do not need the tool anymore to adjust the keymap.

  • Nocturnal Rufous
  • You program/configure your keymap into the keyboard's firmware so it is independent of your operating system. If you use Mac, you put your Mac specific keys into the map where you want them. It's totally up to you - if you want every key to be "a" you can do that :)

  • I Don't Trust My Own Code
  • As a dev I've been on both sides to be honest. Especially when there is pressure to finish the next task. I think it needs good planning to create enough time for these things.

    In the end bad devs will still shut you up about things they are not interested in fixing...

  • evil-helix: A super fast modal editor with Vim keybindings
  • Nice! I started using helix before vim and often I find the helix bindings more logical (like shift for the reverse action e.g. u for undo and U for redo). However often the vim bindings feel quicker (c-i-w vs m-i-w-c). Will definitely give it a go!

  • GMMK Tenkeyless Gateron Brown - Customise RGB
  • Unfortunately as you found out QMK is not officially supported. But there is a port called SonixQMK which supports this board. This firmware also supports OpenRGB, so you can integrate the light even better in your setup.

  • Suche Menschen denen dieses Pesto schmeckt

    Wem schmeckt dieses Pesto? Glaube es existiert einzig und allein um es mit Pesto Rosso zu verwechseln (Ist mir heute passiert)

    0

    Single-Screw BL-Touch mount

    I created this single Screw BL-Touch mount for my Ender 3 V2 since the fan duct is blocking the other screws.

    https://www.printables.com/de/model/512574-single-screw-bl-touch-mount-for-ender3-v2

    2

    TIL you can do #myId#myId#myId span { ... } and it makes a difference over #myId span { ... }

    developer.mozilla.org Specificity - CSS: Cascading Style Sheets | MDN

    Specificity is the algorithm used by browsers to determine the CSS declaration that is the most relevant to an element, which in turn, determines the property value to apply to the element. The specificity algorithm calculates the weight of a CSS selector to determine which rule from competing CSS d...

    Specificity - CSS: Cascading Style Sheets | MDN

    Adding the same id multiple times increases the specificity of a selector and thus overrides other selectors.

    e.g.

    #myId span {color: red; } #myId#myId#myId span { color: blue; } Codepen

    0