- 9 Posts
- 73 Comments
That’s some fancy joinery!
will_a113@lemmy.mlto linuxmemes@lemmy.world•Converting an image to PNG alignment chartEnglish3·3 months agoWhat’s it called if you’ve done all of these?
will_a113@lemmy.mlto Fediverse@lemmy.world•BlogOnLemmy - I made my Blog using Lemmy's APIEnglish5·3 months agoOk so you’d literally be making a regular Lenny post to some particular community on some particular instance in that case, right?
will_a113@lemmy.mlto Fediverse@lemmy.world•BlogOnLemmy - I made my Blog using Lemmy's APIEnglish4·3 months agoI’m a little lost. You mention hosting content on any instance, or on GitHub. How does that work? And if your content is elsewhere what is Lemmy doing? Authx?
will_a113@lemmy.mlto Linux@lemmy.ml•Can you configure tmux to use "normal" modifier keys?English9·3 months agoold-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.
will_a113@lemmy.mlto Linux@lemmy.ml•Can you configure tmux to use "normal" modifier keys?English22·3 months agoYup, 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.
will_a113@lemmy.mlto News@lemmy.world•China lashes out at JD Vance for calling Chinese people ‘peasants’English12·3 months agoI’d say it’s ironic since vance literally became famous by celebrating American peasants, but for him it’s probably less about them being peasants and more about them being Chinese.
will_a113@lemmy.mlto Technology@lemmy.world•'Jetsons' robot finally arrives: Sweater-wearing Neo Gamma android helps with household choresEnglish17·4 months agoI’m with you 100% from the privacy and cybersecurity perspectives. That said, if they can be solved (e.g. at some point there will simply be no need for any more training data, and computers will be fast enough to do all the fancy stuff locally), I’d vastly prefer having an appliance do my housekeeping chores than a cleaning service.
will_a113@lemmy.mlto Fediverse@lemmy.world•What do you guys think of rss.ponder.cat?English3·4 months agoI like it for content discovery, but it feels weird to upvote bot posts. When I see something interesting enough to comment on I do try to see if there’s a similar article in a better community already or make cross-post.
will_a113@lemmy.mlto Open Source@lemmy.ml•Should we have a day where we, as a community, go out of our way and thank our maintainers?English4·5 months agoA global FOSS day would be awesome. In addition to giving gifts to the authors and maintainers (and maybe Paterson and others would agree to no fees for one-time donations on that day or something), think of all the other new holiday traditions we could start…
- cookies in the shape of Linus or RMS
- decorations made from “that box” we all have of extra parts and cables
- rhyming flame wars on every listserv
- riveting games of (token) ring-around-the-rosie
What else?
will_a113@lemmy.mlto Open Source@lemmy.ml•Open source maintainers are feeling the squeezeEnglish102·5 months agoMaybe it’s time for a FOSS general strike.
will_a113@lemmy.mlto Technology@lemmy.world•The End of an Era: Exploring the Final Sony MiniDisc Walkman ModelsEnglish7·5 months agoYes! Slip the sound board guy your discman and $20 and get a perfect recording. I remember a few times where there were a stack of discmans and walkmans (Walkman?) recording.
will_a113@lemmy.mlto Technology@lemmy.world•The Anthropic Economic Index: Understanding AI’s effects on the economy over time.English10·5 months agoThe main findings from the Economic Index’s first paper are:
- Today, usage is concentrated in software development and technical writing tasks. Over one-third of occupations (roughly 36%) see AI use in at least a quarter of their associated tasks, while approximately 4% of occupations use it across three-quarters of their associated tasks.
- AI use leans more toward augmentation (57%), where AI collaborates with and enhances human capabilities, compared to automation (43%), where AI directly performs tasks.
- AI use is more prevalent for tasks associated with mid-to-high wage occupations like computer programmers and data scientists, but is lower for both the lowest- and highest-paid roles. This likely reflects both the limits of current AI capabilities, as well as practical barriers to using the technology.
Interesting, not really surprising, and nowhere near as entertaining as when Pornhub does it’s annual introspection.
will_a113@lemmy.mlto Technology@lemmy.world•China is quietly pushing ahead with massive 50,000Mbps broadband rollout to leapfrog rest of the world on internet speedsEnglish82·5 months agoThe “innovation” in the article is passive tech for fiber to the room (FTTR), specifically made to be low cost and easier to implement. It’s also how your computer might get that 50Gbit - it’ll have to be wired in with a fiber connection. It’s not happening over WiFi (or even Ethernet)
will_a113@lemmy.mlto Technology@lemmy.world•Why Mark Zuckerberg wants to redefine open source so badlyEnglish154·5 months agoKinda funny how when mega corps can benefit from the millions upon millions of developer hours that they’re not paying for they’re all for open source. But when the mega corps have to ante up (with massive hardware purchases out of reach of any of said developers) they’re suddenly less excited about sharing their work.
will_a113@lemmy.mlOPto Technology@lemmy.world•OpenAI: Our models are more persuasive than 82% of Reddit usersEnglish5·5 months agoNo need to limit it to only people on social media…
Could even be his twin - that joke is from 2007, if little Bobby was in kindergarten then he’d be around 22 by now and could be trying to land his first job out of college!
will_a113@lemmy.mlOPto Technology@lemmy.world•OpenAI: Our models are more persuasive than 82% of Reddit usersEnglish104·5 months ago😂
will_a113@lemmy.mlOPto Technology@lemmy.world•Study of 8k Posts Suggests 40+% of Facebook Posts are AI-GeneratedEnglish1·5 months agoYeah, the company that made the article is plugging their own AI-detection service, which I’m sure needs a couple of paragraphs to be at all accurate. For something in the range of just a sentence or two it’s usually not going to be possible to detect an LLM.
If money counts as a freedom unit then yes, probably (maybe)