Mathias Rasmussen
Mathias Rasmussen
Use latest versions of the `checkout` and `setup-node` actions, as well as node lts.
It has been suggested to extend ESC telemetry to provide information such as missed zero crossings and demag events. Currently Bluejay only supports rpm (e-period) telemetry according to the specification...
We can now change the startup melody, but we also want to play melodies with the beacon signal.
The accuracy of the reported e-period (for rpm telemetry) should be improved to provide better rpm filtering and use of more narrow notch filters.
Allows to re-download torrent data if it has been deleted. Otherwise you would have to remove the torrent and add it again. Not sure if the message or style is...
Add conventionalcommits preset to cli usage help info.
When attribute values are `undefined` or `null` they are appended as strings 'undefined' or 'null'. For example this code: ``` javascript var none // unassigned hx`...` ``` Will result in...
Hi, this PR brings in the changes from Poole 2 for Jekyll 3 support. I know there are already a bunch of pending pull requests, but I am sharing this...
Since the `date_taken` metadata is UTC, we can use [calendar.timegm](https://docs.python.org/3/library/calendar.html#calendar.timegm) to update the file modification time according to the local timezone. Currently, `mktime` is used which assumes a local datetime....
Adds GCC warning flag for `old-style-definition` and fixes the code accordingly. This means all function definitions without parameters are explicitly made `void` (`function()` -> `function(void)`).