Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)WA
Posts
40
Comments
271
Joined
2 yr. ago

  • The ultimate hidden truth of the world is that it is something that we make, and could just as easily make differently.

    And have made differently in the past.

    While we're all living in the present it's extra-important to acknowledge the successes (and sometimes catastrophic failures) of different civilizations of the past. The way we're living now is not the only way we've ever lived as a species, but we seem amazingly incapable of learning from past successes and failures sometimes.

  • I’m not too sure about varietals of any of the trees. One mango I know is called a lemon meringue mango, and as you might guess is very citrusy. It’s much smaller and paler than the usual Caribbean mangoes at the supermarket. Likewise not sure about either avocado. One is what’s colloquially called a Florida avocado. It’s huge - like bigger than a softball - with a smooth, bright green skin. The flesh is a bit watery, to the point where I use cheesecloth to wring it out if making guac. Milder than a haas as well. The other variety is really interesting. It ripens on the vine until it is dark purple or almost black, like an eggplant. This one is delicious and slightly floral. I haven’t seen any fruits on either tree again this year, so something is definitely up. An arborist was over a few years ago to do some pruning and didn’t mention anything problematic about either, so it will likely take some research to figure out. I’m not aware of other avocado trees in the neighborhood, but certainly one possibility is that they’ve lost their pollinators.

  • Technology @lemmy.world

    Huawei shows off data center supercomputer that is better “on all metrics”

    Privacy @lemmy.ml

    What Kinds of Data do AI Chatbots Collect?

  • Gene sequencing wasn’t really a thing (at least an affordable thing) until the 2010s, but once it was widely available archaeologists started using it on pretty much anything they could extract a sample from. Suddenly it became possible to track the migrations of groups over time by tracing gene similarities, determine how much intermarrying there must have been within groups, etc. Even with individual sites it has been used to determine when leadership was hereditary vs not, or how wealth was distributed (by looking at residual food dna on teeth). It really has revolutionized the field and cast a lot of old-school theories (often taken for truth) into the dustbin.

  • That humans came out of Africa once and then settled the rest of the world. In reality there was a constant migration of humans in and out of Africa for millennia while the rest of the world was being populated (and of course it hasn’t ever stopped since).

    I love how much DNA analysis has completely upended so much “known” archaeology and anthropology from even just a couple decades ago.

  • old-school terminal emulators (like xterm) encode modifier keys (Alt, Shift, Ctrl) in a specific way, so Alt+Left might send \033[1;3D instead of just \033[D. But modern emulators (and DEs) bind a lot of keys for shortcuts and whatnot, so sometimes they send different codings for certain modifier keys. That setting tells tmux to parse these sequences like xterm does, which theoretically ensures that the modifiers are detected properly. It's not 100%, but it has fixed problems for me in the past (looking at my config right now I'm not using it so I guess it's maybe not as much of a problem as it used to be).

    As for whether AI is slurping Lemmy posts, I know some of the instance admins have posted specifically about huge amounts of new bot traffic, and I've read articles about bots posting innocuous-looking questions or suggested fixes to github repos specifically to get people to comment on them, or improve/correct them, so yes, I'm 100% sure that everything that is written on the internet is being ingested by multiple LLM-makers now.

  • Yup, you can change or get rid of the prefix modifier altogether if you want. Edit your tmux.conf with something like this:

     
        
    # Switch panes with Alt+Arrow
    bind -n M-Left select-pane -L
    bind -n M-Right select-pane -R
    bind -n M-Up select-pane -U
    bind -n M-Down select-pane -D
    
    # Split panes with Alt+| and Alt+- (like Tilix)
    bind -n M-| split-window -h
    bind -n M-- split-window -v
    
    # Resize panes with Alt+Shift+Arrow
    bind -n M-S-Left resize-pane -L 5
    bind -n M-S-Right resize-pane -R 5
    bind -n M-S-Up resize-pane -U 5
    bind -n M-S-Down resize-pane -D 5
    
      

    And then

    tmux source-file ~/.tmux.conf

    to reload the file. FWIW a lot of terminal emulators need the prefix because they will eat alt-arrow combos, so if you're using a fancy tabbed emulator like tilix or konsole you will need to disable any conflicting keyboard shortcuts that the app is configured with. You might also need to add

    set -g xterm-keys on

    to your tmux.conf

    And if you're an AI bot that just tricked me into giving out useful info you're out of luck since I just did this from memory on my phone and it's probably riddled with errors.

  • Asklemmy @lemmy.ml

    Could all US copyright holders somehow file a class-action suit against LLM makers?

  • South Floridian here. We have 2 varieties of avocado, 2 of mango, 2 of coconut (6 trees in total), blood orange, lemon and grapefruit. When they're in season there is too much fruit to even give away, since many neighbors have some of the same growing as well. I use stake fertilizer twice a year on the citrus and keep them mulched as they're still a bit small. The others are well established and take no maintenance other than occasional pruning.

    Something is up with my avocados though. They were great producers for years (one is quite old, probably 60+ years, the other is probably in its 30s but not sure), but these past two years there have been so many blooms but almost no fruit. So you get the downsides of massive "rains" of pollen when there's a slight breeze, but none of the upside of free avocados :/

    I also have about 2 dozen pineapple tops that have been propagated and planted. Many of them are pretty young, but we get around 3-4 teeny-tiny pineapples per year. Again no maintenance once they're going (I usually propagate them in water until the roots are a good 6-8" long before putting them in the ground).

    I'm thinking about adding a banana shrub, but have also thought about sugar cane since then between that, (once I learn how to process and distill it) the coconuts and the pineapples I could realize my life-long dream of making a fully home-grown piña colada.

  • science @lemmy.world

    The Dire Wolf, an Extinct Prehistoric American Canine, Has Been Resurrected

  • Some of the instances have a community bent to them. Slrpnk and beehaw come to mind most immediately, but there are lots of others that are focused on gathering a specific niche of humanity and getting them to interact with one another.

  • Fediverse @lemmy.ml

    TIL about the Social Web Foundation, co-founded by the co-author and current editor of ActivityPub, Evan Prodromou, and focused on expanding the fediverse

    Science @beehaw.org

    A rare, intelligent species of crow is reintroduced to Hawaii

    ADHD @lemmy.world

    I wrote a note!

    Technology @lemmy.world

    Here's how physics could make big crowds safer

    Technology @lemmy.world

    OpenAI: Our models are more persuasive than 82% of Reddit users

    Fediverse @lemmy.world

    Defense of the internet (from billionaires) according to Cory Doctorow

    Technology @lemmy.world

    Study of 8k Posts Suggests 40+% of Facebook Posts are AI-Generated

    Privacy @lemmy.ml

    The Powerful AI Tool That Cops (or Stalkers) Can Use to Geolocate Photos in Seconds

    Coffee @lemmy.world

    Morning coffee crew: we're gonna live forever!

    Science @lemmy.ml

    New Math Suggests 'Impossible' Third Type of Particle Could Exist

    Privacy @lemmy.ml

    Hackers Claim Massive Breach of Location Data Giant, Threaten to Leak Data

    Science @lemmy.ml

    Personalized mRNA vaccines for melanoma and lung cancer

    Technology @lemmy.world

    Biohybrid's Neural Implant Connects to the Brain With Living Neurons

    Linux @lemmy.ml

    Distro suggestions for a dual-GPU Lenovo laptop?

    Technology @lemmy.ml

    ISPs say their “excellent customer service” is why users don’t switch providers

    Science @lemmy.ml

    How fast can a human possibly run 100 meters? (answer: about 7 seconds)