Colin Summers
Colin Summers
Ran across what I think is a bug while debugging a `invalidPath` error with cachix. From what I understand, nix-prefetch works by building with a fake sha256, letting the build...
Given the following rust package definition: ```nix # This works: { lib, fetchzip, rustPlatform }: rustPlatform.buildRustPackage rec { pname = "lscolors"; version = "0.7.1"; src = fetchzip { url =...
zstd supports creating a dictionary from a set of files which can then be used to speed up/increase the compression ratio on subsequent compressions. Looking at the code (and please...
I'm looking for a way to store tuples of same-typed but differently-sized data as in: ``` x=1; y=[2 4; 3 5]; vec = LVector(x=x, y=y); vec[:] == [1,2,3,4,5] # true...
The default is currently 22, but it looks like it recent versions it's been reduced to 19. Also, level 22 doesn't yield a compression ratio much better than the default...
Hope its alright to ask this here. I'm interested in using an M5StickC Plus with OMG but need RF Tx/Rx. It looks like GPIO12 is available but not 27. Are...
**Describe the bug** Running `nixpkgs-fmt` once on the following string: ``` { pkgs ? import {} }:{"mujoco-x86_64-linux" = let fetcher = pkgs.fetchzip;pname = "mujoco-x86_64-linux";fetcherName = "pkgs.fetchzip";version = "1hkfl2vzf61hm0xp2b8bjbkfnm8vmjsb66yggkf10a8shz2wdrwh";name = "mujoco-x86_64-linux-1hkfl2vzf61hm0xp2b8bjbkfnm8vmjsb66yggkf10a8shz2wdrwh";outPath...
I'm attempting to compute Hessian vector products for use with RL algorithms like Natural Policy Gradient or TRPO, but have been entirely unsuccessful. Following https://github.com/FluxML/Zygote.jl/issues/115, https://github.com/JuliaDiffEq/SparseDiffTools.jl, and elsewhere I was...
**(1) Issue/Bug Description:** I use [Nix](https://nixos.org/) as a package manager on PopOS, which installs packages to `~/.nix-profile`. Desktop entries live at `~/.nix-profile/share/applications`. These applications do not appear in the launcher....
So I recently heard about [Scratch.jl](https://github.com/JuliaPackaging/Scratch.jl), which provides a mutable data store for packages. I thought it would be interesting for LanguageServer.jl/SymbolServer.jl to make use of it for symserver_store_path, possibly...