degen

joined 1 year ago
[–] [email protected] 2 points 46 minutes ago

He can't ult again for a while, so it's safe for now.

[–] [email protected] 2 points 1 hour ago (1 children)

Nichijou was the first thing I thought of. It's just so carefree and cute, but unexpectedly wild. I love absurdist humor, too.

On top of that it's the first time I really "got" anime, so it's sentimental. I clicked with it hardcore, and was embarrassed about it for a while.

Just imagine anime night with the bros, watching sword art, and you're the only one who just needs to fit in another episode of Nichijou lol

[–] [email protected] 2 points 10 hours ago

Being the change you want to see in the world. I like it.

[–] [email protected] 2 points 10 hours ago

From what I've seen of interchangeable sets, these don't look bad! Not a bad join at least. Are the needles fairly solid?

I bent a pair of hiyahiya sharps accidentally sitting on them lol. Luckily it worked out bending it back with just a slight crease.

[–] [email protected] 4 points 10 hours ago

Oh man, I remember a friend having a heavy duty OtterBox. We were hanging out in the campus stadium and lobbing it as far as we could... That same night someone did a trustfall from the goal post. We had fun.

[–] [email protected] 3 points 10 hours ago

I don't know how I went so long without breaking a screen. Galaxy S3 to iPhone 5s across 4 or 5 years, scuffed edges but never the screen.

It was the galaxy S7 that finally went. I swear I dropped it a foot or less while sitting down in my car. From coat pocket into the console gap. Not out even out the door, and that had happened before without breaking. I was so mad that that was what did it.

I didn't even use a case religiously until the S7! I blame the obsession with all glass phones.

[–] [email protected] 3 points 11 hours ago (2 children)

4?? Also, the screenshot reminds me of hedgehog launch. Pulled it right out of the recesses of my memory.

[–] [email protected] 6 points 1 day ago

I was like "but the other three are real words..."

Apparently diminutive is the only one that doesn't trace its origin to the book. TIL! Funny how language works.

[–] [email protected] 15 points 1 day ago

You nearly killed me with a damn meme. I can't breathe lmao, jesits take the wheel

[–] [email protected] 7 points 1 day ago

I wouldn't say "the cloud" is exactly in the same realm. It's broad and definitely had its heyday being thrown around in marketing, but it's a very real facet in modern software. More specialized and actually useful AI will probably end up in a similar place eventually.

I think I'm talking myself out of my original point though lol. Kind of conflated LLMs and AI at first. I just wish LLMs weren't the only things with money behind them.

[–] [email protected] 2 points 1 day ago

True. I've worked in pretty small teams with usually 2-4 devs paired, so it kind of worked out as both what we got through, what's next priority, and how we plan to split out that day. Especially if we were light on stories.

[–] [email protected] 14 points 1 day ago* (last edited 1 day ago) (4 children)

Yeah but then I'm up and sitting there like "oh shit, what the hell did I do yesterday?"

 

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.

 

I'm on NixOS and slowly working through neovim config.

I have treesitter installed with all grammars and it's set up in lua. When I run :TSymbols, it pops open a window showing -----treesitter-----, but no symbols are shown from the (python) code I have open.

All of the setup is put in place by the config flake I'm using, but I don't think there's any additional stuff to add for symbols to work. The treesitter section in the resulting init.lua from nix looks like this:

require('nvim-treesitter.configs').setup({
      ["context_commentstring"] = { ["enable"] = false },
      ["highlight"] = { ["enable"] = true },
      ["incremental_selection"] = {
        ["enable"] = false,
        ["keymaps"] = {
          ["init_selection"] = "gnn",
          ["node_decremental"] = "grm",
          ["node_incremental"] = "grn",
          ["scope_incremental"] = "grc"
        }
      },
      ["indent"] = { ["enable"] = false },
      ["refactor"] = {
        ["highlight_current_scope"] = { ["enable"] = false },
        ["highlight_definitions"] = {
          ["clear_on_cursor_move"] = true,
          ["enable"] = false
        },
        ["navigation"] = {
          ["enable"] = false,
          ["keymaps"] = {
            ["goto_definition"] = "gnd",
            ["goto_next_usage"] = "<a-*>",
            ["goto_previous_usage"] = "<a-#>",
            ["list_definitions"] = "gnD",
            ["list_definitions_toc"] = "gO"
          }
        },
        ["smart_rename"] = {
          ["enable"] = false,
          ["keymaps"] = { ["smart_rename"] = "grr" }
        }
      }
    })
19
submitted 3 months ago* (last edited 3 months ago) by [email protected] to c/[email protected]
 

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 ›