Salta al contenuto principale


in reply to CashDragon

Seriously, Litecoin? Don't get me wrong, Litecoin is cool, but has nobody learned lessons? Like, at all? Litecoin has MWEB and thats the highlight.
in reply to shortwavesurfer

LTC is the usual path BTC maxi's take once they realize BTC is trash and captured by banking interests.


Orcas may be able to make and use tools, with a little kelp from their friends




China's human rights progress takes center stage at Madrid seminar




FYI: Bitmap fonts might break with the latest fontconfig release


A new version of fontconfig release recently with the added option to disable bitmap fonts. If you're using a rolling release distro, this might break bitmap fonts for you. It definitely does on Arch (and likely Arch-based distros) because they opted to disable them by default for some reason (AFAICT upstream gives the choice but does not recommend one way or the other).

This'll cause fontconfig to skip bitmap fonts, your apps won't be able to access them.

To fix it, you need to configure fontconfig to not ignore bitmap fonts. There are a number of ways to do that.

I'd recommend a user-level fontconfig file. Create $XDG_CONFIG_HOME/fontconfig/fonts.conf with below contents and you get your bitmap fonts back. This negates the file in /etc/fonts/conf.d/70-no-bitmaps-except-emoji.conf. This is the first time I'm configuring fontconfig so there may be a better way ¯_(ツ)_/¯

This should've definitely been news imo especially because this is not the default behavior of upstream. I shouldn't have to read fontconfig PRs to figure out why my fonts broke, even on Arch.

<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
<fontconfig>
  <description>Accept bitmap fonts</description>
  <!-- Accept bitmap fonts -->
  <selectfont>
    <acceptfont>
      <pattern>
        <patelt name="outline"><bool>false</bool></patelt>
        <patelt name="scalable"><bool>false</bool></patelt>
      </pattern>
    </acceptfont>
  </selectfont>
</fontconfig>
in reply to nfms

good source in case anyones interested. I'm fine with them generally being available.


U.S. Policy on Sudan Hurts Civilians Rather Than Warring Factions, Experts Say






Which Distros Are Doing Best Currently?


What Distros do you want to shoutout and why you think they are doing well/are the best at what they do?

I am curious what is out there and have only had some experience with Linux Mint, SteamOS, and Pop!_OS

in reply to atmorous

NixOS is amazing, but it's also got a crazy learning curve. Once you grok it though, it really changes the way you configure your computer.

Fedora is always my favorite big name distro, they're constantly pushing the envelope and adopting new features that need some stability and exposure to mature.

in reply to atmorous

I'm currently using Pop!_OS, which is a great desktop distro.

I was using MX Linux a lot which is amazing for both times when you need a portable distro with lots of features and when you need something that will still run well on older machines.



Facebook is starting to feed its Meta AI with private, unpublished photos



in reply to jackeroni

I'm a huge skeptic of the idea that the US would ever do anything to legitimately "make the world a better place" without having some sort of ulterior motive for fucking over poor people of color in the global south, but there's no fucking way I'm reading an article published by RT.

in reply to jackeroni

Love that libs are down voting actual truth because it comes from RT instead of BBC
in reply to freagle

Right! Theres a worlder fella, fellix or something, sending me the most wonderful messages about my sources! 😁
in reply to jackeroni

Unsolicited abusive DMs - such a common trope among reactionaries
in reply to freagle

Sorry I should have put comments, they were commenting on some of my posts, but oh lord! They'll start sending DMs to?
in reply to jackeroni

Oh yeah, I got spam bombed by one but also got harassed by a few others.
in reply to jackeroni

Yes but nothing as bad as the Raddle guy. He sent me over 300 DMs over the course of an hour because I called out his deranged sockpuppet website. So far, the world guys just seem to get drunk and mad or do vote manipulation
in reply to jackeroni

Idk what people think they are proving with the stalker downvoting. Like yes thanks I appreciate the confirmation you are assmad and insane
in reply to freagle

"Purposefully" is debatable, but whether intentional or by happenstance, damn it really is odd that so many descendants of Nazis are all over my imperial core countries that backed tons of fascist coups over the past 75 years.
Questa voce è stata modificata (2 mesi fa)


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.

Questa voce è stata modificata (2 mesi fa)
in reply to xabadak

Is there a way I can do this without docker? I just run Qbit on my regular windows computer and don't wanna delve into Docker. Would Love to share the 5k+ torrents I have on the I2p network.
in reply to BlueRingedOctopus

You could just install the i2pd windows client, and then configure it to enable "SAM". You could use the 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
in reply to xabadak

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

  1. 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...
  2. 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.


in reply to jackeroni

ITT: people saying "the US and China both seem bad" and being told that they obviously just want to kiss America square on the lips because China has never done anything bad ever
in reply to jackeroni

the west will never forgive China for liberating themselves, it is a dangerous precedent that should be chastised at all costs.

in reply to jackeroni

  • China bad
  • Islam bad and dumb
  • Communism and socialism bad
  • Capitalism good (and make sure you know NOTHING regarding economic theories!)
  • Women dumb
  • Non-Europeans (ethnically, and even then the Germanic tribes are at the top of the chain [Anglo-Saxons included, evidently]) bad and/or dumb
  • Gays bad
  • Christianity good (only when antithetical to the message of Jesus)
  • (white) America good
  • Israel good

Have I captured the essence of the 'classic' ignorant and angry white American? Honestly, it fits pretty well for FN and EDL dudes in France and the UK, respectively...

Questa voce è stata modificata (2 mesi fa)
in reply to YappyMonotheist

Some pretty great points actually. A couple are just terrible but not all
Questa voce è stata modificata (2 mesi fa)

don't like this

in reply to Melvin_Ferd

Which points were great, lmao? These were all comically awful takes at worst to chauvanistic at best.
in reply to Melvin_Ferd

Yes, the original point was "gays bad." Like I said, all of the points range from awful to chauvanistic at best.
in reply to YappyMonotheist

this just captures the angry white man in not just the US, but also KKKommonwealth and Europe.
in reply to Samsuma

Losurdo really drives home that white/western supremacy has been a global project that's gone through many phases, not just limited to one country.

The word untermensch for example, comes from lothrop stoddard, a US white supremacist and eugenicist who greatly inspired the nazis. They also took lebensraum from manifest destiny, and openly wanted to emulate what the US did to its native population, in eastern europe.

After the nazis broke the rules and attacked westward and started western infighting by attacking britain and france, then lost in ww2, the US took up the mantle of the west's leading country who would keep the non-white populations of the world in check, by bombing anyone who dared to challenge colonialism or neo-colonialism, or impede their control of resources and prevent the spice from flowing.

in reply to Dessalines

From the "civilizing missions" of the British, French and the Dutch to the theft, plundering, pillaging and desecration of indigenous lands and its people in the "New World", with all of it mirrored today only this time with different targets, it's clear as fuck that a majority of today's US' white population do not stray far from their European colonialist ancestors and don't want to...

Maybe I'm doomposting but I genuinely don't know how this vicious cycle of white supremacist entities scratching each other's backs and evolving in the process of doing so could end..

in reply to Samsuma

I personally don't think there's much hope for the imperial core countries at least, but they're a minority of the world's population. The rest of the world doesn't want a leading country, they want trade on an equal basis, and a multi-polar world with international bodies that can resolve disputes impartially. Capitalism isn't even as sustainable as feudalism, and will likely have a much shorter lifespan. Enriching a few at the expense of the many isn't sustainable in the long-term, because the many will fight back and eventually win, as they have done and will continue to do.

Empires generally have a long, whiny decline into obsolescence... I think ancient Rome (after all the civil wars, imperial overextension, instability, famines, civil unrest) it eventually emptied out to ~1% of its peak population before it was conquered. If it isn't politically stable, doesn't inspire people, and no one's willing to fight for it, it can't last.

in reply to jackeroni

Nation State bad

Liechtenstein bad

Maldives bad

Seychelles bad

Bahrain bad

Etc.

Questa voce è stata modificata (2 mesi fa)

in reply to jackeroni

I can't tell what on the left is doing. Someone help?
in reply to Spacehooks

If you are being serious that's Derek Chauvin murdering George Floyd
in reply to Spacehooks

From Wikipedia:

And the guy representing the DNC is Tou Thao, who prevented onlookers from intervening in the murder. Highly appropriate meme.

in reply to subversive_dev

Thanks, that is very helpful as I had no idea what the OP image was
in reply to jackeroni

icl twn i js had an argument w a shitlib bc i had to explain to them how they're both right-wing populist parties


Department of Homeland Security announces $94 million in grants to protect Jewish organizations


Secretary Kristi Noem and the Department of Homeland Security announced $94 million in federal grants to over 500 Jewish-based organizations across the United States.

I recently sat down with Rabbi Sanford Akselrad from Congregation Ner Tamid, who told me the temple spends hundreds of thousands of dollars on security.

"The fight against hate against the Jews would morph yet again, um, so when someone says that they are, they, they love Jews but they, but they hate Israel and you get a little deeper, what do they mean by that..... and usually when they go into the territory not of being critical of Israel which is fair game. But they say Israel has no right to exist at all now.... we get into the area of antisemitism," Akselrad said.

More grants are expected in the coming months.

#USA


We have a 3 days open signup & Global FreeLeech!


Torrents
Category
Movies
15375
TV
9455
Game
62
Music
1200
Apps
26
Music Video
69
Sport
83
Total Torrents
26270
Total Torrents Size
358.12 TiB

in reply to Zerush

This is not protecting peoples privacy but straight censorship. Just like how US wanted to ban TikTok.
in reply to Lyubo

US want to ban TikTok, because it's a Chinese company, it has nothing to do with privacy, while in the EU a service must fullfit the GDPR to be allowed to offer their service in the EU and DeepSeek, among others, don't. This has a lot to do with the privacy rights in the EU, those which in the USA don't exist, not with censorship.
Privacy is a basic right in the EU and not even the Police can access sensible personal data or track your activity without an court order, less aprivate company for advertising reasons or for training their AIs.
But yes, right wing politicians in Germany want to change this, but this isn't so easy in a working Democracy where it need to be approved with a majorit in th Bundestag.
Questa voce è stata modificata (2 mesi fa)



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.
in reply to nullpotential

I thought the game was alright overall, but it certainly did not feel like a Dragon Age game. The overall story was decent, however a lot of the dialogue was hamfisted. The real problem was that the gameplay felt like Jedi Survivor without the refined combat mechanics. As a result, combat quickly became tedious and repetitive. I also found that the NPCs were more or less fungible, and it really didn't matter who was in your party. This is a stark contrast with previous Dragon Age games where the whole fun was in scripting the behavior of different characters and coming up with clever ways of combine their abilities. Simply having kept the original mechanics, warts and all, would've resulted in a far better game in my opinion.


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.

in reply to JustOneMoreCat

mint uses X11 which should be considered legacy at this point. wayland (Gnome, Plasma) has all the touch and dock/undock and rotate and pen etc goodies. try it out from a liveUSB and decide for yourself.
in reply to glitching

Why is mint even recommended to new users at this point. Cinnamon is nowhere near Gnome or Plasma and both of these provide much simpler and more unified experience in things like settings



Israeli minister calls for ‘complete halt’ of aid to Gaza


Itamar Ben-Gvir says that he will “demand” Benjamin Netanyahu put a new vote to the country’s cabinet on the issue of the introduction of aid to Gaza.

He said in a post on X: The humanitarian aid currently entering Gaza is an absolute disgrace. What is needed in Gaza is not a temporary halt to the “humanitarian” aid, but a complete halt to it.

When I warned and warned, and unfortunately the only one who voted a month and a half ago against the introduction of the aid, it was clear to me that it would give oxygen to Hamas.

There were those who mocked me and claimed that “the aid that will enter the northern Gaza Strip will only last for 10 days,” and today what was known in advance is becoming clear: Hamas is taking control of the quantities of food and goods that contribute to its survival.

Stopping the aid will quickly advance us to victory. I will demand from the Prime Minister that at the upcoming cabinet meeting the issue of the introduction of aid to Gaza be put up for a new vote.

Questa voce è stata modificata (2 mesi fa)
in reply to BrainInABox

Can you try not to ascribe to me things that I didn't say? Is that too much to ask? I can understand why they would be ok with killing members of Hamas that doesn't mean that I agree with them or think that it is a moral thing to do.
in reply to scintilla

I can understand why they would be ok with killing members of Hamas


Then you understand why they would be ok with killing Palestinians in general.




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.😄

Questa voce è stata modificata (2 mesi fa)
in reply to VerilyFemme

Solus is a great choise for desktop. The Solus team is doing well lately. 😀
They have even weekly updates on updates. Really great comminication towards users.
in reply to Mark12870

I ended up going with CachyOS because I feel confident enough to try Arch now, but I think Solus is going to be my go-to when recommending for beginners, once I try it a bit more. I think it's a good blend between stable and cutting-edge, plus getting to tell people that you won't have to replace it with Solus 2 eventually is kinda a big selling point.




in reply to learnbyexample

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

in reply to pinkapple

I'm not a dem. I want to see the whole corrupt system fall.

You seriously need to touch grass.


I do. I'm constantly outside for work, hunting, or pleasure.

in reply to Geodad

I doubt you caught Putin conspiracy theory brainworms anywhere near grass and from a non-Dem source but at this point it's lowkey clear you're just here to disseminate them.

in reply to Thebigguy

My favorite bit is when people start to pick up meme-speak when they have a master's degree and shit
in reply to Avatar of Vengeance

Oh ya thank god I only barely passed high school. I have an excuse to be an idiot.


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!

Questa voce è stata modificata (2 mesi fa)


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?

Questa voce è stata modificata (2 mesi fa)
in reply to Einar

Any thoughts or recommendations?


::: spoiler Tap for spoiler
Backup important data
:::

in reply to Einar

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

Questa voce è stata modificata (2 mesi fa)
in reply to Luci

Drive Savers has a cleanroom. They got my data back in 2001 or 2002. It costs a lot.
in reply to some_guy

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.

in reply to Luci

expect to pay a lot for zero results


Industry standard for data recovery specialists is “no data, no charge”

in reply to Luci

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.



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 😀

Questa voce è stata modificata (2 mesi fa)
in reply to Gloomy

rclone with the integrated file encryption and one of the supported Provider.
in reply to Gloomy

Koofr has desktop client for Linux.

in reply to jackeroni

Brought to you by - "RT, formerly Russia Today, is owned and operated by TV-Novosti, a non-profit organization established by the Russian state news agency FSUE RIA Novosti. TV-Novosti is funded by the Russian government, making RT a state-controlled international news network."
in reply to Luouth

Above comment brought to you by yet another world account who can't handle a news outlet that goes against approved western narratives and thus labels it "propaganda"
in reply to jackeroni

Yeah, dude, that's not what happening here.

This is Putin's mouthpiece to the world.

in reply to thedruid

MhhHmm, and Associated Propaganda/New York Lies/Radio Free* is the US empires' mouthpiece to the world
in reply to jackeroni

I mean, it is literally run by the use of Russian Government money. It IS state media, AKA propaganda
in reply to Luouth

Oh and that's different from all the US empire funding for various western outlets how exactly?
in reply to jackeroni

I don't think I sang the praises of any media outlets in my comments, did I? And im not American or live in America, so could also care less about certain (also propaganda) American news outlets and what they have to say
in reply to jackeroni

Are you saying that the Whitehouse runs these news outlets? Because the A. P Is definitely not run by them
in reply to thedruid

Various US empire agencies vet and approve Associated Propaganda's reporting to ensure it furthers their imperialistic goals
in reply to jackeroni

Well, I've got to say: I wasn't convinced by this argument at all until that diagram appeared. And now, wow, I'm sold. Holy shit. Looks, there's shapes and everything. Truly, if something is shown in a diagram it MUST be accepted as fact.

Edit: Oh, wow, look, I found another diagram:

in reply to Luouth

Not privately owned, but owned by the state? Awesome


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?

Questa voce è stata modificata (2 mesi fa)
in reply to land

I. like the idea of simplelogin as it seems to do what I'm already doing with icloud plus but it suffers the same problem. the messages are flowing through a third party before they get to me. why would I trust a third party?
in reply to muusemuuse

FWIW, Proton has acquired SimpleLogin. As such, I perceive/regard it as an extension to Proton rather than a third party.


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

Great idea, and love re-purposing stuff! Price/ram probably limit the use to always-on low-power cases. Not sure it can beat small sbc's at their own game, so not sure where it shines - except for re-purposing wasted resources oc.


Technical specification

Volume: 12.5 x 6.5 x 1.8cm
Weight: 99g
Power: 2 - 20W (5-60V input), compatible USB-C PD, PoE
Processing: 4x 2.26Ghz 32bit Cortex-A CPU, 1x 48Mhz 32bit Cortex-M CPU, 4x 578Mhz GPU
Memory: 2 GB RAM, 32 GB eMMC, Ext. SD
Wireless (ext. SMA antennas): Cellular 2G/3G/4G LTE cat. 4 (µSIM), WiFi b/g/n/ac 2.4/5Ghz, Bluetooth 4.0
Communication: 4x USB 2.0, 1x Ethernet 10/100M, 1x Raspberry Pi Header (UART, SPI, I2C, GPIO)

Practical info

!!! Launch offer: 150€ VAT excl. !!!


in reply to Capitanmaroon

Like many others have suggested, you may want to try Bitwig. I understand that it's the alternative DAW that is the most similar to Ableton. The company was started by a group of ex-Ableton employees, so it's not a coincidence. Many people online feel that it's in general a better DAW than Ableton, so you may end up liking it. It supports Linux natively, even provides an official flatpak (or Ubuntu installer?)

It's not as expensive as some make it out to be, and it's on sale right now for a few more days. I just yesterday bought Bitwig Studio Essentials. They have 3 editions and Studio Essentials is the starter version, currently $79 (reg. $99). The next level up is Studio Producer, currently $149 (reg. $199), and the top level is just Studio, currently $299 (reg. $399). They also offer rent to own for $16/month for 25 months on Splice.



Kuwaiti academics call for boycott of Western universities involved in supporting Israel aggression on Gaza


Dozens of Kuwaiti academics have called for a boycott of Western universities involved in supporting Israel’s genocidal war in Gaza, explaining that the Palestinian civilians’ suffering in the Gaza Strip since October 2023 constitutes a grave violation of international humanitarian law, Quds Press reported.

The Association of Faculty Members at the Public Authority for Applied Education; the trade union body comprising academics working in applied colleges, explained in a statement that it was following with great concern the independent reports documenting crimes and violations against civilians in the Gaza Strip, amid suspicious international silence.

“Based on our academic and ethical responsibility, and in adherence to the values ​​of human justice that uphold human dignity and fundamental rights, we express our growing dissatisfaction with the involvement of some Western universities, particularly British ones, in research or investment partnerships with companies that provide military technologies used directly or indirectly to support the ongoing aggression” the statement said.