waveproc
waveproc
Something like [Sourcegraph's code search](https://sourcegraph.com/search?q=context:global+gitlab&patternType=keyword&sm=0) is better because it indexes code repositories from multiple sites, like Github, Gitlab, etc. I would recommend curating the software packages, and allow bringing them...
I propose a website listing curated C3 packages, similar to [blessed.rs](https://blessed.rs/crates). If you need a package manager, I would recommend Nixpkgs. Both the curated packages website and Nixpkgs could be...
> Yes, I know that such solutions do exist. I'm just not a fan of making these huge solutions mandatory dependencies for such a trivial thing as downloading text in...
@wfzyx [Devbox](https://github.com/jetify-com/devbox) supports the functionality you described at first glance. > ## Quickstart: Fast, Deterministic Shell > > In this quickstart we'll create a development shell with specific tools >...
[https://www.nixhub.io/packages/c3c](https://www.nixhub.io/packages/c3c)
@Ccocconut How would we get more people to adopt alternative version control systems? I still haven't fully adopted jj yet.
> > [@Ccocconut](https://github.com/Ccocconut) How would we get more people to adopt alternative version control systems? I still haven't fully adopted jj yet. > > I am not asking for adoption...
Anyways, @joshring is on the right track. You would need to search multiple websites/repositories for c3 packages: github, gitlab, codeberg, sourcehut, etc., and index them on a centralized website like...
NPM and Cargo are both major successes because of their low barrier to entry. - To avoid a "supply chain" attack (malicious code) 100% of the time, you must manually...
The build works fine with clang with this Dockerfile/Containerfile I made. @Adversing ```Dockerfile ARG UBUNTU_VERSION=24.04 FROM ubuntu:${UBUNTU_VERSION} RUN apt-get -y update && apt-get -y upgrade && apt-get -y install cmake...