degen

joined 1 year ago
[–] [email protected] 0 points 3 days ago* (last edited 3 days ago)

You mean it's not pronounced teur-myan-ill?

Termianl (n.): a skinny 'puter

[–] [email protected] 18 points 4 days ago

New name for the Cuck Chair just dropped

[–] [email protected] 7 points 4 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

[–] [email protected] 1 points 4 days ago

We eat from the bag round here, but it tracks

[–] [email protected] 3 points 4 days ago

With a pair of these bad boys

[–] [email protected] 33 points 4 days ago

Are you crazy? An exe could corrupt the registry, delete system32, format C:, or delete the MBR! They're dangerous!

[–] [email protected] 10 points 4 days ago (4 children)

The popcorn bowl!

[–] [email protected] 2 points 6 days ago

Psychedelics, man.

Because they're like, cool, man.

[–] [email protected] 18 points 1 week ago (6 children)

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

[–] [email protected] 0 points 1 week ago

Maybe it's an ear? There's a bump in front of the face that would match for the right. It's a really pleasing detail the more I look at it.

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

That would literally be a fascist move

[–] [email protected] 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

 

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" }
        }
      }
    })
view more: next ›