degen

joined 2 years ago
[–] degen@midwest.social 3 points 1 week ago

Palantir's technology increased ICE's success rate in locating targets from roughly 27 percent to nearly 80%

What's fucked up is this will be construed as mitigating ICE's harassment of citizens while it empowers and legitimizes more violence and harassment overall.

Anybody know where palantir data centers are?

[–] degen@midwest.social 6 points 2 weeks ago (1 children)

As long as that's cured meat and not raw ground beef I'll give it a pass

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

Use within a day and a half or else

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

Biden had Dark Brandon; Obama's always just been Obama. Is he too powerful? Is Barack Hussein his stand?

These are the things I wonder

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

You mean like "Which one?" ?

[–] degen@midwest.social 0 points 4 weeks ago

Nawk-tuah™ Fan on that thang

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

Reduce...

Reuse...

ecyc e...

For the cultured

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

Hot take: Boris still had better hair than trump

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

Here I am, an American using libreoffice, with even less of an idea about what's going on

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

Kinda true but kinda not. Language alone can affect our perception. Some don't have a word for green or blue, and orange is indistinguishable from light brown given context.

Even when we are almost definitely seeing the same things, there's a lot that can differ.

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

Just now realizing I blocked them all out of my mind immediately after setting them

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

To be fair as it's meant is pretty bad too.

Like can't we draw the line at normal war crimes? (/s?)

131
submitted 2 months ago* (last edited 2 months ago) by degen@midwest.social to c/videos@lemmy.world
 

I'm yelling LET'S GO and crying at the same time. I think my soul is healing.

 

And now I'm (slowly) typing this in dvorak.

spoilerThe vi keys are better than qwerty's home row. It's been two days and I'll die on this hill.

Is it terminal?

Edit: Guess I should mention it's a Nuphy Air60 V2 given the com. I was a bit hasty.

 

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 ›