Phoscur
Phoscur
I'm not sure yet how much the topics relate, but #18 should be a new pillar stone for layer & macro sharing between layouts: https://github.com/Phoscur/oryx-layer-inserter Leaving this issue open for...
I'll take it on, I've also created the QMK-Compile, which I am continuing to maintain. Looking at current PR's, I think you only want to merge this one https://github.com/gittyeric/ergodox-macro-hax/pull/12
Merged #12 - now what remains is adding more detailed info how to migrate after asking support to help us? @gittyeric I think you need to ask Github Support, as...
Oh wow they already did it? It now says your fork derives from mine :) Very nice, thank you for the great collaboration!
Why was #9 deleted without comment? May I ask why this module is so poorly maintained?
Noticed the missing types in v2.4.2 today when I tried to remove the `@types/prompts` package in the hope of getting types for the `prompts.override(yargs)` use case - no luck and...
This is very cool, but as it's confusing/incompatible to TypeScript Decorators, it would be great to have another example for TypeScript! (without `accessor #`)
Types also miss to reflect this, either `rise` or `set` attributes may be missing if it happens on another day: ```ts export interface GetMoonTimes { rise: Date; // actually optional...
I'm having similar issues with the moon's azimuth from Europe: This month (June 2024), the moon sets in the west, but it azimuth values are far too low for that....
@Jakub-Plan-d-k and Copilot completed my comment: ```js const angle = azimuth * (180 / Math.PI) + 180 // azimuth needs to be converted from -180° to 180° to 0° to...