GE-Proton10-5 Released
- Wine-wayland patches have been updated/rebased, should fix some nvidia crashes, and no longer need this mesa patch: gitlab.freedesktop.org/mesa/me…
- patches added to help with Wuthering Waves.
- protonfixes updated
- protonfix added for Artificial Academy 2
- protonfix added for Persona 4 Arena Ultimax
- protonfix added for Anno 1800 from Ubisoft Store
- protonfix added for Anno 1800
vulkan/wsi/wayland: Move drm syncobj to swapchain (!34918) · Merge requests · Mesa / mesa · GitLab
Winewayland recreates the swapchain on the same surface, this leads to initialization of the drm syncobj happening twice on one surface, which isn't allowed and then leads to...GitLab
Germany seeks Israeli partnership on cyber defence
Germany is aiming to establish a joint German-Israeli cyber research centre and deepen collaboration between the two countries' intelligence and security agencies, German Interior Minister Alexander Dobrindt has said.
According to Bild, Dobrindt outlined a five-point plan aimed at establishing what he called a "Cyber Dome", as part of Germany's cyber defence strategy.
Earlier on Sunday, Bavarian Prime Minister Markus Soeder called for the acquisition of 2,000 interceptor missiles to equip Germany with an "Iron Dome" system similar to Israel's short-range missile defence technology.
Germany seeks Israeli partnership on cyber defence
Germany is aiming to establish a joint German-Israeli cyber research centre and deepen collaboration between the two countries' intelligence and security agencies, German Interior Minister Alexander Dobrindt has said.
According to Bild, Dobrindt outlined a five-point plan aimed at establishing what he called a "Cyber Dome", as part of Germany's cyber defence strategy.
Earlier on Sunday, Bavarian Prime Minister Markus Soeder called for the acquisition of 2,000 interceptor missiles to equip Germany with an "Iron Dome" system similar to Israel's short-range missile defence technology.
Putin Says Russia to Seek Defense Cuts; How Much Depends on War
This is a strong indication that Russians expect the war will be over this year.
Putin Says Russia to Seek Defense Cuts; How Much Depends on War
President Vladimir Putin said Russia plans to cut defense spending, acknowledging growing strains on the budget even as he insisted that reductions would depend on winning his war in Ukraine.Bloomberg
British MPs invite deposed shah's son to promote Iran regime change in parliament
According to an invitation to the event seen by MEE, Pahlavi is set to brief MPs and peers on "the ongoing situation in Iran and his plan for the collapse of the current regime and for a stable transition to a secular democracy".
Akehurst told MEE: "It is for the Iranian people to decide what type of government they want, but clearly MPs are going to be interested in hearing what different opposition voices have got to say about the future of such an important country."
As a staunch defender of a US-backed monarchy that he hopes to bring back to Iran, he has made several visits to Israel, taken photographs with Prime Minister Benjamin Netanyahu and cast himself as the only viable leader of a modern Iran if the Islamic Republic collapses.
British MPs invite deposed shah's son to promote Iran regime change in parliament
The son of Iran's ousted shah is set to address British MPs in the UK parliament on Monday, numerous sources within parliament and the Labour Party have told Middle East Eye.Imran Mulla (Middle East Eye)
AI to make us more private?
Just listened to Naomi Brockwell talk about how AI is basically the perfect surveillance tool now.
Her take is very interesting: what if we could actually use AI against that?
Like instead of trying to stay hidden (which honestly feels impossible these days), what if AI could generate tons of fake, realistic data about us? Flood the system with so much artificial nonsense that our real profiles basically disappear in the noise.
Imagine thousands of AI versions of me browsing random sites, faking interests, triggering ads, making fake patterns. Wouldn’t that mess with the profiling systems?
How could this be achieved?
This is a dangerous proposition.
When the dictatorship comes after you, they're not concerned about the whole of every article that was written about you All they care about are the things they see as incriminating.
You could literally take a spell check dictionary list, pull three words out of the list at random and feed it into a ollama asking for a story with your name that included the three words as major points in the story.
Even on a relatively old video card, you could probably crap out three stories a minute. Have it write them in HTML and publish the site map into major search engines on a regular basis.
EDIT: OK this was too fun not to do it real quick!
~ cat generate.py
import random
import requests
import json
import time
from datetime import datetime
ollama_url = "http://127.1:11434/api/generate"
wordlist_file = "words.txt"
with open(wordlist_file, 'r') as file:
words = [line.strip() for line in file if line.strip()]
selected_words = random.sample(words, 3)
theme = ", ".join(selected_words)
prompt = f"Write a short, imaginative story about a person named Rumba using these three theme words: {theme}. The first word is their super power, the second word is their kyptonite, the third word is the name of their adversary. Return only the story as HTML content ready to be saved and viewed in a browser."
response = requests.post(
ollama_url,
headers={"Content-Type": "application/json"},
data=json.dumps({"model": "llama3.2","prompt": prompt})
)
story_html = ""
for line in response.iter_lines(decode_unicode=True):
if line.strip():
try:
chunk = json.loads(line)
story_html += chunk.get("response", "")
except json.JSONDecodeError as e:
print(f"JSON decode error: {e}")
timestamp = datetime.now().strftime("%Y%m%d_%H%M%S")
filename = f"story_{timestamp}.html"
with open(filename, "w", encoding="utf-8") as file:
file.write(story_html)
print(f"Story saved as {filename}")
~ cat story_20250630_130846.html
<!DOCTYPE html>
<html>
<head>
<title>Rumba's Urban Adventure</title>
<meta charset="UTF-8">
<style>
body {font-family: Arial, sans-serif;}
</style>
</head>
<body>
<h1>Rumba's Urban Adventure</h1>
<br>Rumba was a master of <b>slangs</b>, able to effortlessly weave in and out of conversations with ease. Her superpower allowed her to manipulate language itself, bending words to her will. With a flick of her wrist, she could turn a phrase into a spell.<br>
<br>But Rumba's greatest weakness was her love of <b>bungos</b>. The more she indulged in these sweet treats, the more her powers wavered. She would often find herself lost in thought, her mind clouded by the sugary rush of bungos. Her enemies knew this vulnerability all too well.<br>
<br>Enter <b>Carbarn</b>, a villainous mastermind with a personal vendetta against Rumba. Carbarn had spent years studying the art of linguistic manipulation, and he was determined to exploit Rumba's weakness for his own gain. With a wave of his hand, he summoned a cloud of bungos, sending Rumba stumbling.<br>
<br>But Rumba refused to give up. She focused her mind, channeling the power of slangs into a counterattack. The air was filled with words, swirling and eddying as she battled Carbarn's minions. In the end, it was just Rumba and Carbarn face-to-face.<br>
<br>The two enemies clashed in a spectacular display of linguistic fury. Words flew back and forth, each one landing with precision and deadliness. But Rumba had one final trick up her sleeve - a bungo-free zone.<br>
<br>With a burst of creative energy, Rumba created a bubble of pure slangs around herself, shielding her from Carbarn's attacks. The villain let out a defeated sigh as his plan was foiled once again. And Rumba walked away, victorious, with a bag of bungos stashed safely in her pocket.<br>
</body>
</html>
Interesting that it chose female rather than male or gender neutral. Not that I'm complaining, but I expected it to be biased 😀
Yup, you'd be surprised what you can accomplish with 10gb of VRAM and a 12b model. Hell, my profile pic (which isn't very good, tbf) was made on that 10gb VRAM card using localhosted stable diffusion. I hate big corp AI, but I absolutely love open market and open source local models. Gonna be a shame when they start to police them.
To OP: The problem is that they're looking for keywords. With the amount of people under surveillance these days, they don't give a rat's ass if you went to your favorite coffee roasting site, they want to find the stuff they don't want you to do.
Piracy? You're on a list. Any cleaning chemical that can be related to the construction of explosives? You're on a list. These lists will then tack on more keywords that pertain to that list. For example, the explosives list will then search for matching components bought within a close span of time that would indicate you're making them. Even searching for ways to enforce your privacy just makes them more interested.
So then you put out a bunch of fake data. This data happens to say you viewed a page pertaining that matching component. Whelp, that list just got hotter and now there are even more eyes on you and they're being slightly more attentive this time. Its a bad idea. The only way you're getting out of surveillance, at least online, is to never go online.
In reality, they probably won't even do anything about the above. What they really want is money. Money for your info; money to sell more things to you. They want the average home to be filled with advertisements tailored from your information. Because those adverts make those companies money, which they then use to buy more information to monetize your existence. Its the largest pyramid scheme known to humanity, and we're the unpaid grunts.
The moment the world became connected through telephones, cable TV, and then internet this scheme was already in motion way beforehand. Let's be honest, smartphones were the motherload. A TV, phone, and computer you always keep on you? They were salivating that day.
This strategy of generating fake data just doesn't work well. It requires a ton of resources to generate fake data that can't be easily filtered which ends up making the strategy non viable on most situations. Look at Mullvads DAITA and how it constantly has to be improved to fight this and, that's just for basic protection.
There is a bit of a cognitive dissonance that goes on, where people seem to understand that you are tracked constantly online and offline through all sorts of complex means but still think relatively mundane solutions could break that system.
- YouTube
Profitez des vidéos et de la musique que vous aimez, mettez en ligne des contenus originaux, et partagez-les avec vos amis, vos proches et le monde entier.www.youtube.com
Broadcom Eyes $2 Trillion Club as AI Chip Demand Explodes
Broadcom Eyes $2 Trillion Club as AI Chip Demand Explodes
Broadcomjust hit $1.3 trillion in market cap, and some analysts think that’s just the beginning. The chip giant’s custom AI processors are pulling in massive orders from tech’s biggest players, setting up what could be a sprint to $2 trillion by 2028…GazeOn Team (GazeOn)
What hardware does not support Linux?
Not going to surprise anyone but Windows Mixed Reality VR headsets aren't great on Linux, at least with controllers
Although that is improving!
VR Gear & GPUs
Hardware # NVIDIA WIRED VR ISSUES: Nvidia proprietary drivers currently have a critical issue with DRM lease causing substantial presentation latency for wired VR headsets, resulting in a delayed viewport effect that makes VR uncomfortable.Linux VR Adventures Wiki
Daily driver work-from-home on Bazzite? Or something more mainstream (Debian?) and install Steam/proton?
My question is basically the title, but here are some more details.
My computer is used about 75% for work, 20% for personal use (almost entirely web), and 5% for gaming. ~2 y.o. midrange rig w/ Intel CPU, AMD graphics, 32GB DDR4 RAM.
For work, I need lots of straightforward things: video conferencing on Teams (web is fine), Zoom, Word document editing (web is fine), a bunch of other web apps, some light database stuff, etc.
Plus two things that are a bit trickier: OneDrive professional/SharePoint (so I'll need abraunegg's onedrive) and Excel 2024 desktop (web isn't good enough) for which I'll need to run Windows (10? Ameliorated, maybe?) in a VM.
But I also want to do gaming. I wouldn't install a kernel-level rootkit anyway (and I boycott Denuvo), so SteamOS-level compatibility should work great for my needs. I also have a Quest 3, so I'll want to do PCVR, which apparently works great (with Bazzite).
But I don't really grok what Bazzite being immutable means for using it as a daily driver for work/productivity. Under the hood, it's just Fedora 42, right? For immutable distros, you use flatpaks instead of apt install, and they're basically just "apps" that should "just work", right? Do I care about kernel modification?
Or, more to the point, I don't know what I don't know. After preliminary research on this all, I think my plan of going for Bazzite then adding abraunegg's onedrive and a Windows VM with Office 2024 will hit all my needs, but can anyone "sanity check" that plan, or compare the pros/cons with a non-Ubuntu-based alternative?
I'm good enough with computers that I should be able to tinker through the inevitable small challenges that will come up, but I don't really have enough time to do it twice if my initial plan is terrible. (I connect to a Debian server remotely using the terminal, so I have some background—but I needed to install a bunch of packages to get web app software running, and idk if I'll need that as a desktop user.)
Any advice much appreciated! And thanks for reading this far, even if you don't comment. 😀
Edit: thanks for the input so far! I'm turning in, but I'll read everything and reply to stuff tomorrow.
GitHub - abraunegg/onedrive: OneDrive Client for Linux
OneDrive Client for Linux. Contribute to abraunegg/onedrive development by creating an account on GitHub.GitHub
Can't enable mobile security settings
Hi there,I have an Asus Zenfone 10 on Android 15.
In this release of android a new feature named mobile security settings became available which are supposed to signal and protect against surveillance on the mobile network side, like at a protest.When I try to enable these settings on my device they are off again when I reenter these settings.
Do these settings have some kind of prerequisite? Are they working on your device?Thanks!
Wtf! Same situation for me!
Is this some more Asus bullshit? I am still mad that I can't unlock it
Edit: but also what is encrytion on normal mobile network supposed to be? Are calls somehow encrypted? I thought normal network is not encrypted anyway, how even, is there a key exchange or anything?
I worked for ASUS back in the late 00s, when they still made quality products. I did Linux, Server, EEEPC, and Level 2 support calls.
I can't recommend them anymore.
Sinaloa cartel used phone data and surveillance cameras to find FBI informants, DOJ says
A hacker working for the Sinaloa drug cartel was able to obtain an FBI official's phone records and use Mexico City's surveillance cameras to help track and kill the agency's informants in 2018, the U.S. Justice Department said in a report issued on Thursday.
like this
IMEI concern grapheneOS
Is it a good enough solution for IMEI tracking to use an alternative device to provide a hotspot connection?
This approach appears to protect any new device that hasn't inserted a SIM card from being identified.
But I'm not sure how much information is carried to the second device by using hotspot.
Is this a good solution so far? Should I try to spoof IMEI?
thank you for the clarification!
changed my device name!
I cannot find any reliable source that says personal hotspot can see the device model connecting to it, would be really great if someone could clarify this here.
But, some wifi access points can detect your device model anyways. My Xfinity gateway will show my Phone’s name and what model of phone I have.
I believe this is true as there is browser plugin for spoofing device model
GrapheneOS Location Services
Should I enable WIFI scanning / Bluetooth scanning / Network Location under setting->location->location services?
Which one would help me navigate inside a building or underground using open source maps?
I haven't tested yet, does google map requires any of those location services enabled to work? Should I just use google map in vanadium?
thanks a lot
thanks a lot!
though could you briefly explain the term "Network Location"? what does this "network" represents? How is it going to help with location and geopositioning? My understanding is that by enabling "Network Location" the location defined with "Network" is sent to SLP server as assisted data for geopositioning.
I would assume "Network" represents cellular data, hope someone could confirm
You need a direct line of sight with satellites for GPS to work.
Of course, this is almost impossible indoors. Here's how network location works to my understanding:
Another person outdoors uses GPS to locate themselves. This person has Wi-Fi and Bluetooth enabled and their device can see your home/office network. Google and Apple save this information to their databases. When you request your location indoors, your device sends Wi-Fi information of nearby access points. The servers know approximate location of this Wi-Fi network and can give you your approximate location, though with a large margin of error.
Sign the petition to get proton to accept Monero for payment.
change.org/p/proton-to-add-mon…
Cash by physical mail. Letters are traceable, bank notes are traceable, and physical objects you have been in contact with are virtually guaranteed to have both your fingerprints and DNA on them, no matter how hard you try to prevent that.
Cash by mail is fake privacy.
Cryptocurrencies are a waste of resources and gives might to those with computing force, that is the mighty.
There is no reason to inbosom it.
Let's rather effort towards moneyless societies.
While the international banking system is all run by a hamster wheel?
I don't care if the revolution happens tomorrow. Neither of us will se a moneyless society. Next generation perhaps.
That is your opinion and an opinion that we do not share. I agree with you that most cryptocurrencies are bad.
However, there are some real diamonds mixed in with the lumps of coal, and you should really try to find them.
Trouble in Paradise: The Growing Public Distrust in Bitcoin Core Developers
cross-posted from: realbitcoin.cash/post/114645
There are people who knew this 10 years ago, this is why Bitcoin Cash was born.
self-hosted i2p+qbittorrent beginner quickstart
Thought I would share my simple docker/podman setup for torrenting over I2P. It's just 2 files, a compose file and a config file, along with an in-depth explanation, available at my repo codeberg.org/xabadak/podman-i2… And it comes with a built-in "kill-switch" to prevent traffic leaking out to the clearnet. But for the uninitiated, some may be wondering:
What is I2P and why should I care?
For a p2p system like bittorrent, for two peers to connect to each other, at least one side needs to have their ports open. If one side uses a VPN, their provider needs to support "port forwarding" in order for them to have their ports open (assuming everything else is configured properly). If you have ever tried to download a torrent with seeders available, yet failed to connect to any of them, your ports are probably not open. And with regulators cracking down on VPNs and forcing providers like Mullvad to shut down port forwarding, torrenting over the clearnet is becoming more and more difficult.
The I2P network doesn't have these issues. The I2P is an alternative internet network where all users are anonymous by default. So you don't need a VPN to hide your activity from your ISP. You don't need port-forwarding either, all peers can reach each other. And if you do happen to run a VPN on your PC, that's fine too - I2P will work just the same. So if you're turning your VPN on and off all the time, you can keep I2P running throughout, and continue downloading/uploading.
I2P eliminates all the complications and worries about seeding, making it easy for beginners to contribute to the network. I2P also makes downloading easier, since all peers are always reachable. And it's more decentralized too, since users don't need to rely on VPN providers. And of course, it's free and open source!
A fair warning though, I2P is restricted in some countries. And in terms of torrenting specifically, torrents have to explicitly support I2P. You can't just take any clearnet torrent and expect it to work on I2P. And the speeds are generally lower since there are less seeders, and the built-in anonymity has a cost as well. However I've been surprised at the amount of content on the I2P network, and I've been able to reach 1 MB/s download speeds. It's more than good enough for me, and it will only get better the more people join, so I hope this repo is enough for people to get started.
like this
i2pd.conf
file in my repo as a reference, just make sure to use 127.0.0.1 instead of 0.0.0.0 so that only applications running on your computer would be able to access i2pd (0.0.0.0 is only needed for docker). Then you would configure your browser and qbittorrent the same way detailed in my repo, except make sure to enable "mixed" mode so that your torrents are seeding over both clearnet and I2P. Lastly, even though you'll be seeding your torrents over I2P, nobody will be able to find them unless you post them to an I2P tracker like Postman. I don't know how to submit torrents to Postman so you're on your own for that one
Thank you! I just randomly found your guide in another Lemmy post and this kind of setup has been in my to-do list after I became "pro" with gluetun and qbitorrent (inside Docker) and thought the same could be done for i2pd but haven't had the time.
I have some questions
- I have been very happy about qbitorrent finally opening to i2p but recently found out that because it is using libtorrent it doesn't support DHT for i2p (while the official i2psnark client does). Don't you think is better at this point to still use i2psnark (and you would have the commodity to also have the browser included?) despite being in Java...
- For some reason, I would still feel insecure in using i2p without a VPN. It is said there is no need, ok, but what if I still want to use it. I guess it shouldn't harm? Like affecting speed or other factors? I would like to remove as much as possible any chance of my ISP sniffing on my connections.
PS: I have an improvement for your guide 😁You could add an extra container with Mullvad-Browser (still from linuxserver) to access Postman.
Dragon Age: Veilguard lead level designer Brian J. Audette responds to criticisms on Bluesky: "We couldn't have made a _better_ Dragon Age, only a _different_ one."
In a response to an article written for Bloomberg by Jason Schreier investigating the ten year "development turmoil," lead level designer Brian J. Audette refutes the notion that the game was "compromised" in a post on their bluesky account.
The full post reads:
Reposting without comment except: I refute that we made a bad or compromised game. We made the best version of what we released, warts and all. I'm damn proud of it and the team. We couldn't have made a better Dragon Age, only a different one.
Brian J. Audette (@bjaudette.bsky.social)
Reposting without comment except: I refute that we made a bad or compromised game. We made the best version of what we released, warts and all. I'm damn proud of it and the team. We couldn't have made a _better_ Dragon Age, only a _different_ one.Bluesky Social
Support / options for laptop in tablet mode?
I installed Linux Mint on my Lenovo Yoga 7 laptop and it's been great, with the one exception of not really having a tablet mode when I flip the screen. Its not a huge deal, but I watch shows that way and sometimes miss an on-screen keyboard.
The actual keyboard stays active when flipped, which is fine until I pick it up or have it on my lap and accidentally hit some random key.
It seems from some looking around that Mint doesn't do great with this and I'm open to a different distro that's fairly beginner friendly, but even better if there are some options I'm missing to keep what I have.
Nobara, Garuda, Bazzite.... wait actually CachyOS and Solus
I've been using Pop!_OS for a few years now, and it's worked like a dream. Everything works out-of-the-box, and gaming on Linux has never been easier. But it almost works a little too well. Learning Linux as opposed to Windows for all my games was a fun challenge.
But, now that I'm familiar with how to set up any game that needs a little help besides Proton, I'm starting to want to delve into my OS more to see what I can customize, and I think picking a new distro with slightly different architechture will be very nice.
Don't get me wrong, I still want something that works by itself more often than not. But I would love to have something a little more cutting-edge that gives me a little more control.
I started with Linux by installing Kubuntu, and I really miss KDE Plasma. I know Kubuntu is still on Plasma 5, and I've been wanting to find a distro that lets me use Plasma 6.
I've narrowed my choices down to three distros: Nobara, Garuda, and Bazzite.
So far, I've confirmed that Nobara and Garuda come with Plasma 6, but I haven't found that information for Bazzite yet.
So, what do you think about these distros? What are the pros and cons for you?
I'm leaning the most toward Garuda - but I'm worried Arch may be TOO big of a leap. I really just learned that Fedora is not Arch-based, so I know Garuda will be a bit of the odd one out of the three.
TL;DR: Nobara, Garuda, Bazzite - which one is good and do any suck?
EDIT:
Thanks, everyone, for the insightful and helpful comments! From what everyone has said, I've come to find that either CachyOS or Solus will fit my needs best.
CachyOS seems optimized for gaming, while Solus' curated rolling releases seem (to my untrained eye at least) to be somewhat of a step between the way Debian-based distros upgrade and the way Arch-based distros upgrade.
I'd love to hear people's experiences with both of these! I think I'm going to try to dual-boot them and see what setup looks like for both.😄
like this
They have even weekly updates on updates. Really great comminication towards users.
Shit... kind of makes me want to learn Rust now!
Anyway, wonderful write up. No BS, both shortcuts if you just want to the code and in depth links e.g. beyondlogic.org/usbnutshell/us… all written with a fun tone. Plenty of actually useful content showing us all that sure, it is not trivial to write a (USB) driver but it is also probably not as hard as we imagine. Particularly enjoyed the :
- userspace driver, namely being able to tinker locally without feel the pressure to push back the work to Linux the kernel itself
libusb
and other drivers, namely that there is a myriad of points to start from already, not just writing reverse engineering bits in memory to the new device and hoping it'll work
USB in a NutShell - Chapter 1 - Introduction
Introduces the Universal Serial Bus covering the various chapters of the spec and what is required to be read.www.beyondlogic.org
found a fix for MDN Web Docs demos not working
Recently, some interactive "demo" boxes (example here) in the MDN web docs stopped working on LibreWolf for me. The preview was blank and clicking on the buttons did nothing.
Turns out I had enabled "Limit cross-origin referrers" in settings, and unchecking the box allowed MDN to work normally.
Hope this helps!
flex - CSS | MDN
The flex CSS shorthand property sets how a flex item will grow or shrink to fit the space available in its flex container.MDN Web Docs
Accidentally wrote an ISO to an encrypted 5TB drive… Help?
So, I did a thing - accidentally selected my 5TB external NTFS hard drive (encrypted with VeraCrypt) as the target for writing an ISO. The moment I noticed that "Impression" had switched the drive letter, I immediately killed the process. But yeah… damage done.
Now, the situation:
- Currently shows up as:
- 6 MB FAT
- 4.3 GB
- 2 TB unallocated
- 2.6TB unallocated
- The VeraCrypt volume obviously no longer mounts.
- Drive was somewhat crucial - lots of structured data I’d really prefer to recover with the original file system intact.
I know chances are slim, especially with encrypted volumes, but has anyone had luck recovering from something like this? I’m open to commercial recovery tools or command-line wizardry. Would love to hear from anyone who’s been down this road.
Any thoughts or recommendations?
Any thoughts or recommendations?
::: spoiler Tap for spoiler
Backup important data
:::
I'm gonna be the one to say it. You've ruined your ability to decrypt the data. You can try a recovery service but expect to pay a lot for zero results.
I'm sorry this happened to you.
Edit: don't go with commercial software, find a recovery service
This case is due to a logical problem. Cleanrooms are only necessary for physical repairs, like swapping the Head Stack Assembly.
DriveSavers’ cost of entry for a successful recovery is about $2,000. They’ve even given that quote to an iPhone user who needed nothing more than a screen replacement.
Their “state of the art facility” is appropriate for hardware cases where money is no object and you need the best of the best to deliver results no matter the cost.
Realistically, most regular people will be well taken care of using a reasonably priced service like 300 Dollar Data Recovery.
expect to pay a lot for zero results
Industry standard for data recovery specialists is “no data, no charge”
Where is “here”?
You might want to check out the member listings at datarecoveryprofessionals.org/
These organizations generally seem to hold themselves to a “better” standard than the rest of the industry.
Global Group for Data Recovery Engineers | Data Recovery Professionals
Data Recovery Professionals are a worldwide group of professional data recovery engineers who share data recovery techniques and information.Data Recovery Pros
Cloud storage solutions with Linux
I am trying to get away from Google and am looking for a decent cloud service that's integrated well into Linux, either by itself or by using rclone.
I tried Proton drive, but it is laggy and overall not very good.
I just need storage, nothing fancy. Self hosting is not an option tough, at this time.
EDIT: I don't want to write the same answer 15 times, so I'll just put this here: Thanks a lot for the recommendations to all of you! I've got some reading up to do now 😀
Desktop Apps - Koofr
Download the Koofr desktop app and access your cloud storage from any device. Sync your files, work online, and share securely with Koofr. Get it free today!Koofr
looking to migrate off gmail finally
I'm considering finally jumping off gmail. I'm not going to host my own email since I just don't have the skill to secure that thing well enough myself. Any mail server I set up would become a botnest within hours. So that has me looking at third party stuff.
Proton has a mostly good reputation, though their CEO's twitter post a while back praising the Trump regime makes me question if I should trust them with anything. I don't know enough about the entire situation to know if its just internet drama or a real concern, but anything involving Trump is a huge red flag for me.
Tuta looks pretty nice but I've read there are concerns about it being in a country that's part of the 14 eyes collaboration, so it might not matter what the organization wants if the government of the region they are in says fuck off and do what we tell you.
On the lower end of concerns, I am in the Apple ecosystem. (boo hiss I know). I like the clean and simple built in apps like email and calendar and how the notifications all work across my watch, phone, mac and homepods. I like how safari can just jump in and throw an email alias at things for me. I like how all my stuff is managed. But I also know Apple could piss me off at any moment and make wild sweeping changes I might not like, so relying on them too much could screw me over someday. I dont know, right now I really like their setup but portability does seem to matter more ultimately so this switch does seem like a better idea in the long run, even if I'm giving up features I may enjoy.
What are your opinions on the privacy email and calendar services in 2025? Should I even both with a cloud based calendar in the first place?
Proton and SimpleLogin are joining forces | Proton
SimpleLogin has joined Proton. Soon, the entire Proton community will be able to hide their email addresses.Proton
Un guizzo di segmenti e antenne rapide sul chiaroscuro. Benvenuti a cena, nell'Ade - Il blog di Jacopo Ranieri
Un guizzo di segmenti e antenne rapide sul chiaroscuro. Benvenuti a cena, nell'Ade - Il blog di Jacopo Ranieri
È una faccenda nota che spostandosi abbastanza in profondità, il concetto di ciclo stagionale cessa di essere rilevante, portando ad un livello di temperatura stabile che resta sempre identico nel corso dei mesi.Jacopo (Il blog di Jacopo Ranieri)
What problems can I expect using Linux (Fedora) with an NVIDIA GPU?
I'm planning on getting a laptop within the next month which will be my daily driver for university, and it has a RTX 5060. I know people have lots of issues with NVIDIA on Linux, but I don't know of any specific issues. What issues can I expect running Fedora 42 (KDE) on this device?
I am not responding to most comments here, but I am silently taking them into account.
A lot of the info here reads as outdated to me, I have a 40 series card and on bazzite with open drivers it works with zero issues on major titles like Cyberpunk, Horizon, etc. The open drivers have come a long way. It took maybe 5 months post 40 series release for it to work 100% with no glaring issues for me, but 40 series was also the first cards to be launched with the open drivers so it makes sense there'd be hiccups
The only issues I've had on Wayland are color related.
wyndham hotels leaks personal data....and is totally okay with it
I got a new phone number last year. The last person who owned this number just left all her accounts tied to this number and one by one I've been reaching out to the places tied to it telling them they have the wrong number and to stop using this one. Simple enough.
But there is one company that refuses to stop using this number. Wynhdam hotels absolutely refuses to do anything about this. They keep sending me notifications and check in confirmations for her hotel visits. Using just the texts they send me, I know her full name, email address, home address, her reservations at the hotel, which hotel she's going to and what days. Using past conversations with the other hotels she's been to (called in to tell them to stop this months ago), I know she's been kicked out for making a scene in the lobby or something. Looking online, I see she has a criminal record, and a history of child custody losses, drug abuse, and is apparently an "experienced college girl" on an escort site.
In my most recent calls with wyndham, they told me that they can't change the number out. I will need to contact this charming person and have her do it. I am absolutely not getting involved in that mess in any capacity. I'm still telling her johns and dealers this is the wrong number.
Once I explained to the call center supervisor I was escalated to this has gone on long enough and I'm willing to let an attorney deal with it, they put me on hold and supposedly took my number off the account. But the next day, I get another notification. It seems she is providing her services again and it's still making that my problem. So I call and get routed to a promotional department that said they have no idea why they got this call, but I should probably just sue.
I tried calling the number listed on the confirmation texts but it goes to a dead end line that just asks for a remote access code and then hangs up, so I can't ask the hotel she is actually at flag her down and say "hey, you need to update your number."
I emailed their privacy department yesterday but the notifications are still coming in. I can't change my phone number at the moment as I'm dealing with some delicate matters that are tied to this number so I can't risk changing the number at this time.
How can I get wyndham to take this seriously? This is a dangerous amount of information I was able to get off a recurring text they know is going to the wrong place.
Not always true. Letting me from an account information TO something specifically is a risk, but simply demanding they remove MY data from an account that’s not mine is not a fraud concern. Thats the opposite of a fraud concern.
Moreover, I was able to prove I have that number in that I have all the information they gave me access to through that number.
If your in the US you can tell them you'll report them to the FTC and fcc as unsolicited spam text messages that have no means to opt out. They must provide a means to stop receiving text messages per can spam act. If they refuse you report them and then they face 50k in fines per message. You also get to have federal record at least that you didn't want the text messages. You could also file a police report. The cops may roll their eyes, but just tell them you just want something on record that the former number owner waa a shady character and want to avoid any potential legal issues in the future for having their number and getting weird calls or texts.
fcc.gov/consumers/guides/stop-…
ReportFraud.ftc.gov
WhatsApp rolls out AI-generated summaries for private messages
cross-posted from: rss.ponder.cat/post/215685
WhatsApp can now call on Meta AI to summarize your personal chats. As shown in a GIF, you can access it by tapping the button to unfurl all of your unread messages in a chat. But instead of showing your messages, WhatsApp uses Meta AI to generate a bulleted summary of what you missed.
The feature is rolling out in English in the US, with plans to launch in more countries and languages later this year. It uses Meta’s Private Processing technology, which the company claims will prevent it and other third parties from snooping on your messages.
WhatsApp, which is owned by Meta, says its AI message summaries are optional, and the feature is turned off by default. You can also use WhatsApp’s “Advanced Privacy” setting to prevent users from using AI features in group chats. We still don’t know if WhatsApp’s AI message summaries will struggle with accuracy, which is something we saw with the launch of Apple’s AI-generated message and notification rundowns.
Over the past year, Meta has continued stuffing different AI features into WhatsApp, including a way to ask Meta AI questions from within a chat, as well as a feature that generates images in real-time. Some users have grown frustrated by the new Meta AI button in the bottom-right corner of the app that they can’t turn off or remove. Meta also sparked backlash with another change that brought ads to the app — something its founders said they never wanted to do.
The app’s Private Processing is supposed to conceal your interactions with its AI model by creating a “secure cloud environment,” preventing Meta or WhatsApp from seeing your summaries. Other people in the group chat won’t be able to see the message summaries, either.
From The Verge via this RSS feed
WhatsApp’s rollout of ads will change the app forever
WhatsApp is bringing ads to its status feature, a move that’s at odds with the brand’s identity as a “secure” messaging app.Emma Roth (The Verge)
Tor + Clearnet Privacy chat app
This app has a clearnet version and tor version as well!
- Clearnet: shadowtalk.yuzukateam.io.vn/
- Tor: 74xhglgkx3yq5o5ibiehpfwoq4jxb62323ydzam56fvqbkuo6kd7tcid (hash)
- And it open source!!!:github.com/plsgivemeachane/Sha…
I really like to get some feedback. Have fun everyone!
GitHub - plsgivemeachane/ShadowTalk
Contribute to plsgivemeachane/ShadowTalk development by creating an account on GitHub.GitHub
pancake likes this.
“Il periodo PIÙ DIFFICILE della mia VITA” (il conto della sfiga by ADC)
Ultimamente Alessandrone ha iniziato veramente a spingere… non che non lo facesse da anni e anni, però con questi ultimi video si sta superando pericolosamente tanto. E questo che è uscito stasera penso possa essere interessante per tutti… probabilmente anche perché l’argomento non è lo studio, ehh vabbé. Che poi… da quando ha un giardino […]
U.S. deports men from Asia and Latin America with criminal records to South Sudan after legal saga
The Trump administration said it deported a group of eight men convicted of serious crimes in the United States to the conflict-ridden African country of South Sudan, following a weeks-long legal saga that had kept the deportees in a military base in Djibouti for weeks.
Assistant Department of Homeland Security Secretary Tricia McLaughlin said the deportation flight carrying the deportees landed in South Sudan just before midnight EST on Friday. A photo provided by the department showed the deportees, with their hands and feet shackled, sitting inside an aircraft, guarded by U.S. service members.
A conceptual breakthrough has emerged for the Colorado River’s future. Here’s what it looks like.
Negotiators from the seven river basin states said in a series of meetings in recent weeks that they were discussing a plan rooted in a concept that breaks from decades of management practice. Rather than basing water releases on reservoir levels, it would base the amount released from the system’s two major reservoirs on the amount of water flowing in the river. The new concept would be more responsive as river flows become more variable.
A conceptual breakthrough has emerged for the Colorado River’s future. Here’s what it looks like.
After months of stalemate, glimmers of hope have emerged for consensus on a new plan to manage the shrinking Colorado River.Elise Schmelzer (The Denver Post)
Hegseth falsely cited weapon shortages in halting shipments to Ukraine, Democrats say
Reports indicate defense secretary unilaterally acted to halt shipment even as Pentagon suggested US arsenal is stocked
Pete Hegseth, the US defense secretary, unilaterally halted an agreed shipment of military aid to Ukraine due to baseless concerns that US stockpiles of weapons have run too low, it has been reported.
A batch of air defense missiles and other precision munitions were due to be sent to Ukraine to aid it in its ongoing war with Russia, which launched a full-scale invasion of its neighbor in 2022. The aid was promised by the US during Joe Biden’s administration last year.
But the Pentagon halted the shipment, with NBC reporting that a decision to do so was made solely by Hegseth, Donald Trump’s top defense official and a former Fox News weekend host who has previously come under pressure for sharing plans of a military strike in two group chats on the messaging app Signal, one of which accidentally included a journalist.
MnemonicBump
in reply to Rodneyck • • •copandballtorture [ey/em]
in reply to Rodneyck • • •Rodneyck
in reply to copandballtorture [ey/em] • • •reagansrottencorpse
in reply to Rodneyck • • •Rodneyck
in reply to reagansrottencorpse • • •Luouth
in reply to reagansrottencorpse • • •falidorn
in reply to Rodneyck • • •Luouth
in reply to falidorn • • •falidorn
in reply to Luouth • • •The Stars My Destination by Alfred Bester
The original cyberpunk story.
Luouth
in reply to Rodneyck • • •