Salta al contenuto principale




in reply to iqarwone

"Windows has inconsistency with icons and design in some areas."

I prefer Linux, but what? Oh, hello pot! Have you met my friend kettle?



Labour council leader called rape gang victims ‘white trash'


cross-posted from: lemy.lol/post/51666631

Dennis Jones, the leader of Peterborough City Council, made the comments in late-night exchanges with a younger councillor, Daisy Blakemore Creedon.

When she raised concerns about immigration and women's safety, Jones lashed out: "Oh so white British cops fucking poor white trash in Rotherham is OK, is it? Get a fucking grip, Daisy."



Labour council leader called rape gang victims ‘white trash'


Dennis Jones, the leader of Peterborough City Council, made the comments in late-night exchanges with a younger councillor, Daisy Blakemore Creedon.

When she raised concerns about immigration and women's safety, Jones lashed out: "Oh so white British cops fuckingg poor white trash in Rotherham is OK, is it? Get a fucking grip, Daisy."


Questa voce è stata modificata (1 settimana fa)


Labour council leader called rape gang victims ‘white trash'


Dennis Jones, the leader of Peterborough City Council, made the comments in late-night exchanges with a younger councillor, Daisy Blakemore Creedon.

When she raised concerns about immigration and women's safety, Jones lashed out: "Oh so white British cops fuckingg poor white trash in Rotherham is OK, is it? Get a fucking grip, Daisy."

Questa voce è stata modificata (1 settimana fa)


China unveils brain-inspired AI that could redefine efficiency


preprint here arxiv.org/pdf/2509.05276v1

in reply to ChaoticNeutralCzech

Hmmm... All right for me, why can't I replicate the issue with this comment?
Questa voce è stata modificata (1 settimana fa)



is the command locate too old for debian 13 xfce?


locate is a command I've used in the past, but now, fresh installed with sudo apt get locate it doesn return anything.

locate --version returns
locate (GNU findutils) 4.10.0, from 2024

or, have I forgotten something?

in reply to arsus5478

locate uses an index you need to update using updatedb before it is able to find anything.

updatedb may run periodically because of a cron job, but the index is probably missing right after installing it manually.

Questa voce è stata modificata (1 settimana fa)
in reply to gnuhaut

Why don't filesystems maintain such a database so you don't have to spend cycles on a file indexer ?
in reply to interdimensionalmeme

They do. You look at it every time you see the contents of your disk. It's just organised in a tree to make path based lookups fast and locate organises its database differently to make fast basename lookups.
in reply to interdimensionalmeme

I guess because that adds extra complexity that isn't inherently necessary and can be added on top, plus it eats resources. You'll spend the cycles either way basically, at least this way it's optional. I don't bother with a file indexer because with SSDs nowadays, find is pretty fast, and how often do you search for files anyway?

Linux has APIs to get notified on file system events (fanotify, inotify) which would allow such a service to update itself whenever files are created/delete immediately, but locate is way older than that, from the 80s. I think popular DEs have something like that.

There's also ways to search for specific files that come with packages (e.g. dpkg -S), because the package manager already maintains an index of files that were installed by it, so you can use that for most stuff outside /home.

in reply to gnuhaut

I search for files dozens of times per day, it's largely how I navigate between folders.
And often advanced searches like only this root folder, in reverse order of accessed time, or only folder
On windows I use void tools everything but nothing like it compares in speed and ease of use on linux.
It's one of my many roadblock to transition to linux.
in reply to interdimensionalmeme

Have you tried RTFM? 😛

Jokes aside afaik you could do everything you mentioned with sort, find (with -type f, -printf and -mtime) and grep (filtering via regex with the -e flag).

Alternatively you could try KDE's file explorer dolphin (or even just its search utility kfind) as a graphical alternative.

My point is switching to linux is not quick or easy, but there are few really impassable roadblocks (games with shitty kernel level anticheat for example) and there is a high likelyhood someone in this community has encountered your problems aswell and migjt even know a solution.

in reply to pitiable_sandwich540

Nemo, Cinnamon's file manager, also has great built-in search. I almost never feel the need to open up Catfish.
in reply to swelter_spark

Yeah, i like nemo a lot, i use it on my main machine when i need a gui, because it has not as many dependencies as dolphin. And it does not feel as "bloated" as dolphin. It does one thing (be a file explorer) and does well. 😀
in reply to pitiable_sandwich540

using find to sort all pictures in /pics/ by inverted (i.e., most recently accessed first) access time, and filtering only those with an exposure time between 1/20 and 1/100 seconds

find /pics/ -type f \( -iname '*.jpg' -o -iname '*.jpeg' -o -iname '*.png' \) \
  -exec exiftool -ExposureTime -T {} \; -exec bash -c '
    file="$1"
    exposure="$2"

    # Convert exposure to decimal
    if [[ "$exposure" =~ ^([0-9]+)/([0-9]+)$ ]]; then
        num="${BASH_REMATCH[1]}"
        denom="${BASH_REMATCH[2]}"
        exposure_val=$(echo "$num / $denom" | bc -l)
    else
        exposure_val="$exposure"
    fi

    # Filter by exposure between 1/100 and 1/20 seconds
    if (( $(echo "$exposure_val >= 0.01" | bc -l) )) && (( $(echo "$exposure_val <= 0.05" | bc -l) )); then
        atime=$(stat -c %X "$file")  # Access time (epoch)
        echo "$atime $file"
    fi
  ' bash {} $(exiftool -s3 -ExposureTime {}) | sort -nr

In voidtools everything it would be

pic: path:"C:\pics" sort:da-descending ExposureTime:1/20..1/100

But actually doesn't work because "ExposureTime" is only available as an sorting order not a filter but you get the gist ;)

in reply to interdimensionalmeme

Ah yeah okay, I see, that would be quite tedious to implement in bash. Everything looks pretty neat. 😁

Buuut I just looked at KDE's search framework filter options (used by dolphin if you press + f ) and it seems it is indeed possible to search/filter by exposure time with dolphin or via directly in the cli.

in reply to interdimensionalmeme

Seems like a good and useful workflow for sure. Don't know if something equivalent exists, maybe it doesn't.

I'd personally use find for this, but it is a command line tool, and while I have memorized some of the more common options (directories-only would be -type d for example), I'd have to look at the manpage for more advances options. It's not hard exactly but it's not easy-to-use GUI software for sure.

in reply to gnuhaut

I've taken to using chatgpt to make me the more advanced find queries, before on linux I would ONLY use find /path | grep -i somenames
So that's already an improvement, if still a bit tedious

The thing about everything is that it's so ergonomic, fast and powerful.

Being able to search anything and sort everywhich way with the click of a button

Check out this sublime search syntax (this not even half of it ! )

And the re-ordering by columns, and there are just SO MANY columns you can add, like search by EXIF camera exposure, no problem !

I really wish there was something as good as "everything" on linux, it's just awesome.

in reply to interdimensionalmeme

Oh that's pretty cool! I does seem like a shame to not have something like that on Linux.
Questa voce è stata modificata (1 settimana fa)
in reply to gnuhaut

Maybe it could run on something like wine ?
But if there's not something like... whatever it is that thing that makes WizTree faster than WinDirStat, then it would probably work in a very slow compatibility mode
in reply to interdimensionalmeme

You might like fd. And bat. And generally awesome shell.
Questa voce è stata modificata (6 giorni fa)
in reply to MonkderVierte

I wonder if the helper-scripts would allow something like that or if they're proxmox scripts only ?
in reply to arsus5478

Btw, there's also
IFS=:; find $PATH -executable -iname "$1" -print
Speed advantages of a indexed DB don't matter much anymore with nowadays hardware.
Questa voce è stata modificata (6 giorni fa)


[Video] Zionists from Spain harass the Gaza flotilla with Israeli genocide glorification music. Claiming they will play it every night to prevent them from sleeping


Additional context from an ex-Israeli who knows the song:

It's not just some random Israeli music he's playing, it's genocidal anthem "Harbu Darbu" by Ness & Stila. This song has played (and continues to play) a significant role in creating the post-October7 hyper-genocidal atmosphere that's been sweeping Israel and enabling a Holocaust
Questa voce è stata modificata (1 settimana fa)


How to make tagging easier?


When I want to tag a post, I often come across the issue of "tagging uncertainty". E.g.

  • Did I use singular (KungFuMovie) or plural (KungFuMovies) on other occasions?
  • Did I use 'native' (KurosawaAkira) or Western (AkiraKurosawa) name order?
  • Have I even used a tag on this topic before, or is it the first time?

In order to check, I:

  • scroll up or down until I see the top of the community sidebar info
  • middle-click the link there to the community home page (only available on my own community because I placed one there myself) to open in a new tab
  • switch from posting window tab to that new tab
  • scroll down until I see "All community tags"
  • click on that
  • look for the tag I'm interested in
  • go back to the tab with the posting window
  • write the desired tag

E.g. for this very post, I wasn't sure whether to tag it "tag", "tags" or "tagging". I had to click "Communities", search for "help", middle-click on "Piefed Help", switch to that tab and then look at the tag area to see which form has been used previously.

Some ideas that might make tagging easier:

  • a "See all community tags" link next to the tags field in the posting window (easy to do?), opens in a new tab or a pop-up
  • auto-suggest one or more tags once you start typing one in the tag field (hard to do?), like on Mastodon
  • any other ideas, anyone?
in reply to Blaze (he/him)

It's kind of a "wisdom of the crowd" thing. The idea that on average, in aggregate, most of the time, it starts to make sense and be useful. But individual posts are often tagged very "wrongly".

Having said that... For space reasons the tag list in the sidebar is limited to 30 tags and I'm sure there is more we could do to improve the utility of it. Maybe a separate page which has a rotatable tag cloud at the top and below that the list of posts dynamically updates based on whatever is the currently selected tag...

in reply to Rimu

Honestly?

At this point, given their very limited range of usefulness (one-community-only, mods can't add, remove or edit tags on posts, clicking #tag won't find #tags or #tagging, the work required to try to avoid such 'tag splitting', Lemmy users can't add them, Lemmy users can't see them), I'm tempted to just stop bothering with tags altogether.

But then I remember "Search this community" doesn't really work...

:::spoiler jackiechan tag vs "Search this community" for jackie

:::

So if I give up on tagging and community search is broken, what option does that leave for anyone trying to find something in a community? Flairs? Or just plain, old Ctrl+F? (Yes, I've had to resort to this with Piefed, with varying degrees of success.)

(I've already learned to keep an Alex Lemmy page open all the time, so I can do things like search a community.)

So I guess I have to keep tagging if I want Piefed users to be able to ever find anything. And I guess it will still involve me doing all those steps I listed in OP. 🙁 Not exactly a candidate for !piefed_joy@piefed.social





Microsoft mandates a return to office







U.S. hits alleged Venezuelan drug boat, Trump to send National Guard to Chicago and Baltimore, Yemen strikes back at Israel, 21,000 Palestinian children disabled in Gaza war


cross-posted from: lemmy.ml/post/35651038

Drop Site Daily: September 3, 2025
At least 44 Palestinians, including 33 in Gaza City, have been killed in Israeli attacks since dawn. Israeli forces escalating aerial and artillery strikes across Gaza City. At least 21,000 children have been disabled by Israel’s war on Gaza. Ansarallah launches retaliatory strikes against Israel after assassination of senior civilian officials in Yemen, including its prime minister. U.S. military kills 11 people in strike on alleged Venezuelan drug trafficking boat. China holds a major military parade to mark the 80th anniversary of WWII. Israel drops grenades near the UN peacekeeping force in Lebanon. U.S. President Donald Trump says he is sending federal troops to Chicago and Baltimore.




U.S. hits alleged Venezuelan drug boat, Trump to send National Guard to Chicago and Baltimore, Yemen strikes back at Israel, 21,000 Palestinian children disabled in Gaza war


Drop Site Daily: September 3, 2025

At least 44 Palestinians, including 33 in Gaza City, have been killed in Israeli attacks since dawn. Israeli forces escalating aerial and artillery strikes across Gaza City. At least 21,000 children have been disabled by Israel’s war on Gaza. Ansarallah launches retaliatory strikes against Israel after assassination of senior civilian officials in Yemen, including its prime minister. U.S. military kills 11 people in strike on alleged Venezuelan drug trafficking boat. China holds a major military parade to mark the 80th anniversary of WWII. Israel drops grenades near the UN peacekeeping force in Lebanon. U.S. President Donald Trump says he is sending federal troops to Chicago and Baltimore.





U.S. hits alleged Venezuelan drug boat, Trump to send National Guard to Chicago and Baltimore, Yemen strikes back at Israel, 21,000 Palestinian children disabled in Gaza war


Drop Site Daily: September 3, 2025

At least 44 Palestinians, including 33 in Gaza City, have been killed in Israeli attacks since dawn. Israeli forces escalating aerial and artillery strikes across Gaza City. At least 21,000 children have been disabled by Israel’s war on Gaza. Ansarallah launches retaliatory strikes against Israel after assassination of senior civilian officials in Yemen, including its prime minister. U.S. military kills 11 people in strike on alleged Venezuelan drug trafficking boat. China holds a major military parade to mark the 80th anniversary of WWII. Israel drops grenades near the UN peacekeeping force in Lebanon. U.S. President Donald Trump says he is sending federal troops to Chicago and Baltimore.


Google’s $45 Million Contract With Netanyahu's Office to Spread Israeli Propaganda


in reply to BCsven

They publicly recinded their "Don't be Evil" motto years ago. You should know that anyone that does something like that is evil.

Degoogling is a thing for this reason.

in reply to BCsven

Interested in how you deal with photos and "drive". For mail/calendar I'm looking at tuta, i'm still not sure how to deal with the large number of accounts i have associated with gmail.
in reply to karlhungus

Yeah me too. My only hope is he was pandering to trump so trump wouldn't pull the plug on encrypted services like proton. proton is moving services out of Switzerland due to new laws being passed that providers must keep and handover keys for data to authorities. They are moving data services to Germany. They started with their AI chatbot, and are supposed to be moving the rest...so since its in Germany Tuta is probably a good choice since we can't rely on swiss privacy anymore
in reply to NightOwl

$45 million??? That's a rounding error on a single day of Google's income. I'm not even a little shocked that they have no scruples or integrity whatsoever, but I AM shocked how apparently CHEAP our democracy is.

Hell, it'll probably cost more than that to IMPLEMENT this in any meaningful sense!

Questa voce è stata modificata (1 settimana fa)


in reply to ☆ Yσɠƚԋσʂ ☆

That article looks impressive & well-written, but my brain is done for today so 🔖
in reply to davel

yeah you definitely have to be in the right mental space to digest these kinds of write ups



How much of my digital soul am I giving away by using "The Transit App?"


I currently use "The Transit App" for navigating by transit. How bad is that privacy wise? I know it tracks your location at least while you're in the en route mode because it advertises that as part of its real time tracking system, and I'm torn on whether I'm okay with that given that I directly benefit from the improved real time data whenever someone else taking the same line is end route (you can see transit vehicles being tracked by another user's app session vs data from the transit agency itself). Is there anything more shady going on with that app? Is there any way to tell whether it's recording my motion sensors? Is the generic sounding name intentionally hiding that it's made by the CIA or something?
Questa voce è stata modificata (1 settimana fa)
in reply to HiddenLayer555

no idea what that does but OsmAnd has navigation with public transit which works plenty fine for my use cases
in reply to glitching

atleast where I live transit has all the metro and bus lines, and real-tike tracking of when the next bus/metro is, while osmand just has the metro and like 3 bus lines, so it's kinda useless for transit.

Osmand ia great for biking though.

Questa voce è stata modificata (1 settimana fa)
in reply to Blisterexe

Yes, privacy is multiplayer. When we do nothing to spread these ideas, others won't stop infecting themselves with slop and do nothing to expand any app we all control.
Questa voce è stata modificata (1 settimana fa)
in reply to HiddenLayer555

I don’t know anything about that app aside from what it does, which is what wayze does and wayze was an Israeli spying cutout.

Just use a map and get on a stop or loop ahead of your appointment. I’m finding it hard to imagine a serious use for that app but it’s possible I just don’t understand.




German car industry sheds 51,500 jobs in a year




Putin’s Energy Wins in China Deal a Blow to Trump’s Export Push


archive.ph/wY56Y


I am going to Gaza with the flotilla.


Hi everyone.

I'm a member of the flotilla and preparing to leave for Gaza soon hopefully. A lot hanging on logistics and other things still but I will know more the coming days.

Had to start a new channel old one did not work properly youtube.com/@andersjohansson-o…

action_for_palestine@tankie.tube will only post post sailing here.

anders_gsf@tankie.tube for the trip

Sorry for the changes had to switch up on the phones a bit.

We will set sail in September. I hope to be be able to update a bit on these channels and setting up new accounts for this purpose.

Any tips, shares and discussions are welcomed and I hope to be be able to update on the journey a bit here.

Official updates will be made from official accounts but this will be my personal experience and as a backup for when other communications no longer are available.

Palestine will be free!

Official channels:
globalsumudflotilla.org/
X -
@gbsumudflotilla in
stagram -
globalsumudflotilla
Telegram -
@globalsumudflotilla
youtube.com/@globalsumudflotil…
tiktok.com/@globalsumudflotill…

I am currently as reserv and helping out , not sure if I will be able to sail. I hope so but a lot of things to happen before a decision there.

Barcelona just had a press conference announcing departure

Got instagram @andersjohanssongsf

Questa voce è stata modificata (4 giorni fa)
in reply to From_the_river_to_the_sea [none/use name]

Hi , so I still can't update much more but to say we have been delayed. A lot of work do to here and amazing people to meet . Huge support from the locals here in Italy. The dockworkers union will stop all Isreal transports if any interference with the flotilla. As well as other actions from university groups and others.

When I applied for this my thoughts was that the likely outcome would be interception . Now I'm getting more and more hopeful that we will actually be able to go all the way to Gaza.


in reply to ☆ Yσɠƚԋσʂ ☆

reminds me of tony soprano blaming black people for crime while he is literally a gangster lmao
in reply to ☆ Yσɠƚԋσʂ ☆

Let's be honest, the average american isn't saying rich people. They are saying "them" or "the deep state" or some other dogwhistle relating to jews. Or they'll just find a term that abstracts the problem away from rich people.
Questa voce è stata modificata (1 settimana fa)


DNS app asking for my location. How bad is that?


I'm working on an old tablet and couldn't figure out how to switch to dns over https, so I got an app that assisted. I found one that only had 1000 downloads, no reviews, and just someone's name as the creator so I thought it was safe, but it's asking for my location to scan wifi signals. Is that phishy or standard issue?
in reply to irmadlad

Some people don't realise it immediately, though. What would you say for that one?
in reply to birdwing

Well, for one, I'm not giving OP the piss for downloading the app. We all get suckered at one time or another. However, as I highlited, 1000 downloads, no reviews, and just someone’s name, is cause to pause and do some diligent searches regarding the app. If it were legit, most likely you'll find someone who has used the app and voiced their opinion. For instance, when I go to github, the first thing I want to see is when was the last activity, how many stars, how mature is the project, read the issue tracking section, etc. After a while you get a spidey sense about stuff.

Be cautious and verify.





in reply to icegladiator

As a former Mormon I find this mildly interesting, but I don't have much hope that large numbers of LDS people will begin to protest against the genocide. The pro-Israel thing is deeply embedded... as in, I'm pretty sure there are an awful lot of LDS people who will see the sacrifice of a million or two Palestinians, even if totally innocent, as a reasonable price to pay for God's Chosen People getting the Land Of The Covenant to usher in the Second Coming.

Even deeper than that: Mormons are mostly herd animals. Dissent has been trained out of them (unless the dissent is authorized by the First Presidency).



Alternatives to GrapheneOS


Wanted to get a new phone since my S20 is starting to show its age. And with all the enshitification of Android lately I thought it'd be good to try a different phone OS.

However, I don't really want to buy a Google Pixel so GrapheneOS is a no go. I was really interested in the Fold 7 but it seems that will not be possible to get without Android. Thought DivestOS was good but it looks like support ended in 2024.

What other phone OS are people using?

in reply to impudentmortal

I've heard good things about Iode OS. Apparently it's security focused but I honestly haven't looked in to it at all
in reply to /home/pineapplelover

Be aware that they use a freemium model. You'll have to pay for their built-in ad blocker to be useful.
in reply to Chais

That's a little stupid. I use vpn with adblocking capabilities, I feel like that will accomplish the same thing
in reply to /home/pineapplelover

It doesn't block nothing without payment, but it doesn't block everything either, which makes it useless IMO.
in reply to /home/pineapplelover

No, it is not.

They forked LinaegeOS, which is 0 security oriented, stripped it of all its private services (like Seedvault) and now want the user to pay a subscription for their non encrypted backup servers and a shitty DNS blocker

in reply to impudentmortal

You could buy a used Pixel, if you don't want to support Google.






One GNOME session, multiple styles


gtk3, gtk4 (probably?) qt, qt in flatpak, gtk3 in flatpak, gtk4 in flatpak (probably)... I'm just not fighting it anymore
in reply to omawarisan

doesn't help half of electron apps decide to theme themselves. It's a massive pain on Windows too.