notEvil

Results 62 comments of notEvil

I experienced the same issue. After I put the watch in the drawer during the night, it still wrote bpm values to the file (`require('health').readAllRecords(new Date(), print)`). Don't know what...

Now with a few changes to `boot.js` to prevent HRM when the poll interval was low for the previous duration (using timing every 30s and an integer as history), there...

I failed to mention that I'm using Bangle v1, so wear detection is not available. > However another option could be that we kick off turning the HRM on in...

Your solution works fine for a small set of placeholder names. As soon as a different placeholder name is used, it breaks. Since then, I've been using `replacement = f'({param_name})'`...

How about ```diff diff --git a/drafthorse/models/container.py b/drafthorse/models/container.py index 8219378..eb1755e 100644 --- a/drafthorse/models/container.py +++ b/drafthorse/models/container.py @@ -61,10 +61,7 @@ class CurrencyContainer(SimpleContainer): el._currency = child[1] def add_from_etree(self, root): - if root.attrib.get("currencyID"): -...

Hi, sry for not responding. The issue came up while evaluating different options and we eventually chose a different way which doesn't require a solution for it. At this point...

proof of concept ```diff diff --git a/lua/blame/blame_stack.lua b/lua/blame/blame_stack.lua index 15ec01d..3e866c2 100644 --- a/lua/blame/blame_stack.lua +++ b/lua/blame/blame_stack.lua @@ -16,6 +16,8 @@ local mappings = require("blame.mappings") ---@field file_path string ---@field cwd string ---@field...

@icholy The maintainer either hasn't had time yet to look at it or has no interest. A PR wouldn't change that and there is this fork from alcroito with the...

To be more concrete, my goal is to use a custom configuration file similar to `ruff format --config /path/to/ruff.toml`, or set options individually if possible.