Salta al contenuto principale




Browser Alternatives to Chrome


Hi!

I'm wondering if anybody here has used Vivaldi as their browser and if so, what did you like and what didn't you like?

Same questions for Ecosia.

Same questions for DuckDuckGo.

Are there any others that are worth looking at and if you think so, why? (Well, beyond the whole it's not connected to Google thing...)





Bad brainwaves: ChatGPT makes you stupid


in reply to David Gerard

Posted this on a Discord I'm in - one of the near immediate responses was "I'm glad they made a non-invasive procedure to lobotomise people".

Nothing more to add, I just think that's hilarious



Is Matrix cooked?


In today's episode of Kill The Messenger, Matrix co-founder Matthew Hodgson reveals how full of bullshit is the writer of the original article.

The messages were published in the Office of the Matrix.org Foundation room: matrix.to/#%2F%21sWpnrYUMmaBrl…

paper.wf/alexia/matrix-is-cook… is fascinatingly incorrect
Until the 6th of November 2023 when they—in their words—moved to a different repository and to the AGPL license. In reality, the Foundation did not know this was coming, and a huge support net was pulled away under their feet.

fwiw, the Foundation had a front-row seat in the fact that Element (as incorporated by the folks who created Matrix) had donated $$M to the Foundation over the years, but wasn't going to survive if it kept giving all its work away as apache-licensed code - which in turn would have been catastrophic for the Foundation.

Yes, the high expenses for the Matrix.org homeserver are largely because they are still managed by Element, just not as donated work but instead like with any other customer.

nope, Element passes the hardware costs (and a fraction of the people costs) of running the matrix.org server to the Foundation without any overheads or markup at all.

Either way it shows that Element is seemingly cashing in on selling ,Matrix to governments and B2B as a SaaS solution without it going back to the foundation

Element has literally put tens of millions into the foundation, and is continuing to do so - while some of the costs get passed to the Foundation, Element donates a bunch too (e.g. by funding a large chunk of the Matrix conference as the anchor sponsor, and by donating time all over the place to help support trust & safety etc)

At the same time I can't help but think that this could have been prevented. Even Matthew himself recognizes that putting the future on Matrix on the line with VC funding and alike was not the best idea for the health of Matrix.

No, even Matthew knows that Matrix would never have been funded without routing the VC funding from Element into... building Matrix. We tried to fund it originally purely as a non-profit, but failed (just as it's a nightmare to raise non-profit for the Foundation today even now that Matrix exists and is successful!). If you need to raise serious $ for an ambitious project, you either need to get lucky with a billionaire (as Signal did with Brian Acton) or you have to raise on the for-profit side. Perhaps it would have have been best for Matrix to grow organically, but I suspect that if it did, it would have failed miserably - instead, it succeeded because we already had a team of ~12 people who could crack on and jump-start it if they could work on it as their dayjob; the team who subsequently founded Element.

Ultimately, for-profit companies will do what makes them profit, not what's the best option. Unless the best option happens to coincide with making the most profit.

No, Element is not profitable. Nor is it trying to maximise profit. Right now it's trying to survive and get sustainable and profit-neutral (i.e. break-even) - while doing everything it can to help keep Matrix healthy and successful too (given if Matrix fails, Element fails too).

Unfortunately, supporting the foundation through anything more than “in spirit” and a platinum membership is out of their budget, apparently. I think that morally they owe a lot more than that.

wow.

the FUD level is absolutely astonishing, and I really wonder what the genesis of this is

so, absolutely, spectacularly, depressing

this, my friends, is why we can't have nice things.


In response to an other person suggesting that the publisher is also known as a reasonable person on the platform:

Interesting, the matrix handle that seems behind this blog seems always to have been quite a reasonable person

somewhat why i’m wondering what the backstory is, and whether this is an unfortunate example of spicy lies outpacing the boring truth



Jellyfin assistance


Hello,
I yet again come, hat in hand, for assistance from those wiser in the ways of the Linux. I’m having a bit of an issue downloading Jellyfin on my ElementaryOS laptop. I’ve tried all the guide on the first few pages of ddg only to receive errors after entering the comman “ sudo apt-get update “. I get ERR:3 https//repo.jellyfin.org/debian circle Release 404 Not found.

If someone can point me the way I’d be most appreciative

in reply to Kelp

Is there a reason you’re not using Docker?
in reply to scottrepreneur

To be completely honest, I installed Jellyfin "bare-metal" and have been using it that way since after attempting to skim the Docker documentation and failing to understand how Docker works.
in reply to monovergent

My friend, i would like to introduce you to the wonders of Portainer. Go forth and watch a video on youtube and you'll get it.
in reply to GoldenQuetzal

Use Portainer if you don’t want anything to be portable. There are other issues too. Just use Docker Compose.
in reply to hperrin

Benefit of portainer is that it teaches people new to this how it works and makes it accessible. Then they can learn other tools and grow from there. Immediately throwing people into CLI can scare them off or be intimidating.
in reply to monovergent

Docker is a virtualization platform, similar to setting out a Virtual Machine but a lot less resource intense. You need to:

  • install docker on your machine
  • Start/enable the service (this is usually done automatically on most user friendly distros, and if you're using one that doesn't I expect you to know how to do it)
  • Add your user to the docker group

That's it, docker setup done, now you need to write a compose file, i.e. something that tells docker what do you want to run, usually you get a working example on any project website, and linuxserver.io is a great site for them too, for example for Jellyfin can be found here: docs.linuxserver.io/images/doc…

Just create a folder, create a file called compose.yaml there and put that content in it, now run docker compose up -d and congratulations you have a working Jellyfin server.

With time you'll learn what the compose file is doing, for example the ports map ports from the docker to your machine, volumes does the same, so for example the example has /path/to/jellyfin/library:/config if instead you write ./config:/config a folder called config will be created on the same folder the compose.yaml file is and inside the docker it will be mounted as /config which is where Jellyfin will look for configurations. In the same manner you can add /home/myuser/Movies:/Movies and inside docker you will be able to see the contents of /home/myuser/Movies when scanning the /Movies folder.

in reply to hperrin

Probably not interested in dealing with endless permission and proxy problems. Me I just run everything as root and password 543211111111111111Aa+-
Questa voce è stata modificata (3 mesi fa)
in reply to hperrin

Op please don't ignore the above.

Learn docker once and you'll be able to install almost anything, rather than having to learn every individual app and how it installs on specific operating systems.

in reply to hperrin

I was so ill prepared I didn’t even know what docker was. I definitely jumped the gun on the media server lol. Eh, blessing in disguise since I’m now getting such info I guess. Thank y’all for being kind to an ignoramus
in reply to Kelp

Jumping in over your head is how you learn. Just be patient!
in reply to Kelp

So, Jellyfin is one of those apps where the Docker documentation is really lacking. I'm gonna give you my docker-compose.yml file in case it helps:

services:
  jellyfin:
    image: jellyfin/jellyfin
    user: 0:0
    restart: 'unless-stopped'
    ports:
      - '8096:8096'
    environment:
      #- JELLYFIN_CACHE_DIR=/var/cache/jellyfin
      #- JELLYFIN_CONFIG_DIR=/etc/jellyfin
      - JELLYFIN_DATA_DIR=/var/lib/jellyfin
      - JELLYFIN_LOG_DIR=/var/log/jellyfin
    volumes:
      - ./config:/config
      - ./cache:/cache
      - ./data:/var/lib/jellyfin
      - ./log:/var/log/jellyfin
      - /data/jellyfin:/data/jellyfin
    devices:
      - /dev/dri

For me /data/ is my RAID array, which is why my jellyfin data directory is there. Everything else goes in the same directory as the compose file. My system has a graphics card that does transcoding (Arc A380), so I have /dev/dri under devices.

You should learn a lot about Docker Compose, because it will help you tremendously. I use Jellyfin behind an Nginx Proxy Manager reverse proxy. I'd highly recommend it. Here's my compose file for that:

services:
  app:
    image: 'jc21/nginx-proxy-manager:latest'
    restart: unless-stopped
    network_mode: "host"
    #ports:
    #  - '80:80'
    #  - '81:81'
    #  - '443:443'
    volumes:
      - ./data:/data
      - ./letsencrypt:/etc/letsencrypt

Running in "host" mode is important, instead of just forwarding ports, because it lets you forward things to localhost, like pointing https://media/.[mydomain]/ to http://127.0.0.1:8096/ for Jellyfin.

Anyway, best of luck to you, and I hope that helps!

Questa voce è stata modificata (3 mesi fa)
in reply to Kelp

Find jellyfin related file in /etc/apt/sources.list.d, edit it as root and try replacing „circle” with „bookworm”.
After that apt update and retry. If it doesn’t work you can also try replacing it with „noble” but the you might also need to replace debian -> ubuntu, but that’s just my guess
Questa voce è stata modificata (3 mesi fa)



UK police working with controversial tech giant Palantir on real-time surveillance network


The Nectar project offers 'advanced data analysis' using a wide range of sensitive personal information

A controversial US spy tech firm has landed a contract with UK police to develop a surveillance network that will incorporate data about citizens’ political opinions, philosophical beliefs, health records and other sensitive personal information.

Documents obtained by i and Liberty Investigates show Palantir Technologies has partnered with police forces in the East of England to establish a “real-time data-sharing network” that includes the personal details of vulnerable victims, children and witnesses alongside suspects.

Trade union membership, sexual orientation and race are among the other types of personal information being processed.

The project has sparked alarm from campaigners who fear it will trample over Britons’ human rights and “facilitate dystopian predictive policing” and indiscriminate mass surveillance.

Numerous police forces have previously refused to confirm or deny their links with Palantir, citing risks to law enforcement and national security. However, forces in Bedfordshire and Leicestershire have recently confirmed working with the firm.

Liberty Investigates and i have learned that those projects involve processing data from more than a dozen UK police forces and will serve as a pilot for a potential national rollout of the tech giant’s data mining technology — which has reportedly been used by police forces in the US to predict future crimes.





Google’s Advanced Protection Arrives on Android: Should You Use It?




Google’s Advanced Protection Arrives on Android: Should You Use It?






Looking for feedback on 5-week degoogling plan


I created a 5-week degoogling plan PDF based on the steps in my book DISENGAGE: Escape the Leash of Big Tech, Scams and Surveillance—Everyday Resistance for the Digital Underdog.

Before I finalize and post it to my site, I'd love some feedback from people who have degoogled or are in the process of doing so.

The final package will be a single PDF, and I've pasted images of the pages below. The final infographic has a link for each product. Please don't worry about formatting issues, I'll get those fixed. But in general, I'm wondering.

  • Does this seem motivational/doable?
  • Are the tips clear?
  • Is there anything that is now incorrect? I wrote the book originally two years ago and updated it in February, so some of my suggestions may already be out of date.
  • At the bottom I mention that full instructions for each step are available in DISENGAGE, which is a free book. Is that enough? Or should I instead either note which chapter/page to look at for each step, or directly include links to instructions/tools online?
  • The infographic at the end...is it weird to be sideways? I created it a while ago and don't want to have to redo it to fit the orientation. I could offer that separately, OR I could redo the whole PDF to be landscape instead of portrait (which I don't love).
  • I'm thinking of turning this into a group challenge (also no cost). If there's enough interest, it could be the checklist, the book, and a Signal group (maybe with a weekly call). I don't know nearly everything about the topic, but I did degoogle myself, and everyone in the group/on the call can share questions and suggestions. What do you think of this idea?

Thanks!

in reply to Corduroy_Pillows_Making_Headlines [she/her]

First time I've ever heard of simple search, looks like a widget app and not an actual search engine. I'd recommended switching that out for something like Mojeek or Brave Search.
in reply to PrivacyDingus

Thanks! I recommended SimpleSearch because it's good for people who can't/don't want to stop using Googl Search.


Is Internet Content Too Engaging?


By targeting design rather than content, lawmakers hope to regulate social media without constitutional roadblocks. Here’s why that’s a problem.


Reddit will help advertisers turn ‘positive’ posts into ads



in reply to BubsyFanboy

Polish media outlets supportive of Poland’s national-conservative opposition Law and Justice (PiS) party have published a recording of a private phone call involving Prime Minister Donald Tusk when he was president of the European Council.

They say it shows how he was continuing to interfere in Polish politics – and speaking in a dismissive and vulgar way about certain parts of Poland – while holding his supposedly neutral EU position.

But commentators and legal experts, as well as figures from Poland’s current ruling camp, say that the conversation reveals nothing of interest and that the real issue is how it was recorded and came to light. They believe it was produced as part of illegal surveillance conducted under PiS using Pegasus spyware.

On Friday and Saturday, right-wing broadcasters wPolsce24 and Republika released audio from two phone conversations involving Roman Giertych, who is currently an MP elected on the list of Tusk’s centrist Civic Coalition (KO). One was with Paweł Graś, Tusk’s current chief of staff, and the other with Tusk himself.

Though the recordings are undated, their content makes clear that they were made in the lead-up to the October 2019 Polish parliamentary elections, when KO was in opposition and Tusk was head of the European Council.

During the majority of his conversation with Tusk, which lasts around 16 minutes, Giertych – who at the time worked as a lawyer, including for Tusk and his children – was complaining about the then-leader of KO, Grzegorz Schetyna.

Giertych expressed frustration that Schetyna was blocking his attempts to become an election candidate for KO, saying that Schetyna was trying to suggest that Giertych stand in districts where he would have little chance of winning.

Here, Giertych described the places being suggested by Schetyna (eastern Wielkopolska province and the city of Radom) as “shits” (using the English word), at which point Tusk expressed agreement that they were places “where the fuck-ups are” (“gdzie zjeby są”).

When publishing the material, Republika noted that, at the time, “Tusk was the president of the European Council and, according to EU law, he should not interfere in domestic political disputes. And yet the tapes show something completely different”.

In response to the release of the recordings, Giertych issued a statement in which he said that they were made “as part of an illegal operation conducted against me by the CBA [Central Anticorruption Bureau]” using Pegasus spyware purchased by the PiS government.

PiS has been accused of illegally buying Pegasus and then using it to spy on opponents of its government, including Giertych and Krzysztof Brejza, who was the head of KO’s election campaign in 2019. Extracts of recordings made using Pegasus were then leaked to PiS-friendly media.

“Recording conversations between a lawyer and his clients, not destroying them, taking copies of the conversations from the CBA, passing them on to the media and publishing these conversations are very serious crimes,” wrote Giertych. “Those guilty of all these crimes will be punished.”

Legally, the CBA is supposed to destroy surveillance recordings that do not contain evidence of any crime. Giertych has not been charged with any crime in relation to the content of the recordings.

Przemysław Rosati, the president of Poland’s Supreme Bar Council, says that the newly released recordings “confirm that Pegasus was used for surveillance without a legal basis and unrelated to state security”.

“Monitoring a lawyer’s telephone is an action that directly violates attorney-client privilege and…is simply an abuse of power,” he added.

Foreign minister Radosław Sikorski also commented on social media, writing that he “hopes the media will not get excited about tidbits [contained in the recordings] but will help identify the criminals who recorded and distributed conversations between a lawyer and client”.

Tusk himself has not yet commented on the recordings.

Since replacing PiS in power in December 2023, Tusk’s ruling coalition has launched a number of investigations into the use of Pegasus by the former government.

Last year, prosecutor general Adam Bodnar revealed that almost 600 people in Poland were targeted for surveillance with Pegasus between 2017 and 2022. The interior minister, Tomasz Siemoniak, said that this had included “too many cases” when it was used “against inconvenient politicians, lawyers, judges and prosecutors”.

Subsequently, a former PiS deputy justice minister, Michał Woś was charged with abusing his powers for the alleged illegal transfer of justice ministry funds to finance the purchase of Pegasus in 2017. He denies the allegations.

In February this year, the head of the CBA, Agnieszka Kwiatkowska-Gurdak, resigned from her position after refusing to answer questions during an appearance before a parliamentary commission investigating the use of Pegasus spyware.



What tools are people using to create batches of torrents?


For occasional torrent creation, qBittorrent has Tools > Torrent Creator, but suppose one has hundreds of folders from which to create individual torrents. A quick internet search yields forum posts from more than ten years ago mentioning dead projects. For example, this Reddit post from 2013 mentions qMakeTorrent, which is no longer maintained.

How are people doing this in 2025? I reckon one could write a bash or python script for this, but are there any user friendly tools out there that are built for this purpose and still actively maintained?

Questa voce è stata modificata (3 mesi fa)


Apple Researchers Just Released a Damning Paper That Pours Cold Water on the Entire AI Industry


cross-posted from: midwest.social/post/29979054

can't understand why they keep needing more power. like trying to smash through a wall or something.


Trattato di non proliferazione: da quando l'Iran ha un programma nucleare? da Focus.it







🍹 Log Out @ Bologna


23 giugno 2025 19:30:00 CEST - GMT+2 - Circolo Polisportiva Arci Uisp Guernelli, 6 Via Antonio Gandusio (Bologna)
Giu 23
🍹 Log Out @ Bologna
Lun 19:30 - 21:30
Tech Workers Coalition Italia

Lunedì 23 Giugno torna il Log Out!

Log Out è il ritrovo dei Tech Worker che dopo il lavoro vogliono incontrarsi. Un'occasione per socializzare, conoscersi, parlare del nostro lavoro o di qualsiasi altra cosa ci piaccia. Un incontro informale davanti ad una birra, un cocktail o una bibita per scaricare la stanchezza della giornata di lavoro.

Unisciti al gruppo Telegram!

reshared this



Reddit will help advertisers turn ‘positive’ posts into ads





I Tried Pre-Ordering the Trump Phone. The Page Failed and It Charged My Credit Card the Wrong Amount


The website failed, went to an error page, and then charged my credit card the wrong amount of $64.70. I received a confirmation email saying I’ll receive a confirmation when my order has been shipped, but I haven’t provided a shipping address or paid the full $499 price tag. It is the worst experience I’ve ever faced buying a consumer electronic product and I have no idea whether or how I’ll receive the phone.


I look forward to learning more about how terrible these phones turn out.



RNC Sued Over WinRed's Constant 'ALL HELL JUST BROKE LOOSE!' Fundraising Texts


The Johnsons claim that the RNC sent Samantha 17 messages from 16 different phone numbers, nine of the messages after she demanded the messages stop 12 times. Cari received 27 messages from 25 numbers, they claim, and she sent 20 stop requests.


I know my phone gets blasted to hell every election season.



Voting in the threadiverse


Hi,

i want to explore the various way we can highlight content.

Currently, on the threadiverse, we use vote to show our approval, discontent...and we can couple it with a bot for moderation. Or hide post below a certain score...

Some instance completly removed downvote as Beehaw. Piefed is experimenting private vote. On other fediverse software, mastodon, iceshrimp, there is no downvote and we use emojis to express our feelings.

You also have website as slashdot.org/ where you can tell that comment was insightfull or a troll, or funny...

There is also also website that compare software or video as tournesol.app/


  • Do you think vote sould be private ? Public ? And why ?
  • Are you sastified with the current voting system ? And why ?
  • What other interesting software/website that tried something different do you know ?
  • What way do you imagine to highlight content and improve search, discoverability ?
Questa voce è stata modificata (3 mesi fa)
in reply to Snoopy

I like the downvotes disabled model.

It also means that the “active” sort algorithm doesn’t promote posts that get lots of “downvotes” -> engagement

in reply to Snoopy

Re: Voting in the threadiverse


snoopy@jlai.lu personally, since I create AP enabled software I am on the side of votes being public data. We already have enough issues with votes being out of sync with each other. Mixing in private voting is just asking for trouble.

Emoji reactions are neat, although niche to those softwares that utilise it. They allow for greater expression which is nice. They're useless for deriving value (for ranking purposes) unless you assign value to them.





in reply to Deceptichum

James C Scott’s Against the Grain
is an excellent academic read on this if anyone is curious.

As a sidenote! Loving Mesopotamia Monday!



Low Tech Magazine: How to Dress and Undress your Home


A return to vernacular buildings, which maintain interiors at a comfortable temperature through architectural design rather than energy-intensive technical installations, could significantly reduce energy consumption for heating and cooling. However, it’s not a short-term solution: it would require a large amount of time, money, and energy to replace the existing building stock.

Fortunately, history offers an alternative solution that can be deployed more quickly and with fewer resources: textiles. Before the Industrial Revolution, people added a temporary layer of textile insulation to either the interior or the exterior of a building, depending on the climate and the season. In cold weather, walls, floors, roofs, windows, doors, and furniture were insulated with drapery and carpetry. In hot weather, windows, doors, facades, roofs, courtyards, and streets were shaded by awnings and toldos.

Removable insulation can achieve significant energy savings with much more flexibility than permanently enclosed insulation materials. Because modern insulation methods require construction permits and structural interventions to a building, they are expensive, time-consuming, and only accessible to home owners. Furthermore, modern insulation methods are ill-suited for older buildings, in which case they are often not financially and energetically sustainable.



Building the American Brownshirts


Trump’s “Big Beautiful Bill” that the House passed is objectionable for many reasons, most obviously because it is the most regressive economic bill of my lifetime, the class war condensed into in legislative form. Its tax policies and spending cuts will erode the well being of Americans slowly for decades to come. Its most immediate destabilizing impact, however—the one that has the potential to push our democracy to the brink—is its vast expansion of the Homeland Security budget, which will be used to build ICE into a huge national army of loyalists under Trump’s control. The money to build America’s brownshirts is in the pipeline. Whereas our military-industrial complex is a threat to the rest of the world, this force will be a direct threat to all of us in the USA. This is the Proud Boys, at national scale, with badges. It is a very dangerous prospect.

Everything I am writing about here has been previously reported in the past few weeks since the House sent the bill to the Senate. But, from my vantage point, the public has not quite grasped just how horrifying a precipice we are on. When you consider the scale of protest already unleashed by the ICE raids in LA; Trump and Stephen Miller’s clear intent to double and triple and quadruple down on the ICE raids and crush the protests with military force; Trump’s unhinged declaration yesterday that “we must expand efforts to detain and deport Illegal Aliens in America’s largest Cities, such as Los Angeles, Chicago, and New York” to achieve “the single largest Mass Deportation Program in History”; and then connect this deep well of poisonous intent with the staggering expansion of ICE’s size and scope that will occur if this bill’s funding comes through, what you will see is the setup for not just a mass deportation program, but a violent national clash between a militarized, government-sanctioned army of Trump loyalists and everyone else.

How much does ICE stand to grow if this bill’s funding comes through? A lot. The all-in costs of deportation over the next decade could reach a trillion fucking dollars, according to this Cato analysis. That includes the border wall and a huge expansion of prisons for immigrants, to a size nearly on par with the federal prison system.



Apple and Google Still Have a Chinese VPN Problem


cross-posted from: lemmy.sdf.org/post/36828953

Archived

The Apple and Google app stores continue to offer private browsing apps that are surreptitiously owned by Chinese companies, more than six weeks after they were identified in a Tech Transparency Project report. Apple and Google may also be profiting from these apps, which put Americans’ privacy and U.S. national security at risk, TTP found.

[...]

After the Financial Times asked Apple for comment on these findings, two of the apps linked to Qihoo 360—Thunder VPN and Snap VPN—were pulled from its app store. When TTP checked again in early May, another Qihoo 360-connected app called Signal Secure VPN had been quietly removed. But two other apps linked to Qihoo 360—Turbo VPN and VPN Proxy Master—remained available in the U.S. Apple App Store, along with 11 other Chinese-owned apps identified in TTP’s report.

The Google Play Store, meanwhile, offered four Qihoo 360-connected apps—Turbo VPN, VPN Proxy Master, Snap VPN, and Signal Secure VPN—as well as seven other Chinese-owned VPNs identified in TTP’s initial report.

The linked article lists several China-owned VPN apps identified by the Tech Transparency Project (TTP).

[...]





Aggiornamento a Lemmy 0.19.12


Martedì 17 luglio verso metà mattinata verrà aggiornato Lemmy alla versione 0.19.12.

È stato fatto l'aggiornamento oggi nel server di test e non ci sono stati problemi di alcun tipo.

Tutte le novità della nuova release le trovate qui: join-lemmy.org/news/2025-06-13…

#Main
Questa voce è stata modificata (3 mesi fa)
in reply to skariko

Aggiornamento a Lemmy 0.19.12 effettuato, fatemi sapere se ci sono problemi!

Dai che tra un po' ci sarà la versione 1.0 😁