• 5 Posts
  • 14 Comments
Joined 2 years ago
cake
Cake day: August 9th, 2023

help-circle

  • 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.





  • Anthropic and OpenAPI both have options that let you use their API without training the system on your data (not sure if the others do as well), so if t3chat is simply using the API it may be that they themselves are collecting your inputs (or not, you’d have to check the TOS), but maybe their backend model providers are not. Or, who knows, they could all be lying too.





  • 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.



  • 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.