degen

joined 1 year ago
[–] degen@midwest.social 7 points 3 days ago (5 children)

It's not so much about estimating odds as it is limiting the potential downside. Hedging is the rational part of things lol

[–] degen@midwest.social 2 points 5 days ago

Psychedelics, man.

Because they're like, cool, man.

[–] degen@midwest.social 19 points 1 week ago (6 children)

Honestly I thought it was standard for modern electronics, or cells themselves, to internally consider 80% as full

[–] degen@midwest.social 6 points 1 week ago

That would literally be a fascist move

[–] degen@midwest.social 35 points 2 weeks ago

As soon as I read "my wife" instead of "she", I assumed the wife would be someone else, and there would be an accident with the ex

[–] degen@midwest.social 5 points 2 weeks ago

99% sure this is Luna, aka CrunchyCat, aka monkeycatluna, and she is indeed the scrunge queen.

[–] degen@midwest.social 3 points 3 weeks ago

Looking at the rules, there's nothing explicitly wrong anyway. It would be silly if there were imo. Political discussion is part of politics, and equating political news articles with the whole of politics is inadvertently disingenuous. But I can be fairly pedantic sometimes.

[–] degen@midwest.social 18 points 3 weeks ago (1 children)

I'd love to answer OP, but that description somehow made me forget everything I've ever eaten.

[–] degen@midwest.social 20 points 3 weeks ago (1 children)

It should have no issue continuing as it looks to be a hard fork. I use it too, so hopefully it just becomes the de facto app.

[–] degen@midwest.social 4 points 1 month ago

We say poo butt... What an odd thing to have in common with a stranger on the internet lmao

[–] degen@midwest.social 3 points 1 month ago (1 children)

The many tools around this are interesting. "Web clipping" I think is the generic phrase for it. I got kind of deep into it from of a desire to wrangle ADHD, and a bit of datahoarding and knowledge mapping. Omnivore is one I liked for text articles, and there's super niche applications like Zotero.

[–] degen@midwest.social 2 points 1 month ago

Oh, I like this. Put the second rail right on top of the cars for the real express line.

 

I've tried just about every type of setup I can find for a nix shell with python.

I don't want to purely use nixpkgs for a lack of some packages and broken packages. I'm trying to use pyside6, but not everything in pyside6 is provided by the package, e.g. tools like uic.

Attempting to use a venv as normal leads to a disconnect between the env and system with libstdc++.so.6 unable to be found. There are a various different flakes I've tried to use like the-nix-way/dev-templates#python and others from forum discussions which add stdenv.cc.cc.lib to no avail.

I think the farthest I've gotten is with poetry/poetry2nix, where auto-patchelf warns about missing libQt6 libraries. Running with nix run fails to 'find all the required dependencies' even when adding qt6.qtbase or qt6.full to the packages. This is that flake, taken from the poetry2nix github with an added devshell:

{
  description = "Python application packaged using poetry2nix";

  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
    poetry2nix.url = "github:nix-community/poetry2nix";
  };

  outputs = { self, nixpkgs, poetry2nix }:
    let
      system = "x86_64-linux";  # Adjust for your system
      pkgs = nixpkgs.legacyPackages.${system};
      inherit (poetry2nix.lib.mkPoetry2Nix { inherit pkgs; }) mkPoetryApplication;
    in {
      packages.${system}.default = mkPoetryApplication {
        projectDir = ./.;
      };

      apps.${system}.default = {
        type = "app";
        program = "${self.packages.${system}.default}/bin/app";
      };

      devShells.${system}.default = pkgs.mkShell {
        packages = [ pkgs.poetry ];
        buildInputs = [ pkgs.qt6.qtbase pkgs.qt6.full pkgs.qt6.wrapQtAppsHook ];
      };
    };
}

It seems kind of hopeless to get it working on NixOS. Does anyone have a working setup I could use for inspiration, or any other tips? I love the nix paradigm, but I'm honestly considering distrohopping with all of the trouble.

19
submitted 5 months ago* (last edited 5 months ago) by degen@midwest.social to c/nix@programming.dev
 

https://github.com/NixNeovim/NixNeovim

I'm getting back into my setup after dualbooting and not touching it for a while. Flakes, home-manager, all that jazz. I was in the middle of messing around with my neovim config, bouncing between nixvim and nixneovim. Can't really remember why I was landing on nixneovim, but I think it had to do with having more 1-to-1 vim options through nix and more available plugins.

Part of this post is just to see what everyone's using, but I also can't copy to the system clipboard for the life of me! No ctrl-shift-v or anything. Oddly enough, ctrl-click-drag will copy a cut-off box of text. In nixneovim there's an option for clipboard, but that's just a string like 'unnamed' or 'unnamedplus', straight from the vim options. Nixvim has the option abstracted in a way that has the register and a provider for the functionality like wl-copy. I don't remember it not working with nixneovim before. That was months ago, though. Hoping someone would have an insight as I've been too deep in the weeds.

Edit: sooooo I just needed xclip in home.packages. I had tried installing it in a nix shell, but maybe that wasn't the right way to test. Doesn't seem to work with wl-clipboard, but I think neovim looks for xclip by default and nixneovim doesn't seem to have a way to give a different provider.

But still, how's everyone doing their neovim shenanigans?

view more: next ›