hlovdal

Results 64 comments of hlovdal

CentOS Stream 8. Could you not create an additional `service` command that does the same as the `cron` except that instead of only once, it sleeps and repeats so that...

Just setting strict false in my initial project did not help for some reason, but I got things compiling by changing ```patch -import _sodium from "libsodium-wrappers"; +import _sodium = require("libsodium-wrappers");...

The `require` part is a red herring because I am unable to re-trigger the issue in my main project even after removing both `node_modules` and `dist` directories, and then doing...

In the last example @types/urijs was not installed, but installing it only gives a more descriptive error, same as in initial comment: ```shell node_modules/@types/urijs/index.d.ts:26:1 26 export = URI; ~~~~~~~~~~~~~ This...

Yes, this seems to be a pure urijs problem. I tested compiling with `compilerOptions.traceResolution` set to true, and it shows that the compiler tries to find a non-existing `URI` library...

Commands to tag all releases are: ```shell git tag v0.42.0 71fd7ce git tag v0.41.1 4baf1e8 git tag v0.41.0 3f04589 git tag v0.40.1 05dd5fe git tag v0.40.0 48d2b57 git tag v0.30.0...

What could be done is to add a (formal) meta information text file containing summary, description and listing details to the top level of directory of each template (think [lsm](https://en.wikipedia.org/wiki/Linux_Software_Map)...

This would be extremely useful. @gagle are there any obstacles to merging this?

There are [several ways](https://ostechnix.com/how-to-check-laptop-battery-status-in-terminal-in-linux/) to query the battery status. For instance using [acpi](https://github.com/maateen/battery-monitor/blob/90cc2f30f2127db35561a364474428a4a22e28d8/battery_monitor/BatteryMonitor.py#L31), [upower](https://www.cyberciti.biz/faq/linux-laptop-battery-status-temperature/) or just [`cat /sys/class/power_supply/BAT0/capacity`](https://askubuntu.com/a/309146/10324). Some of the tools provide additional information, but start with only capturing...