bluepuma77

Results 91 comments of bluepuma77

Kind of unhappy here. It seems you have a memory leak and nothing is done about it - for 6 months already. ``` # docker stats --all --no-stream CONTAINER ID...

Just to state again: this is about no (additional) config files, just plain config in the docker run or compose.

I have another issue [here](https://github.com/netdata/netdata/issues/16412) and want to change a single config item. When looking at the documentation "Configure Agent containers" ([doc](https://learn.netdata.cloud/docs/installing/docker#configure-agent-containers)), its a laughable multi-step process, that doesn't even...

One more thing about the env vars: the idea is to just be able to add a single parameter. Which should overwrite the existing one from the config file. I...

Thanks @tkw1536 for your response. I would call this unexpected behaviour. If DEFAULT_HOST is not set, I would not expect it to be random. If you think this is a...

I am currently toying around with traefik. If the web container for a domain is not present it will automatically respond with a plain 404 instead of an arbitrary site...

Thanks @ThibaultDewailly ! Okay, here we go, newbie wants to do basic hardening. I had to remove the `'` around `'$(pwd)'` for `/etc/default/cis-hardening` to make sense: ``` git clone https://github.com/ovh/debian-cis.git...

@jepiqueau Wow, now you really challenge me 😉 Does [this](https://github.com/bluepuma77/sveltekit-capacitor-sqlite) work for you? Tested on `web` and `iOS`. `/src/lib/database.js` includes the database functions `/src/routes/+layout.js` initialises the database `/src/routes/+page.svelte` shows the...

Thanks @jepiqueau ! Running a first test: ``` git clone https://github.com/jepiqueau/vite-sveltekit-capacitor-sqlite cd vite-sveltekit-capacitor-sqlite npm install --save-dev copyfiles npm run dev -- --open ``` It works in Firefox on Mac, I...

You can create your own http server, pass incoming HL7 message to parser, build and send back the ack. ``` import moment from 'moment'; import {Message, Parser} from 'simple-hl7'; function...