ncoder-1

Results 22 comments of ncoder-1

@KaibaLopez , So what is the use of the tar.gz releases if they are unsupported and not expected to work? For the reasons mentioned by @glaubitz , a lot of...

HI, I appreciate the gesture, but that won't allow for offline building if you are using `curl` to fetch content. It also becomes a nightmare in version management and will...

Any update or progress on this issue? I see tar.gz/zip "releases" being pushed out daily, which is surprising as you can't actually build them without a side script. I appreciate...

I'm currently doing something like this: ``` FetchContent_Declare( csv GIT_REPOSITORY https://github.com/vincentlaucsb/csv-parser GIT_TAG 2.1.0.1 GIT_SHALLOW TRUE ) FetchContent_MakeAvailable(csv) include_directories(${csv_SOURCE_DIR}/single_include) ``` Not sure if that's the right way, but it works.

Good catch, and 100% agree with your last statement...

It would be nice to be able to choose the location of the DB file. I have a NAS on my LAN that has NFS shares, which would make it...

I'm getting the same (or similar) issue, also on Arch (hyprland): ``` Process 97670 launched: '/tmp/test1/target/debug/test1' (x86_64) [2024-02-01T00:04:18Z DEBUG eframe] Using the glow renderer [2024-02-01T00:04:18Z DEBUG sctk] Bound new global...

@margual56 , you're right it looks like it's a different issue. I'll do a few tests on different WM with different GPU and see if I can narrow it down....

It runs properly if I git clone your repo, and use your repo's Dockerfile instead of doing a Dockerfile with: ``` FROM mazzolino/prosody CMD chown prosody /var/lib/prosody && prosodyctl start...

Also, for some reason, I had to add: `ADD certs /etc/prosody/certs/` in the Dockerfile (my certs weren't being copied over) and change `chown prosody /var/run/prosody /var/lib/prosody /etc/prosody/certs/* ` in docker-entrypoint...