Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)SE
secana @programming.dev
Posts 30
Comments 42
What are you working on this week? (June. 30, 2024)
  • I'm not ML pro and never used Python or Rust for it, but I know that our ML team uses Python extensively for it. My gut feeling is that Python stays the king in the ML field but the underlying libraries are going to progress from C++ to Rust in the future. Or at least, if Rust gets stronger math/statistics libraries. If you get something cool running with Rust and ML, I'm interested to read about it.

  • What are you working on this week? (June. 30, 2024)
  • Unfortunately not. But I try to work on it a few hours every week in my spare time. I think that having an easy and free crate registry is crucial for the adaption of Rust in the commercial space. Companies don't want to share their code publicly on crates.io. My full time job is in the IT security sector. My hope is that by pushing Rust as a safe language, we can close some fundamental design flaws that languages like C/C++ introduced and make software landscape more secure.

  • What are you working on this week? (June. 30, 2024)

    Hi rustaceans! What are you working on this week? Did you discover something new, you want to share?

    10
    What are you working on this week? (June. 23, 2024)
  • The selling point of Ice (the underlying framework for libcosmic) is the cross-platform compatibility. Can I use libcosmic cross-plat as well, or is it more a specialisation of Ice for Linux with the clear focus on the Cosmic desktop? Would be cool to re-use some widget etc.

  • What are you working on this week? (June. 23, 2024)

    Hi rustaceans! What are you working on this week? Did you discover something new, you want to share?

    11

    What are you working on this week? (June. 16, 2024)

    Hi rustaceans! What are you working on this week? Did you discover something new, you want to share?

    13

    What are you working on this week? (May. 26, 2024)

    Hi rustaceans! What are you working on this week? Did you discover something new, you want to share?

    3

    What are you working on this week? (May. 19, 2024)

    Hi rustaceans! What are you working on this week? Did you discover something new, you want to share?

    12
    How to organise Firefox bookmarks in folder?
  • Thanks for the reply. When I disable the toolbar, the bookmarks are correctly placed in a folder but the folder is not visible in the toolbar anymore. So I can either have the bookmarks separately in the toolbar, or in a folder but not in the toolbar. The combination of both seems to be only possible if I move the bookmarks by hand in the UI :/

  • How to organise Firefox bookmarks in folder?

    Hi,

    I want to sort my bookmarks in Firefox with home-manager into folders, but fail.

    Simple example:

    firefox = { profiles."user" = { bookmarks = [ { name = "Nix"; toolbar = true; bookmarks = [ { name = "NixOS Search"; url = "https://search.nixos.org/packages"; } { name = "NixOS Options"; url = "https://nixos.org/manual/nixos/unstable/options"; } { name = "Home-Manager Options"; url = "https://nix-community.github.io/home-manager/options.xhtml"; } { name = "Home-Manager Options Search"; url = "https://home-manager-options.extranix.com/"; } ]; } ]; };

    My assumption was that I get a folder "Nix" in the bookmarks toolbar that contains the four bookmarks. But instead the four bookmarks are added to the toolbar side-by-side without being in a folder.

    How can I achieve that?

    4

    What are you working on this week? (May. 05, 2024)

    Hi rustaceans! What are you working on this week? Did you discover something new, you want to share?

    15

    What are you working on this week? (Apr. 28, 2024)

    Hi rustaceans! What are you working on this week? Did you discover something new, you want to share?

    9

    How to set file permissions with home-manager?

    Hi! I ran into the issue that my kube config, which I manage with home-manager is world read- and writable. I hoped that there is an easy option to set file permissions with home-manager, e.g. home.file."foo".permissions = 0644 but something like this does not exist. All solutions a short web search turns up are overly complicated for something that seems to be a trivial task.

    What is the easiest way to set permissions for a file with home-manager?

    3

    What are you working on this week? (Apr. 21, 2024)

    Hi rustaceans! What are you working on this week? Did you discover something new, you want to share?

    17

    What are you working on this week? (Apr. 14, 2024)

    Hi rustaceans! What are you working on this week? Did you discover something new, you want to share?

    9

    What are you working on this week? (Mar. 31, 2024)

    Hi rustaceans! What are you working on this week? Did you discover something new, you want to share?

    8

    What are you working on this week? (Mar. 24, 2024)

    Hi rustaceans! What are you working on this week? Did you discover something new, you want to share?

    5

    What are you working on this week? (Mar. 17, 2024)

    Hi rustaceans! What are you working on this week? Did you discover something new, you want to share?

    4

    "aarch64-linux-gnu-gcc" not found

    Hi! It's my first day with nixos. I tried to compile a rust project. To do so, I used a nix-shell with the content from here: https://nixos.wiki/wiki/Rust with the "Installation via rustup" option.

    Unfortunately the compilation fails:

    ``` $ cargo check Compiling libc v0.2.151 Compiling proc-macro2 v1.0.73 Compiling serde v1.0.193 Checking once_cell v1.19.0 Compiling thiserror v1.0.53 error: linker aarch64-linux-gnu-gcc not found | = note: No such file or directory (os error 2)

    error: could not compile proc-macro2 (build script) due to 1 previous error warning: build failed, waiting for other jobs to finish... error: could not compile serde (build script) due to 1 previous error error: could not compile libc (build script) due to 1 previous error error: could not compile thiserror (build script) due to 1 previous error ```

    I run NixOS 23.11 stable on a VM on a Macbook with M1 (arm64) CPU.

    Any ideas how to fix that?

    3

    Kellnr 5.2.0 Release - The private crate registry

    kellnr.io Kellnr: The private Rust Crate Registry

    Kellnr is a private Crate registry for Rust written in Rust to self-host or run in the cloud.

    Kellnr: The private Rust Crate Registry

    Kellnr 5.2.0 is released. Besides many small changes, the main feature of this release is UI support for cached crates. Until now, only private crates were shown in the UI. Now, cached crates from crates.io are shown and searchable from the UI, too.

    0

    What are you working on this week? (Mar. 10, 2024)

    Hi rustaceans! What are you working on this week? Did you discover something new, you want to share?

    19

    What are you working on this week? (Mar. 2, 2024)

    Hi rustaceans! What are you working on this week? Did you discover something new, you want to share?

    9