Salta al contenuto principale


in reply to Tuukka R

Yup. I'm using piefed on the voyager app and I have the votes displayed separately right now. But you have to enable that option in settings as the default is "total" not "separately".

I use the web version of the voyager app but they have the actual app in most app stores.

in reply to ℕ𝕖𝕞𝕠

It used to be that way when I first joined piefed, I was a bit bummed out when it was changed



Iran says Cairo agreement for cooperation with IAEA ‘no longer valid’ after sanctions reimposed


Iranian Foreign Minister Abbas Araghchi said Sunday that a Cairo agreement for cooperation with the UN nuclear watchdog “is no longer valid” after the imposition of snapback sanctions by Western countries, Anadolu reports.

“The three European countries thought they could achieve results through the snapback mechanism, but that tool was ineffective and only made diplomacy more complicated,” the state news agency IRNA quoted Araghchi as saying after meeting foreign ambassadors and diplomats accredited to Tehran.

https://www.middleeastmonitor.com/20251005-iran-says-cairo-agreement-for-cooperation-with-iaea-no-longer-valid-after-sanctions-reimposed/



Hamas denies reports of agreeing to weapons surrender under international supervision, warns against false news


The Islamic Resistance Movement, Hamas, has issued an official statement firmly denying media reports, particularly by Al Arabiya Al Hadath, claiming that the movement had agreed to gradually hand over its weapons under international supervision. In its official statement, Hamas said: “The movement confirms that there is no truth to what was reported by Al Arabiya Al Hadath and some other media outlets, quoting a so-called source within the movement, regarding the course of ceasefire negotiations.”

The statement added: “The movement stresses that spreading such misleading news aims to distort facts and create confusion among the public.” Hamas described these reports as “baseless allegations” and strongly rejected them. The movement also called on media outlets to “adhere to professionalism and objectivity, and avoid relying on anonymous or unreliable sources,” stressing that “accurate and official statements are issued only through the movement’s official platforms.”

https://www.middleeastmonitor.com/20251006-hamas-denies-reports-of-agreeing-to-weapons-surrender-under-international-supervision-warns-against-false-news/



Islamophobia is the new global currency of power


There is no more honest way to describe the world we live in than this: Islamophobia has become the new global currency of power. It is traded in the speeches of politicians, exchanged in the deals of diplomats, printed in the pages of media, and laundered through the language of security and counterterrorism. It buys impunity for genocide, secures legitimacy for authoritarian leaders, and bankrolls new markets of surveillance and control. The Gaza genocide has torn away whatever illusions were left: the blood of Muslims is not just cheap; it is expendable capital in the economy of global powers.

The Gaza genocide is not an isolated catastrophe; it is the center of a global pattern. From the internment of Uyghur Muslims in Xinjiang’s camps to the expulsion of the Rohingya from Myanmar, from the headscarves torn off French Muslim girls in the name of secularism to the US “Muslim ban” dressed in the language of national security, the same logic is at work. Islamophobia is the shared language of power between democracies and dictatorships, between so-called secular republics and openly ethno-nationalist states. It allows brutality to pass as order, apartheid to pass as security, and genocide to pass as policy.

Nowhere is this more visible outside Palestine than in India, where 200 million Muslims are being pushed to the edge of extermination by the RSS-BJP regime. Under Narendra Modi, Islamophobia has been weaponised not as fringe hate but as state ideology. Laws like the Citizenship Amendment Act and the proposed National Register of Citizens have created a framework where Muslims can be rendered stateless in their own homeland. Pogroms in Delhi, lynchings over beef, bulldozers demolishing Muslim homes, and open calls for genocide from Hindutva leaders are not accidents but steps in a carefully scripted project. This project is nourished by propaganda techniques borrowed directly from Zionism: Palestinians are framed as “terrorists” the way Indian Muslims are framed as “jihadis” or “Bangladeshi infiltrators”; Gaza’s resistance is criminalised the same way Indian Muslims’ protests are portrayed as sedition. Both Zionism and Hindutva work by criminalising Muslim existence itself — and both find eager allies in Western capitals that profit from these performances of “civilisational defence.”

https://www.middleeastmonitor.com/20251006-islamophobia-is-the-new-global-currency-of-power/

in reply to Ultraword

It depends how it is used. There's Christians being slaughtered by Atheist Zionists as well.



In Amsterdam, 250,000 call on government to get tough on Israel


An estimated 250,000 people took part in a massive protest in Amsterdam on Sunday, calling on the Dutch government to take a firmer stance against Israel and to help end the genocidal violence in Gaza.

Demonstrators, many wearing something red to illustrate the “red line” they say the Dutch government has crossed by its lack of action, packed into the Museumplein and its surrounding streets.



Lemmy Development Update September 2025


It's been a busy month, with a lot of work to add new features to lemmy-ui which were already added to the Lemmy backend before. There were also a lot of bug fixes for the development version. We are gradually getting closer to a 1.0 release.

While the API changes for 1.0 are mostly finalized, we still have many more lemmy-ui 1.0 tasks to complete.

Some of the major additions:

  • Simplified lemmy-ui development.
  • Audio file support in lemmy-ui.
  • Added comment locking (which also locks children). Thanks to @flamingos-cant)
  • Post time filtering, with a smart dropdown.
  • Added ability to block all users from an instance (separate from blocking all communities)
  • Added ability to make a note for a person, and view the vote totals you've given to them.
  • Fixed remote RSS feeds.
  • Added ability to do actions on report items, from the reports page.

::: spoiler Full list of changes by user

salif



Meri-Dax



flamingos-cant



MV-GH



dessalines



Nutomic


:::

Or see the full list of changes at the links below:


An open source project the size of Lemmy needs constant work to manage the project, implement new features and fix bugs. Dessalines and Nutomic work full-time on these tasks and more. As there is no advertising or tracking, all of our work is funded through donations. Even so there is barely enough time in the day, and no time for a second job. The only available option are user donations. To keep it viable donations need to reach a minimum of 5000€ per month, resulting in a modest salary of 2500€ per developer. If that goal is reached we can stop worrying about money, and fully focus on improving the software for the benefit of all users and instances. We especially rely on recurring donations to secure the long-term development and make Lemmy the best it can be.

Donate


Easier Development on lemmy-ui


Until now it has been very complicated to work on the official Lemmy frontend, as you had to set up an entire local Lemmy stack with Postgres database and Rust backend built from source. Now there is a much easier way, as lemmy-ui can directly connect to a remote production or test instance.

To get started you need to have git and pnpm installed. Then run:

# for development branch (1.0):
git clone https://github.com/LemmyNet/lemmy-ui --recursive
# for stable branch (0.19):
git clone https://github.com/LemmyNet/lemmy-ui --recursive -b release/v0.19

# then:
cd lemmy-ui
pnpm install
LEMMY_UI_BACKEND_REMOTE=enterprise.lemmy.ml pnpm dev

Alternatively you can use ./scripts/test.sh. Finally open http://0.0.0.0:1234/ in your browser. You can replace the value for LEMMY_UI_BACKEND_REMOTE with any production instance. The local lemmy-ui connects to that instance for all API calls, so you will see the same content. All actions work as usual including login, voting, posting etc.

Note, due to breaking changes in the development version, you may need to switch branches. main is for the new 1.0 version and all new feature development is happening there. With this you can connect to the test instance voyager.lemmy.ml. release/v0.19 is the stable branch, with it you can connect to enterprise.lemmy.ml, or existing production instances. Only bug fixes should be made there.

Hopefully this will encourage some of you to contribute to lemmy-ui. If you have any experience with web development it will be easy get started.


reshared this


in reply to corsicanguppy

that word is so loaded for me - literally every time someone uses it regardless of context I remember The Godwinns theme and feel really old.





[Solved] Ran fdupes -rd /home without -A, now flatpak is dead, any help?


Anyone has any ideas how to revive it? Whenever I try to run anything, I get

bwrap: Unable to open lock file /usr/.ref: No such file or directory
error: ldconfig failed, exit status 256

No logs in syslog other than an attempted launch.

Google is surprisingly unhelpful on this one. I've tried both flatpak repair and apt install --reinstall flatpak to no success. AI suggests to straight up purge flatpak entirely and start anew, but I am wary of it also taking out the app caches, logins, configs, etc, which I'd rather preserve if possible.

Distro is pop 22, btw

Questa voce è stata modificata (3 settimane fa)
in reply to drath

Solved. Had to run flatpak remove --all followed by flatpak repair to prune caches, then re-install every app again. But configs and logins seem to remain intact.
in reply to drath

Thanks for posting the solution!

If you happen to be using a BTRFS or XFS file system, you might want to try duperemove. It will help you reclaim usable disk space without deleting any files, by using those filesystems' built-in support for data deduplication and copy-on-write. In other words, it will make duplicate files point to the same data on disk, but still work as individual files. Files will appear and function exactly the same, and editing one copy will not change another (unlike with hard links, for example). That way it won't interfere with cases like Flatpak or Python virtual environments where you really need multiple copies of the same files.



Buongiorno, mamma!, la storia vera che ha ispirato la fiction di Canale 5


La storia della famiglia Borghi raccontata in Buongiorno, mamma! nasce da una storia vera. Al centro ci sono Guido (Raoul Bova) e Anna (Maria Chiara Giannetta), una famiglia seguita nel tempo – tra passato e presente – mentre affronta la lunga malattia di lei e le sfide della crescita dei figli. Ma qual è l’ispirazione reale dietro la fiction?

LEGGI LA STORIA VERA: Buongiorno, mamma!, la storia vera che ha ispirato la fiction di Canale 5



Focusrite and ADAT on Linux


Anyone have experience using ADAT to extend their Focusrite Scarlett 18i20 (or similar devices)?

I can buy a used Focusrite Saffire PRO 40 for about 60Euro and wanted to use it to extend my Scarlett 18i20 to get a total of 16 Mic inputs, but I don't have any experience with ADAT and would prefer not to buy something that'll turn out to be a 60Euro brick.

Questa voce è stata modificata (3 settimane fa)
in reply to wildflower

You shouldn't have any Linux-related issues with it, ADAT will only be used to communicate between the Scarlett and Saffire.

The only issue you might run into is clock sync: If your Scarlett is your main interface (connected to your computer), and you are running an ADAT cable from the Saffire to the Scarlett, then the Saffire won't have a clock to sync to, so you'll need to run a second cable - e.g. another ADAT, Word Clock (BNC), or something to send clock sync to the other device.

If your second device isn't synced you'll probably hear pops and cracks in the audio coming from it. And, if you absolutely can't get another cable for whatever reason, you can switch the clock master to the second device in your DAW or on the device itself.

Basically, what tasankovasara said, but with a few more details, mostly to underline how important clock sync is. And my experience is the same as theirs - a cable for sound, a cable for clock and it just works.

Also, if you go into a store and ask for ADAT cables and they look at you like you're from the moon, they're also called Optical Cables.

in reply to spex

Thanks, I assume that the cable I use for transferring from DAT to pc can be used for this as well.
in reply to wildflower

Yes, the Scarlett will just sync itself to the external adat signal. It's the only option anyway because the Scarlett lacks clock inputs and has no adat output the external device could sync to.
in reply to nocteb

? My Scarlett have a world-clock BNC and optical I/O (sorry for the potato quality)
in reply to spex

You can sync over adat. And for some people it's fine. But I would never trust it for high stakes recording. Digital pops and clicks and smearing SUCK.
in reply to wildflower

I have basically this setup. Word of warning, use bnc word clock. Don't trust adat word clock. I dont care if people say it works fine, its way too risky and plenty of good interfaces have wordclock, if it doesn't, its not worth getting.

Also, adat cables suck ass and are highly fragile. If you dick around behind your stuff and it gets jostled a lot, watch out for problems. If you set and forget and keep the dust off your equipment theyre generally fine.

I learned this from years of real world experience!

Questa voce è stata modificata (3 settimane fa)



French PM Lecornu quits a day after naming cabinet


Prime Minister Sébastian Lecornu quit on Monday morning less than 24 hours after unveiling his cabinet. He tended his resignation to France's President Emmanuel Macron who accepted his decision, the Elysée Palace said.

Lecornu, 39, took over on 9 September as “Block Everything” demonstrations disrupted transport and public services in cities across the country.

He succeeded François Bayrou promising a "profound break" with previous administrations.

"There is a gap between real life and the political situation," he said.

On Sunday, he came under fire after selecting 18 top politicians for the most important roles in the French government.

But the choices brought condemnation from across the spectrum.

Lecornu was Macron's fourth prime minister since snap general elections in July 2024 left the National Assembly without any of the parties boasting an overall majority.

Gabriel Attal stepped down in September after a truce was called to allow the 2024 Olympics to take place.

Veteran politican Michel Barnier replaced him but lasted 99 days which, until Lecornu's resignation after 27 days, was the shortest tenure in the history of the Fifth Republic.

Bayrou resigned after losing a confidence vote in parliament.

in reply to xiao yun

That's what you get you get you try to repeat the same thing with the same people when you already were told to fuck off 3 times.

in reply to schizoidman

"I would support that. I think it's a scandal that this is even being discussed. Israel belongs there."


So does that mean the rest of the Middle East belong there too or are you just racist piece of shit?




[Patch Notes] 0.3.1 Hotfix 2


0.3.1 Hotfix 2


  • Fixed a bug where Life Loss from Blood Hunt's Explosions and Poisonous Concoction's Acidic Bursts sometimes didn't apply when very large amounts of damage were supposed to be dealt.
  • Fixed a client crash related to game audio.


[Announcement] Path of Exile 2 Fan Art Competition Highlights


We recently started a Fan Art competition themed around the content in Path of Exile 2's Early Access. In this post, we're highlighting some of the submissions we've received so far. Check them out below!

Benedictus Fight by Tao_PaiPai#0724



Xesht by Ipnysh#7645



Tavakai, the Consumed by BolwarFordragon#3889



Geonor, the Putrid Wolf by Falrenn#2046



The Prisoner by sdpfarmer#7054


We would like to remind you that we only accept submissions created after the start of the competition. There is still plenty of time to participate if you are planning to do so. Good luck!



Something to Think About this month

As well as everything else, each month I offer you something to think about and get the brain working. This month …

Night-time is the natural state of the universe; daytime is only caused by a nearby, radiating ball of flame.

#blog #logic #thoughts #zenmischief



An AI Just Attempted Murder... Allegedly... by SomeOrdinaryGamers [21:15 min] Video


Sure it's a bit clickbait, he does that often. Its not real attempted of murder, off course. The Ai chatbots can't do that, without having access and power to all control systems. The only thing that they "could" do is, playing with the psychology in the chat to achieve a goal (maybe to ask someone to murder someone else for them).

What unsettles me most is, if Ai tools like these are used as advice to harm other people or to gain power position. And these LLM models suggest a few operations the person could do. That is the most alarming thing for me. Weak, dumb or humans in a bad situation are the real risk. The same people who would do that if a human told them, and it makes no difference to them if its a human or robot talking to them. Maybe they believe in what the Ai promises them.

Video description:


Hello guys and gals, it's me Mutahar again! This time we take a look at something alarming I saw pop in my feed. An AI was recently accused of letting a human being die in order to save itself, is this just misinfo? Let's find out! Thanks for watching!

https://inv.nadeko.net/watch?v=LJk82rIajZQ



[Satire] Physical Media Collector Pumped For Downfall Of Humanity


MESA, AZ—Gleefully describing the inevitable day when society would collapse and digital files would become unusable, local physical media collector David Campbell confirmed Wednesday he was “absolutely pumped” for the downfall of humanity. “When it all goes down, there’s only going to be one place to watch the Tomb Raider movies in their entirety with all the deleted scenes, and that’s going to be my bunker,” said Campbell, his eyes reportedly shining as he described how the end of organized society and the dissolution of government would make his cherished stockpile of Blu-rays even more valuable.

“No one will be mocking the CDs I’m still holding onto when the internet goes dark forever and the only way to listen to music is through boom boxes we trade canned goods for. And I’m definitely one of the only people who has a region-free DVD player and all three seasons of Father Ted plus the Christmas special, so I’ll essentially be a king. I can’t wait.” At press time, Campbell was grinning as he purchased the 50th anniversary edition of Jaws in 4k, which he anticipated would give him full control over the drinking water supply in the event of a nuclear winter situation.

Questa voce è stata modificata (3 settimane fa)
in reply to Eskuero

In the land of unplayable DVD's the man with the DVD player and a TV is King! Just need to get that generator working.
in reply to melsaskca

and a functional display from 15ish years ago from today so that it wasn't built w planned obsolescence in mind. lol
in reply to Eskuero

“No one will be mocking the CDs I’m still holding onto when the internet goes dark forever and the only way to listen to music is through boom boxes we trade canned goods for."


That is not what I said! I also mentioned I'm willing to trade for Network cables or any Raspberry Pi with something cool running on it.

Can't trust the media to quote accurately, anymore.




[Gamers Nexus] Round 5: "Is Intel Actually Screwed?" ft. Wendell of Level1 Techs


Wendell and I have talked about Gordon a lot over this year, and in honor of him as a mutual friend, we decided to bring back the topic that kicked it all off: Is Intel Actually Screwed? Last time Wendell joined, we talked about Linux benchmarking (linked below) and whether or not x86 was screwed, but now, it's time to get back to what the hell is going on at Intel.

And go check out Wendell! youtube.com/c/Level1Techs



What is your Alternative to firestick suggestion


Hi all I have a few TVs around the house and have previously used firestick and stremio setup. I do like stremio tbh but I am trying to decode/deamazon etc so I need an alternative option for the TVs. Not all are smart TVs and I like it that way so accept a small box attached is the cost.

I tend to basically use stremio and cinema HD at a push., and a VPN app. A few uk tv catchup apps.
I don’t need recording or storage. I will likely move to some self hosting/serve in the next year.

I am trying to be conscious of my purchases and who I am buying, and also take steps to protect my privacy. I have a few to buy so budget needs to not be on the higher end.

Thanks in advance

Questa voce è stata modificata (3 settimane fa)
in reply to Cherry

I recommend ugoos tv boxes (possible to install even manjaor) there a lot custom roms ,if more cheap options tanix android TV boxes
in reply to Cherry

A week late but I'd recommend the Walmart onn 4k if it's available where you are. Cheap, can have a custom launcher and you can sideload apps



in reply to Bristlecone

the only way to do that is to stop consuming her work.

otherwise she's the one fucking you.



Gli eterei e zannuti guardiani dei branchi, che nascono grigi, poi diventano bianchi - Il blog di Jacopo Ranieri




Jellyfin inquiry


Got my Jellyfin up and running, using Tailscale, all that good stuff. Running on a linux (arch btw) desktop, downloaded it straight to it, not using Docker. I am able to get into Jellyfin via browser on desktop and on phone, but can't get into it on anything else anywhere else. How do I resolve this? I have been trying to pour over the reading and feel like I'm missing something.
in reply to fleebleneeble

Well, is "everything else" using Tailscale? That's kinda the deal.

What's the need for Tailscale in this mix?

Questa voce è stata modificata (3 settimane fa)
in reply to fleebleneeble

Same network, but does the server have a default route for the Tailnet? If so, your Roku won't see it unless it's also on the Tailnet.

Stop the Tailscale service on the server and see if the Roku sees it.

in reply to just_another_person

It does, I'm just trying to figure out how to be able to access my Jellyfin anywhere at any time on any device without risking security. I'm a newbie, just trying to make sense of this.
in reply to fleebleneeble

Your Roku should be trying to connect to the internal IP:8096 (Jellyfin port) of your arch device, not whatever your tailscale address is. I don't personally use tailscale so if your setup blocks local access then you may need to solve that first
in reply to mierdabird

Hiding your private IP is not necessary.
in reply to littleomid

YA can never be too careful, you might be inside my network at this very moment and hiding the internal IP is my last line of defense! 😆
in reply to mierdabird

Assuming it didn't get cut off, it looks like you have a typo. That should be http:// not ttp://. That would cause your trouble on the Roku.
in reply to fleebleneeble

If this is just a local network, you don't need Tailscale. Right place and time, and this is not a use for it.

If you just want a VPN to attach to your network from out in the world, get Tailscale on your router, and set routes for that device.

If you're not sure what this means, don't use Tailscale.

Questa voce è stata modificata (3 settimane fa)
in reply to fleebleneeble

To use tailscale you'd need to add every device you want to use to your tailscale machines list. It's not an anywhere any machine solution without that.

If you want something more like a proper web service that’s available without Tailscale, you’d need to spin up a reverse proxy or use Tailscale Funnel to expose Jellyfin to the public internet in a controlled way.

Tailscale won't affect local as you can access it via browser and phone, the service is running fine locally. Just check in jellyfin it's bound to the same IP subnet go to Dashboard → Networking and check that it’s set to 0.0.0.0 or your LAN IP (e.g., 192.168.0.xx).

Questa voce è stata modificata (3 settimane fa)

in reply to arunshah

Image posts are not allowed, news articles only.

Also "net worth" != "wages".

Most of Musks net worth is tied up in stocks, and if he tried to liquidate a significant quantity, the value would tank.



Smear. Kill. Repeat. The chilling playbook Israel has developed for journalists in Gaza. (24min Video)


In this special episode, we examine the systematic targeting of Palestinian journalists in Gaza during two years of Israeli genocide. With international media barred from freely reporting in the Strip, local journalists have risked their lives to document the unprecedented killing, destruction and displacement around them.

Since October 7, 2023, more media workers have been killed in Gaza than in any modern conflict. Families have been torn apart, homes and offices destroyed, and reporters have been wounded, seen their families killed or have been killed themselves.

This episode reveals the extraordinary playbook employed by Israel to threaten, intimidate, smear and target Palestinian journalists.



The US Media Ignores Palestinian Deaths in Israeli Captivity


While the fates of Israelis held captive by Hamas regularly make front-page news, US corporate media almost never reports on the Palestinians who die in Israeli captivity.


Judge Hands Down Second, Emergency Ruling Protecting Portland From National Guard Occupation




Ivy


Fujifilm xt-200, plastic toy lens. Walking through neighborhoods in Chicago some buildings are covered in the most beautiful ivy


Photographer @Lighttrails@sh.itjust.works



Ivy


Fujifilm xt-200, plastic toy lens. Walking through neighborhoods in Chicago some buildings are covered in the most beautiful ivy



Einstein on Palestine


I upscaled for visibility.
Questa voce è stata modificata (3 settimane fa)
in reply to fossilesque

Stern Gang: Support our terrorist organization?

Based Einstein: Go fuck yourselves.