degen

joined 1 year ago
[–] [email protected] 3 points 3 hours ago (1 children)

I love xkcd and all, but I won't stand for great lake erasure

[–] [email protected] 33 points 1 day ago (12 children)

Makes me wonder if it could be treated in some way to make it not-so-inhalable. Though maybe we have better synthetic alternatives by now.

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

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

[–] [email protected] 3 points 5 days 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.

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

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

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

Yeah, I saw that synopsis under the knowyourmeme result lol. There's always that one friend/relative. Kind of funny there's never really been a phrase for it before.

Still, I like the thought of it meaning everyone has that one food they really like and will steal a bite if anyone gets it.

[–] [email protected] 3 points 5 days ago (1 children)

I think I've always equated them with the horrendous water shoes I remember as a kid. That, and the look just never said comfort to me. But I've felt some fomo in recent years lol

[–] [email protected] 7 points 5 days ago (6 children)

Every now and then I get the feeling there might be something about them. Are they like supremely comfortable? Everyone I see wearing them nowadays seems chill and makes it look like they're comfy.

Either that or the country has fully devolved into Walmart as Idiocracy foretold.

[–] [email protected] 7 points 5 days ago

"Call me Daddy"

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

I was wondering if "fanatic" ironically could have come from the French language. Looking at the etymology I'm now wondering if "fanum tax" stems from Latin.

[–] [email protected] 12 points 5 days ago* (last edited 5 days ago) (2 children)

Is this the genesis of British "humour"? Thomas, a Becket, even got the name in the time of Shakespeare.

Waiting for somebody to eviscerate me over British history, cause all I know is Monty Python.

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

I don't know if blocking all interaction is possible or not. It can be confusing with federation. As far as I understand, instance blocking pertains to posts and not users. You won't see posts from the instance, but other mutually federated posts can still have comments from the instance's users.

I'm less clear on how user blocking works, but I imagine you wouldn't see comments the comments at all in that case. They can still see and interact with your comments/posts (I think), you just won't see it yourself. You'd probably have to block each user individually since I don't think Lemmy has that functionality.

 

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 ›