x264 AV1 file, vlc and mpv on debian 12.11, problems to play it, what to do?


the x264 av1 file plays only audio on vlc but works with flaws on mpv: on mpv I get audio and video, but every 5 to 6 seconds it's like instead of getting 24 fps I get 22, the user noticing the missing frames.

Is this a hardware issue? software?

debian 12.11, vlc 3.0.21 flatpak, mpv 0.40.0 flatpak

what do I do?

This entry was edited (3 hours ago)

How I'm sending incremental Btrfs snapshots on a Asustor NAS to a LUKS disk


Hi, I recently finished setting up my Asustor NAS, and I found the snapshotting setup in it a bit confusing, so I'm writing this as a quick reference that might be hopefully useful to others.

For context, my device is a AS1102TL, and it's running ADM 4.3.3, but I imagine it should apply to all recent Asustor devices.

First of all, the reason I picked Asustor instead of e.g. Synology... it's because it was not clear if the latter actually supported LUKS full disk encryption on an external usb hd. In Asustor you have to ssh into your NAS, but you can definitely do it.

The only gotcha: If you created the LUKS volume recently on another system, it's likely that it'll be using Argon2 for key stretching. A memory-intensive algorithm, for which the 1GB of memory provided by my AS1102TL is not enough. The solution is simply to add another key with a different algo, e.g. PBKDF2, or just create the volume on your Asustor. Either way, you're going to be able to read and write it both from the NAS and another Linux on your pc.

$ sudo $(which cryptsetup) luksOpen /dev/sdb1 encrypted # "encrypted" is just the name that I gave to the device, pick anything... remember the `-S` flag if you need to select a key in a different slot
$ sudo mount /dev/mapper/encrypted /mnt/USB1
... do what you want ...
$ sudo umount /mnt/USB1/
$ sudo $(which cryptsetup) luksClose encrypted

Unfortunately, this doesn't mean that once mounted, the disk will be integrated in the ADM ui (you're not going to be able to see it in the "External Devices" ui, nor be able to select it as a destination in the "Backup & Restore" ui).

Normally, mounted external drives are available on paths like /share/USB0, /share/USB1. Maybe it could be possible to mount (or symlink your mount point for) your disk there, to make it usable to ADM, but by default /share is an immutable loop mount of /volume0/.@system/sharebase.loop

$ lsattr -d /share/
-----i------- /share/

Trying to workaround that with chattr and maybe manually modifying sharebase.loop felt a bit more risky than needed, so I didn't attempt that (the ADM ui doesn't provide a btrfs send functionality, so it's not very interesting for our purposes anyhow).

Now, you have two different approaches to accomplish incremental backups of btrfs snapshots, one where you just create them yourself from the CLI, and one where you can try to reuse the snapshots created in ADM.

  1. Create snapshot from the cli


sudo btrfs subvolume snapshot -r /volume1 /volume1/.@snapshots/v20250710-0951

pick a parent snapshot, and send the incremental changes:
sudo btrfs send -p /volume1/.@snapshots/v20250710-0936 /volume1/.@snapshots/v20250710-0951/ | sudo btrfs receive -v /mnt/USB1/

I'm using the same naming convention, and same location that is used for snapshots created by ADM (you wouldn't get conflicts anyhow, unless you're creating another one in the exact same minute).

I recommend the -v verbose flag for btrfs receive, otherwise you're not going to see progress while the operation is ongoing.

That's it! Of course, the first send will have to happen without specifying a parent with -p, to do a full clone.

  1. Reuse snapshots created in ADM

There are two problems with this: the snapshots created by ADM are not read-only and they are mounted right under the toplevel.

To address these issues:

sudo mount /dev/md1 -o subvol=/ /mnt/rootvol
sudo btrfs property set /mnt/rootvol/v2025079-2324/ ro true

then pick a parent snapshot, and send the incremental changes:
sudo btrfs send -p /mnt/rootvol/v2025079-0824/ /mnt/rootvol/v2025079-2324 | sudo btrfs receive -v /mnt/USB1/

As above, use the -p and -v flags as needed. That's it!

If you're wondering why did we have to mount the / subvol, you can try without:

You can mount the snapshots directly in ADM's Snapshot Center, by toggling the Preview toggle for a snapshot. In that case, they are still going to be RW, though mounted as RO. You can deal with that by remounting: sudo mount -o remount,rw /volume1/.@snapshots/v2025079-2324/ && sudo btrfs property set /volume1/.@snapshots/v2025079-2324/ ro true,

You can then try to send the changes, but what you're going to get is:

$ sudo btrfs send -p /volume1/.@snapshots/v2025079-0824/ /volume1/.@snapshots/v2025079-2324
ERROR: not on mount point: /volume1/.@snapshots/v2025079-2324

The error is a bit confusing (you have mounted the volume! why is that not good enough?), but you can get a bit of clarity with btrfs subvolume list.
$ sudo btrfs subvolume list /volume1 -qua
ID 256 gen 159842 top level 5 parent_uuid -                                    uuid cbc37b20-901f-b043-8cf1-59b814814140 path <FS_TREE>/base
ID 258 gen 151914 top level 5 parent_uuid -                                    uuid 5039c206-1a89-dc45-a9fe-43f8959cb672 path <FS_TREE>/.iscsi
ID 259 gen 159840 top level 5 parent_uuid -                                    uuid 06d46207-9aa2-2944-ba38-e5736963ec12 path <FS_TREE>/.@plugins
ID 2758 gen 157876 top level 5 parent_uuid cbc37b20-901f-b043-8cf1-59b814814140 uuid 256c36c5-7033-a945-a2db-b6a334a8419f path <FS_TREE>/v2025079-0824
ID 2759 gen 157859 top level 5 parent_uuid cbc37b20-901f-b043-8cf1-59b814814140 uuid 88942ee6-8b52-3d4d-b972-5de2d6764728 path <FS_TREE>/v2025079-2324
ID 2762 gen 159833 top level 256 parent_uuid cbc37b20-901f-b043-8cf1-59b814814140 uuid 6d636914-35a0-3f42-9486-bf5d673b94c5 path base/.@snapshots/v20250710-0936
ID 2763 gen 159836 top level 256 parent_uuid cbc37b20-901f-b043-8cf1-59b814814140 uuid e99df217-4946-a740-bba9-99f64f1a0d69 path base/.@snapshots/v20250710-0951

Now, compare with the output when listing /mnt/rootvol:
$ sudo btrfs subvolume list /mnt/rootvol/ -qua
ID 256 gen 159867 top level 5 parent_uuid -                                    uuid cbc37b20-901f-b043-8cf1-59b814814140 path base
ID 258 gen 151914 top level 5 parent_uuid -                                    uuid 5039c206-1a89-dc45-a9fe-43f8959cb672 path .iscsi
ID 259 gen 159840 top level 5 parent_uuid -                                    uuid 06d46207-9aa2-2944-ba38-e5736963ec12 path .@plugins
ID 2758 gen 157876 top level 5 parent_uuid cbc37b20-901f-b043-8cf1-59b814814140 uuid 256c36c5-7033-a945-a2db-b6a334a8419f path v2025079-0824
ID 2759 gen 157859 top level 5 parent_uuid cbc37b20-901f-b043-8cf1-59b814814140 uuid 88942ee6-8b52-3d4d-b972-5de2d6764728 path v2025079-2324
ID 2762 gen 159833 top level 256 parent_uuid cbc37b20-901f-b043-8cf1-59b814814140 uuid 6d636914-35a0-3f42-9486-bf5d673b94c5 path <FS_TREE>/base/.@snapshots/v20250710-0936
ID 2763 gen 159836 top level 256 parent_uuid cbc37b20-901f-b043-8cf1-59b814814140 uuid e99df217-4946-a740-bba9-99f64f1a0d69 path <FS_TREE>/base/.@snapshots/v20250710-0951

as you can see, the snapshots created in ADM are directly under top level 5 and if you list them under /volume1 (which is just the mount point for the /base subvolume), they are not found directly underneath (despite them being mounted there), which is why you see them being under their own <FS_TREE>.

Conversely, the ones that you can create directly from the cli under volume1, appear as top level 256 and they are under /base if you list the subvolumes under /mnt/rootvol.

I hope this has been useful.

This entry was edited (13 hours ago)
in reply to berdario

PS, while I was closing the dozens of tabs that I opened to investigate how everything fits together, a note on what I wrote earlier:

once mounted, the disk will be integrated in the ADM ui (you’re not going to be able to see it in the “External Devices” ui, nor be able to select it as a destination in the “Backup & Restore” ui).


mounting the disk on a path already accessible by ADM file explorer doesn't work because of permission issues, similar to the immutable flag that you can see with lsattr... but someone on Reddit had another workaround:

reddit.com/r/asustor/comments/…

I mounted the opened device to another path already accessible by ADM file explorer. I don't think it will matter where really. But in my case I made two partitions on an external USB drive. The first partition is a small exFat formatted (10GB). The second partition takes up the rest of the drive and is formatted with cryptsetup (LUKS). Finally, to use this I open the LUKS device and mount it to a location in the first partition (which is automatically mounted by ADM)

Yet another distro choice help post


So sitrep:

Newish desktop
- i7-13700K
- 64Gb DDR5 6000Mhz
- RTX 3070Ti
- MSI PRO Z790-P
(WiFi is not a factor, permanent ethernet connection.)

Needs:
- Gaming
- Music composing
- Coding (Mostly python)
- Video editing

I've been using Linux on and off throughout the years, but lately I've fallen out of the loop somewhat. Started with Slackware around 1998, Kubuntu in the 2000's, Ubuntu 2010's, Kali and Mandrake 2020's -> on my laptop, Ubuntu server on my RasPi. At work, we have a few Fedora servers I have to maintain. So not a complete novice, but somewhat obsolete info.

I have been looking at the immutable distros, like Bazzite and Pop!_OS as I've done the whole song and dance of constantly repairing my distro because of various issues, and I'd like my main recreational machine & distro to be low maintenance, I get to fix linux servers at work enough already, I don't want to bring that home.

With gaming, I've understood that linux has come a loooooong way since I last tried sometime around TBC Launch for WoW when Wine barely worked with it.

Music composing is a little annoying, since apparently both Ableton and FL studio are not an option. I've heard good things about Reaper, but I'll have to do some more research. Feel free to educate me on this topic if you have some insider info. I don't play live sets, just compose and mix.

Video editing, currently I use Davinci Resolve, and apparently it works fine on Linux, just some limitations and shenanigans with codecs. Alternatives are welcome, I don't need 90% of what resolve offers, I can make do with a simpler software as well.

Thank you kindly in advance for departing thine wisdom.

Introduction - Steve's Tutorial on Jujutsu, an alternative front-end to git


Jujutsu is essentially an alternative front-end or "porcelain" to git, both magnificiently simplified and powerful.

I tried it after using Emacs Magit for about six or seven years, and jujutsu is really easier to use than git and useful if one wants a tidy public history of changes (with "tidy" and "public" as Linus Torvalds recommends). Plus it is fully compatible to git as backend - other contributors will not even note you are using it.

This entry was edited (18 hours ago)
in reply to paequ2

Another useful property is that while jujutsu does have worktrees, like git, in many cases where one would use git worktrees (for example when writing accompanying documentation ) it is just easier to use another line of changes (what is a branch in git).

Alas, that jujutsu does not store local change sets automatically on a remote git repo (this happens only when you update and push a git branch), means that still-mutable local changes are not automatically transferred to another computer you work on. And unpublished changes are naturally mutable in jujutsu. But you can safely copy a jj repo via rsync, as changes in jj metadata are thread-safe and atomic. The other way is of course to push a work-in-progress ("WIP") git branch which can mutate and is therefore not allowed to be merged by other people.

This entry was edited (17 hours ago)
in reply to HaraldvonBlauzahn

That’s not really how one would use worktrees in git. Worktrees are useful in the case when e.g. you are working on version 0.15 of your software that has many breaking changes to version 0.14 (perhaps even on a build system level) and you need to release a 0.14.1 patch. Worktrees separate directories which means you don’t need to stash or do a wip commit, nor clear you 0.15 build artefacts. Just cd to a different worktree, checkout the 0.14 branch, create and checkout the 0.14.1 branch, clear build artifacts in a different directory from your main development one, and start working.

When done, just cd back and keep working again without switching branches, clearing artifacts, or doing full rebuilds of the in-development 0.15 version.

Plus, git does not store change sets or branches or anything on any remote unless you push them either, so if you’re having that problem just stop pushing things you don’t want to push. You can totally rsync a git repo, just ensure it’s at rest. Otherwise do what you should be doing anyway: set the repo on another machine as a remote of the other repo, so you can git pull my_private_machine feature/my_private_branch without needing to push to a central repo.

I’m sure jujutsu has many advantages, but it also reads to me like you’re misunderstanding the git model. Which can be a fair critique of git to be fair, but then we would need to talk about what about the git model people have trouble with, why, and how to address those issues, and so far I haven’t seen any kind of research in that direction from jujutsu (not that I’ve been looking particularly hard)

This entry was edited (16 hours ago)
in reply to ugo

One difference between using worktrees and branches in git is that in git you usually have uncommited stuff that's not finished, and worktrees are a way to avoid committing this. And you want to avoid committing early because it is hard to clean-up later. This hesistsnce to commit is not necessary at all in jujutsu - any change to the source files is already captured and will be restored once you go back to that changeset. There are other cases where you use worktrees in git e.g. to isolate a build and an hour-long integration test running it in parallel to your ongoing work, and in thar cases, you'd use workspaces in jujutsu like you'd in git.

but then we would need to talk about what about the git model people have trouble with, why


Too many commands that do subtly and irreversivly things on the repo, with potentially messed-up interim states, only to do the conceptually much simpler task to edit and manipulate the directed acyclic graph of commits.

In short, jujutsu is a commit graph editor and does the same with perhaps 10% of the complexity of git. The man pages on the git reset, branch and merge commands are already larger than the whole - and detailed!- documentation of jujutsu.

Steve Klabnik explains this much better than I can here in his blog that I posted.

This entry was edited (15 hours ago)
in reply to HaraldvonBlauzahn

It is simply not my experience that cleaning up commits after committing early is difficult in git. Amending a commit is a single -a flag away from the git commit command. The opposite problem is when you do too much work and want to split it into multiple commit rather than a huge one, in which case git add -p is again a single flag away from git add.

In general, git’s entire model is to allow you to work first, and do administrative tasks (including tidying up your commit history etc) later.

And almost nothing is truly destructive in git, the vast majority of cases can be fixed by judicious use of git reflog.

The only cases I’ve ran into where git repos became corrupted were caused by external tools, mainly GUIs that label buttons with git commands that do something different when clicked (like the button labeled push actually doing git push —all for no good reason, and such things) with users that have no idea how git works that have been trained just by telling them “click this to save your work, click this to get the last version of the code”

in reply to paequ2

Technically true - but it looks like jj does a lot of history re-writing which would require a lot of care to be taken when working on a shared codebase.

The page on remotes has some cautions in it.

We need the --allow-backwards flag to set the trunk branch to the previous commit because it is a dangerous operation: if we had pushed trunk, things would get weird when we try and push now. We've kept it all local, so there's no issues with doing this.
in reply to HaraldvonBlauzahn

Hrm... It looks interesting but it seems too dedicated to crafting "the perfect commit".

Changing our description changed the commit ID! This is why we have both IDs: the change ID has not changed, but the commit ID has. This allows us to evolve our commit over time, but still have a stable way to refer to all versions of it.


I don't want to "evolve a commit" - I want to capture my changes over time. If I decide later that I want to prepare the commit for merging I will.

I hate it because it's different - but even trying to give it a "benefit of the doubt" I really can't see this as better. It's not like it's difficult to create a "tidy" commit with git as is.

And as far as "easier to use goes"... well... Here's how you get a list of anonymous branches

jj log -r 'heads(all())'

And since they eschew branches with names you get to memorize hash strings instead of branch names that describe the thing you were doing?
jj new pzoqtwuv yykpmnuq -m "merge better documentation"
# vs. 
git merge my_branch_Name

I'm unconvinced. Though jj undo looks neat (and also crazy dangerous unless you can undo an undo?).
This entry was edited (9 hours ago)
in reply to atzanteol

And since they eschew branches with names you get to memorize hash strings instead of branch names that describe the thing you were doing?


No trouble, you can still name branches if you want. And no, you don't have to type the whole changeset hash, the first one to three letters are usually sufficient.

Also, branch names are not a permanent thing, they disappear after you merged them.

If you want, to can put an empty commit with the description of what you want to do at the top of your changes, and then use "jj split" to move changes to different commits before it.
There are several common work flows which are explained in Klabnik's blog post.

in reply to HaraldvonBlauzahn

If the readability of the commit history really does not matter to you - for exsmple, nobody needs to read this code again - it’s possible that jj does not give you enough advantage. Everyone works different.


I mean... It does and I will use git to manage commit histories as necessary. I don't see jj as solving that problem or even making it easier. Doing a single squash-commit or a rebase -i when I merge a branch is relatively trivial.

And from what I can tell it's much easier to do a git pull upstream master than to do jj new skdfsld dskfjas since you'll likely have to lookup those hashes? I mean I wouldn't remember them.

in reply to HaraldvonBlauzahn

One takes them from the last commit log and uses the first few letters


So - it's not the length of the random garbage that is the issue it's the fact that it's random garbage that I have no chance of remembering after 5 seconds and switching between branches. All my branches are instead random hashes that I'll need to lookup or remember.

I've read through the blog. It sounds like they've taken the minor inconvenience of doing a git merge --squash and distributed that pain across every-single-commit you're ever going to make instead. All to get "tidy commits" which were possible before anyway.

I was actually rather interested in the idea of jj being something that made history-rewriting easier (e.g. for removing bad commits with passwords and the like). But the fact that it almost completely throws out the entire concept of working on named branches (yes you can have them - but "One interesting thing about branches in jj that's different than branches in git is that branches do not automatically move." - genius) is just ridiculous. And to claim that it's now simpler just seems like gaslighting.

Looking for a music player


I'm looking for a music player on Pop!_OS that supports playlists, repeating a single track while still being able to swap tracks in the playlist, and also supports fading between songs and when stopping playback. And ideas on what to try?

So far I've tried VLC, Audacious, and Rhythmbox, but none of those seem to support all of those requirements. (Rhythmbox was close but the repeat one from the toolbar plugin doesn't work.)

Edit: Got it working in Rhythmbox after toggling the repeat options a few more times. Still curious if there are other options out there though.

This entry was edited (20 hours ago)

Intel axes another 2,400 jobs in Oregon announced Friday.


Even with all those incentive dollars, tax breaks, and innumerable concessions this will always be what happens. Governments are captured by corporate money, power and influence and then governments give away the people's wealth and corporations take.

KDE's Plasma Bigscreen For TV's Still In Development


How many of you knew about this project?

Info

Plasma Bigscreen is a Plasma-based shell (desktop environment) for TVs and other large displays. It is designed to be used with arrow navigation using remotes or controllers.

Links

Plasma Bigscreen Website

Diving into Plasma Bigscreen

KDE Get Involved

This entry was edited (1 day ago)

no gods no masters only jesus and trump


what does no gods no masters mean?


it means being free from all the liberal elites and fake news media who just want to control us and take away our freedom and tell me what to think and how to live my life and whats safe to eat

trump and jesus DO NOT COUNT


theyre not part of the establishment and theyre not trying to control me okay trump is a rebel and a fighter and jesus is the ultimate rebel and free thinker he went against the establishment and challenged the powers that be like his dad and stuff

i believe in being free and independent and not being controlled by anyone or anything that isnt on my side like for example the mcdonalds corporation what do you think

in reply to pleasestopasking

When you buy crisps sometimes there's just.... hardly any seasoning on them?? I'm talking crisps like Doritos or BBQ Beef Hula Hoops. There can be a massive difference with the amount of seasoning between batches and I'm sure they do it on purpose to make you buy more of them so you can get that really well seasoned batch you loved again lol. i don't actually believe this but I'd be interested to know why
in reply to cm0002

I would prefer it if only my decisions affected my life, and not the decisions of other people. Want a well-paying job you're already good at? Better hope that another person decides you deserve it. Same with getting a place to live. It was quite a shock when I learned you had to fucking interview to rent an apartment, and may not be approved even if you have the money.
This entry was edited (1 day ago)
in reply to 🇰 🌀 🇱 🇦 🇳 🇦 🇰 🇮

Same with getting a place to live. It was quite a shock when I learned you had to fucking interview to rent an apartment, and may not be approved even if you have the money.


Wait what? I've never heard of such a thing in any of the places I've lived. BS like needing 3x the rent or 1st, 2nd and last months rent + deposit yea

But needing to interview‽ That's a new one LMAO

Two French MPs to join new Gaza-bound aid boat


The Handala, operated by the Freedom Flotilla Coalition, left the port of Syracuse shortly after 12:00 pm local time, according to a journalist of the French press agency AFP, carrying about fifteen activists.

Several dozen people, some holding Palestinian flags and others wearing keffiyeh scarves, gathered at the port to cheer the boat's departure with cries of "Free Palestine".

The former Norwegian trawler, loaded with medical supplies, food, children's equipment and medicine, will sail for about a week in the Mediterranean, covering roughly 1,800 kilometres, in the hope of reaching Gaza's coast.
Palestinians inspect the wreckage of a gas station destroyed in an Israeli airstrike in Deir al-Balah, central Gaza Strip, Saturday, July 12, 2025.

Two French MPs to join new Gaza-bound aid boat


The Handala, operated by the Freedom Flotilla Coalition, left the port of Syracuse shortly after 12:00 pm local time, according to a journalist of the French press agency AFP, carrying about fifteen activists.

Several dozen people, some holding Palestinian flags and others wearing keffiyeh scarves, gathered at the port to cheer the boat's departure with cries of "Free Palestine".

The former Norwegian trawler, loaded with medical supplies, food, children's equipment and medicine, will sail for about a week in the Mediterranean, covering roughly 1,800 kilometres, in the hope of reaching Gaza's coast.
Palestinians inspect the wreckage of a gas station destroyed in an Israeli airstrike in Deir al-Balah, central Gaza Strip, Saturday, July 12, 2025.

Recommend a simple, small cheap laptop < 15" I can chuck in my bag for use in coffee shops!


  • I'll buy used, so don't want latest and greatest. It won't be my main laptop.
  • to run linux obviously.
  • good battery life, light, not too small to use, but large enough to type on (obviously can do without numeric keypad). not too fragile!
  • I'll be doing some light python work, perhaps some c/c++ but I'm not after a workhorse, just something for quickly fixing bugs, or making notes on
  • sub 200 GBP / 250USD I guess

I'd be interested in hearing recommendations, and also what to avoid!

This entry was edited (1 day ago)
in reply to Notamoosen

There's also multiple T14's with the 8 core AMD variant at the moment on ebay. I recently purchased a similar version myself.

I have both a 2014 MacBook Pro and the listed device. The T14 has a trash tier trackpad and display when compared to a MacBook, but if I was buying it to do any type of programming, I'd choose the T14 everytime if I'm comparing it to a MacBook with 8 GB of ram and a dual core processor. (when compared to a T14 that has the 8 core AMD 4750U)

Several people injured in second night of anti-migrant riots in Spanish town


Several people were hurt in a second night of anti-migrant unrest in the town of Torre Pacheco in south-east Spain after a pensioner was beaten up, authorities said.

Despite a major police presence, groups armed with batons roamed the streets looking for people with foreign origins, the regional newspaper La Opinión de Murcia reported.

The regional government did not say how many people were injured but stated that at least one person had been arrested over the violence.

The unrest erupted after a 68-year-old man told Spanish media he was beaten up in the street on Wednesday by three young people of north African origin. The attack was filmed and put on social media.

Macron calls on EU to ‘defend European interests resolutely’ from Trump tariffs


The French president, Emmanuel Macron, has called on the EU to “defend European interests resolutely” after Donald Trump threatened to impose 30% tariffs on nearly all imports from the EU.

It came as the EU moved to de-escalate tensions after the blunt move by Trump on Saturday. The bloc declared a further pause on €21bn of retaliatory tariffs until 1 August, dovetailing with the US president’s new deal deadline.

At the same time, the European Commission president, Ursula von der Leyen, and the Indonesian president, Prabowo Subianto, announced a “political agreement” on a free trade deal on Sunday, ending nine years of negotiations.

When Britain's 'feminists' cheer for bombs and sneer at Palestinian suffering


A familiar breed of British pundit has resurfaced - loud, self-declared feminists whose outrage is as selective as it is performative, and whose moral compass somehow always aligns with western state power.

They remain silent as Gaza burns, but are quick to find their voice to cheer on Israel and its allies as they threaten to flatten Iran - civilian casualties be damned.

During Israel's recent strikes on Iran, the radical feminist journalist and co‑founder of Justice for Women, Julie Bindel, branded leftist anti-war feminists "Team Iran" sympathisers. It was a disingenuous, grotesquely misleading and dangerously ideological accusation, but not a surprising one.

While women in Gaza bleed in silence, these pundits reserve their fury for pro-Palestine protesters - smearing them as extremists, branding solidarity as terrorism, twisting every act of dissent into an endorsement of "jihad" and weaponising antisemitism to crush critique.

Mac Plus with a mysterious fault taught me a good lesson | Adrian's Digital Basement


It's time for another 68k Mac repair. I thought it would be a quick and easy fix, but this turned out to be a but more mysterious.

-- Info

Microbug:

DM (dump memory)

SM (set memory)

Video page:

U15D VIA 6522 PA6 Pin 8 to U4G 74AS253 Pin 4

From microbug, I was writing to

3F A700 Screen Buffer 1

00 0000 - 3F FFFF 0M - 4MB Total address space

00 0000 - 0F FFFF 0M - 1MB

00 0000 - 07 FFFF 0K - 512k

xx FCFF Screen1 memory end

xx A700 Screen1 Memory start

xx 7C7F Screen2 Memory End

xx 2700 Screen2 Memory Start

This entry was edited (1 day ago)

Israeli settlers beat Palestinian-American to death, fatally shoot another


By Fayha Shalash in Ramallah, occupied Palestine
Published date: 12 July 2025 15:49 BST

"The attack began when a large group of settlers targeted dozens of #Palestinians attempting to access their land between the villages of Sinjil and al-Mazra'a al-Sharqiya, east of Ramallah.

Such assaults have become a regular occurrence, taking place almost every Friday, as part of efforts to intimidate villagers and drive them off land targeted for settlement."

"'Musalat owned a home in the area and died trying to defend it' - Abdul Samad Abdul Aziz, al-Mazra'a al-Sharqiya municipality member"

Israeli settlers beat Palestinian-American to death, fatally shoot another


By Fayha Shalash in Ramallah, occupied Palestine
Published date: 12 July 2025 15:49 BST

"The attack began when a large group of settlers targeted dozens of #Palestinians attempting to access their land between the villages of Sinjil and al-Mazra'a al-Sharqiya, east of Ramallah.

Such assaults have become a regular occurrence, taking place almost every Friday, as part of efforts to intimidate villagers and drive them off land targeted for settlement."

"'Musalat owned a home in the area and died trying to defend it' - Abdul Samad Abdul Aziz, al-Mazra'a al-Sharqiya municipality member"

in reply to Günther Unlustig 🍄

Okay, just from the pictures, let me say what I think is happening:

1) You're growing too many different kinds of plants in a small space.
2) You're growing Cannabis, which draws literally every sweet-sensing pest.
3) Those things on the underside of the leaves you posted are Ladybug larvae, and they are GOOD.

You clear this up in about a week with a few simple things:

1) Get a clutch of ladybugs from your local nursery or plant stores. This should be available almost everywhere in the US.
2) Although I don't want to advocate for this because I love local pollinators, get a pheromone trap for the stinging insects. They cost about $10, and don't lure honeybees, but WILL kill local carpenter bees and yellow jackets.
3) For the aphids, get a soap-based spray, or make it yourself. It's pretty much just dish soap and water, but there are guides online. Spray EVERY MORNING AND AFTER SUNSET. This plus the ladybug clutch will make quick work of the aphids.
4) I see you have Basil in containers, move that AWAY from the plants that are infested with scale or aphids.
5) Depending on where you live, your nursery's may sell Mantids. Get them. They are beneficial, but ruthless in eating and killing anything in their grasp, including wasps.
6) If you have wasps around, there is a nest nearby. Inspect your building awnings, trees, or under anything shaded and find that nest. It's not two doors over, it's within 100ft of where you got stung. Find it, set a pheromone trap around your plants (not where you think the nest is), then after a lot of them are dead, go find and remove the nests next.

Don't leave standing water around, and make sure that you stay on schedule with the soap spray. Most of this will be cleared in just a week.

Edit: also for the slugs and stuff, you're growing a lot of stuff in a mostly shaded area, so you're just asking for slugs. Line a general area around your plants with Diatomaceous Earth. It's cheap, easy to use, and doesn't harm anything that doesn't crawl. Also, organic.

Double edit: DO NOT spray this black bugs with the striped butts. Those will be ladybugs soon that eat all the aphids. They are good.

This entry was edited (1 day ago)
in reply to just_another_person

You're growing Cannabis, which draws literally every sweet-sensing pest.


Funnily enough, my weed is pretty much the only thing (and chillis) that isn't much affected.
The willow is the worst one, and the pepino second.

Those things on the underside of the leaves you posted are Ladybug larvae, and they are GOOD.


Those larvae pictures are already a bit older, maybe two weeks?
They probably got killed by the ants or wasps, because I rarely see them around anymore.
I also rarely see any other aphid eating insects anymore, only ants and ants carrying carcasses 🙁

in reply to toomanypancakes

I wouldn't say really positive. But it changed a daily slightly negative into a daily slightly positive.

At work I regularly need to take short notes. I like to fill the page to the full. But it gets messier and more complicated aa the day goes on. So I'd strike through and cross out notes I don't need anymore.
The thing is, crossing things out triggers a feeling of making mistakes. So instead of crossing out I started using check-marks (Dutch-style)., which feels like a succes and is also a quick fun flourish to draw. So small annoyances have turned into small victories.

in reply to dontkickducks

I found a slightly different system online once. You mark your todo list with a dash (-) in front. If it's done, cross it to make a plus sign (+). If it's something that you postponed or moved to another list/page, turn the dash into an arrow (->). I adapted it from the dash-plus system years ago: patrickrhone.net/the-dash-plus…

Federal Agents Spray Tear Gas at Protesters, Children During ICE Raids at California Farms


Unknown parent

lemmy - Link to source

cm0002

It's actually quite on-brand for apple.

Usually, Android manufacturers come up with a feature that's actually half decent, but needs a good polish to actually take off.

Apple comes in, refines it to that polish + messaging with their cult, it takes off and Apple claims credit

Ro Khanna is trying to force Congress to vote on releasing the Epstein files


The speaker of the house and Zionist-first Mike Johnson will probably kill this. It would be nice to see if the democrats would vote this through if they gain the house in 2026. My guess, they would not. Epstein had "friends" on both sides of the aisle.

Source on Xitter (xcancel link)

This entry was edited (1 day ago)

Dual carbon sequestration with photosynthetic living materials


ETH Zurich researchers have developed a groundbreaking "living material" that actively captures carbon dioxide from the atmosphere through two mechanisms: biomass production and mineral formation[^1][^2].

The material combines cyanobacteria (photosynthetic bacteria) embedded within a printable hydrogel matrix. The cyanobacteria convert CO2 into biomass through photosynthesis while simultaneously triggering the formation of solid carbonate minerals - a process called microbially induced carbonate precipitation (MICP)[^1].

Key achievements of the material include:

  • Sequestered 2.2 mg of CO2 per gram of hydrogel over 30 days
  • Captured 26 mg of CO2 per gram over 400 days in mineral form
  • Maintained viability for over one year
  • Required only sunlight and artificial seawater to function
  • Can be 3D printed into various structures[^1]

The research team demonstrated practical applications by creating:

  • A 3-meter high tree-trunk structure at the Venice Architecture Biennale that can bind 18kg of CO2 annually
  • Building facade coatings that could capture carbon throughout a building's lifecycle
  • Lattice structures that passively transport nutrients through capillary action[^2]

"As a building material, it could help to store CO2 directly in buildings in the future," said Mark Tibbitt, Professor of Macromolecular Engineering at ETH Zurich[^2].

The material represents a low-maintenance, environmentally friendly approach to carbon capture that operates at ambient conditions using atmospheric CO2, contrasting with industrial methods requiring concentrated CO2 sources and controlled conditions[^1].

[^1]: Nature Communications - Dual carbon sequestration with photosynthetic living materials

[^2]: ETH Zurich - A building material that lives and stores carbon

Investigating intentionality in elephant gestural communication


A groundbreaking study published in July 2025 demonstrates that African savannah elephants use intentional gestures to communicate their goals, similar to great apes[^1]. The research team presented semi-captive elephants with desired and undesired items, recording their communication attempts when experimenters met, partially met, or failed to meet their goals[^1].

The study identified 38 different gesture types that elephants used almost exclusively when a visually attentive experimenter was present[^1]. The elephants showed three key criteria for intentional communication:

  1. Audience directedness - signaling only when someone was watching
  2. Persistence - continuing to gesture when goals were partially met
  3. Elaboration - using new signals when communication failed

The research was conducted at the Jafuta Reserve in Zimbabwe, where elephants combined specific vocalizations with gestures in greeting behaviors[^6]. They used different types of signals including:

  • Silent-visual gestures
  • Audible gestures
  • Tactile gestures
  • Rumble vocalizations

The findings reveal that elephants, like apes, assess the communicative effectiveness of their gesturing and adjust their signals based on the audience's visual attention[^6]. This expands understanding of intentional communication beyond the primate lineage[^9].

[^1]: Royal Society Open Science - Investigating intentionality in elephant gestural communication

[^6]: Nature - Multimodal communication and audience directedness in the greeting behaviour of semi-captive African savannah elephants

[^9]: Pangea Trust - Gestures and greetings used by elephants show intentional multimodal communication

【#TheHagueGroup】To Bogotá | Progressive International (2025-07-12)


#TheHagueGroup】To Bogotá | Progressive International (2025-07-12)

progressive.international/wire…
———

>> This week, more than 25 states from around the world will gather in Bogotá, Colombia, for the “Emergency Conference” to halt the Gaza genocide: the most ambitious multilateral response since Israel began its campaign of devastation two years ago.

>> “The Bogotá conference will go down as the moment in history that states finally stood up to do the right thing,” said UN Special Rapporteur #FrancescaAlbanese, calling the formation of The Hague Group the “most significant political development of the last 20 months.”

>> Jointly convened by Colombia and South Africa, The Hague Group’s Co-Chairs, the conference brings together states far beyond the boundaries of the Group — from Algeria to Brazil, China to Spain, Indonesia to Qatar — “to move from condemnation to collective action,” in the words of Colombian President Gustavo Petro…

#BogotaConference #StopGenocide
@palestine@a.gup.pe

Blender HDR and the reference white issue | About Blender's HDR support on Wayland


From Sebastian Wick’s Mastodon

Blender is getting HDR on Linux via Wayland before Windows! This isn't by accident, but shows how creating a system with a different design creates better results for users and application developers.


Firefox is in this same boat too. It will get HDR support on Linux* sooner than Windows. Firefox currently only supports HDR on MacOS.

This entry was edited (1 day ago)
in reply to cheese_greater

Very often a virtual particle–antiparticle pair appears and because they're very happy they started existing, they immediately hug each other not knowing that will cause them to annihilate each other and disappear.

Every once in a while, the pair appears in a very interesting position: one is outside the event horizon of a black hole (let's call this one Pinocchio) and the other inside it (let's call it 3735928559). Because nothing can escape a black hole, they can't really hug, so Pinocchio says "I'm a real ~~boy~~ particle" and stops being virtual and becomes real, while 3735928559 continues its descent into ~~madness~~ singularity.

Unfortunately, the process means there now exists something (Pinocchio) where there wasn't anything before and that takes energy. And that energy comes from the particle that stayed behind which is now part of the black hole, so it effectively takes energy out of the black hole. You may have heard that energy cannot be created or destroyed, only transformed, that's essentially what happens here.

The Pinocchios go away from the black hole, so they can end up basically anywhere in the universe.

As for the timescales, they entirely depend on the black hole's size. Really tiny black holes evaporate in a matter of seconds, the supermassive ones in a matter of trillions of trillions of trillions of trillions... years.

In fact, black holes will be the last macroscopic structures to exist in the universe because the evaporation is extremely slow - every planet and every star and every gas cloud and every atom will cease to exist long before the last black hole evaporates.

This entry was edited (1 day ago)
in reply to return2ozma

Soviet style mass apartment complexes to combat homelessness but you have to download an app to get in and out, and the app collects and sells all your data. There's a concierge who does spot checks but they accept bribes in fresh fruit, vegetables and old N64 games.

The internets. Multiple internets, like different streaming services and you need to pay a subscription to each one to access all the websites.

Rail guns. Everyone will have a rail gun. It will be awesome.