Alper Cugun
Alper Cugun
This does work: ```rust let (base, e): (&str, u32) = map_res(digit1, str::parse)(input)?; ``` So there's a big gap between calling the parser and assigning it to a local variable.
I have a `flake.nix` with a `mkShell` in it. Is that equivalent? The tutorial also does not mention whether `shell.nix` is a hard convention or something.
OK. In his tutorial here Amos focuses heavily on flake: https://fasterthanli.me/series/building-a-rust-service-with-nix/part-9
Hi, Here's the Nix: I added the parameters based on this documentation: https://github.com/nix-community/naersk#buildpackages-parameters ```nix { inputs = { fenix = { url = "github:nix-community/fenix"; inputs.nixpkgs.follows = "nixpkgs"; }; flake-utils.url =...
It errors on sqlite: ``` error: builder for '/nix/store/nc57i86cr4rgb3s606pvdg4v4banq9lq-cuppings-deps-0.1.0.drv' failed with exit code 101; last 10 log lines: > exit status: 1 > > --- stderr > > > error...
I can get the requirements.txt for a couple dozen repositories here but running all of them locally, installing all their packages and extracting the license information from there is a...
OK. I've found that [cdxgen](https://github.com/CycloneDX/cdxgen) works fine for my use case.
I have querying working using MechanicalSoup now. Took a bit of prodding with their weird javascript form.
Got the stub in #7. Next up grab all the relevant belonging to a specific company and see if the people can be parsed out?
(Used [mechanize](https://github.com/python-mechanize/mechanize) after all because it's pretty solid and familiar once it works.)