I use Canva a fair bit for work, is there anything similar that’s more privacy friendly? I don’t always want to open up Gimp, ideally it’ll be available online as well.
I am currently running most of my stuff from an unraid box using spare parts I have. It seems like I am hitting my limit on it and just want to turn it into a NAS. Micro PCs/USFF are what I am planning on moving stuff to (probably a cluster of 2 for now but might expand later.). Just a few quick questions:...
It’s 2024, avoid Proxmox and safe yourself a LOT of headaches down the line.
You most likely don’t need Proxmox and its pseudo-open-source bullshit. My suggestion is to simply with with Debian 12 + LXD/LXC, it runs VMs and containers very well. Proxmox ships with an old kernel that is so mangled and twisted that they shouldn’t even be calling it a Linux kernel. Also their management daemons and other internal shenanigans will delay your boot and crash your systems under certain circumstances.
What I would suggest you to use use instead is LXD/Incus.
LXD/Incus provides a management and automation layer that really makes things work smoothly - essentially what Proxmox does but properly done. With Incus you can create clusters, download, manage and create OS images, run backups and restores, bootstrap things with cloud-init, move containers and VMs between servers (even live sometimes).
Another big advantage is the fact that it provides a unified experience to deal with both containers and VMs, no need to learn two different tools / APIs as the same commands and options will be used to manage both. Even profiles defining storage, network resources and other policies can be shared and applied across both containers and VMs.
I draw your attention to containers (not docker), LXC containers because for most people full virtualization isn’t even required. In a small homelab if you can have containers that behave like full operating systems (minus the kernel) including persistence, VMs might not be required. Either way LXD/Incus will allow for both and you can easily mix and match and use what you require for each use case.
For eg. I virtualize the official HomeAssistant image with LXD because we all know how hard is to get that thing running, however my NAS / Samba shares are just a LXD Debian 12 container with Samba4, Nginx and FileBrowser. Sames goes for torrent client that has its own container. Some other service I’ve exposed to the internet also runs a full VM for isolation.
Like Proxmox, LXD/Incus isn’t about replacing existing virtualization techniques such as QEMU, KVM and libvirt, it is about augmenting them so they become easier to manage at scale and overall more efficient. I can guarantee you that most people running Proxmox today it today will eventually move to Incus and never look back. It woks way better, true open-source, no bugs, no BS licenses and way less overhead.
It’s funny how conservative Windows is, it still has components from the NT.
That calling: ensuring things are compatible with old software and not fucking your users over. Just for fun I tried to install Photoshop 6 from 2000 on Windows 11 and it works just fine. Same goes for MS Office 2003.
Long story short, I have a desktop with Fedora, lovely, fast, sleek and surprisingly reliable for a near rolling distro (it failed me only once back around Fedora 34 or something where it nuked Grub). Tried to install on a 2012 i7 MacBook Air… what a slog!!! Surprisingly Ubuntu runs very smooth on it. I have been bothering all...
Debian version is the only one that seems reliable enough but, again, it is Debian, the packages are “old”.
Install Debian, then install all the software you might need using Flatpak. There you go, solid and stable OS with the latest of with little to no effort. Bonus extra security.
This article was written in the sense of bashing gnome but yet some points seem to be valid. It explains the history of gtk 1 to 4 and the influence of gnome in gtk. I’m not saying gnome is bad here, instead I find this an interesting to read and I’m sharing it.
“I’m not saying gnome is bad here”… but it lacks basic DE features, pushed useless crap like the activity view to people and slow animations that can’t be completely turned off. To top things they try to reinvent the desktop experience every 2 or 3 years and end up making things worse (like when they decided to remove the desktop icons).
All for a “design and usability view” that doesn’t amount to anything productive.
Started in mid November and despite repeated requests from Tuta(nota) and reassurances from MS, it’s still happening and MS have gone silent on the subject.
Well MS being anti competitive as usual. Side note, I like Tuta very much, finally an independent provider, but I would never use it as they don’t provide IMAP/SMTP.
This is a win indeed, but what people don’t see is that most times “exaggerated and abrasive” regulation like that is only proposed to hide up other clauses and proposals that are equally bad or even worse - get the public distracted and thinking they made a difference and that the EU listens to them.
Another thing that people miss, and that most Americans folks would lose their minds about while reading this, is the fact that eIDAS also brings an unique electronic identification for each European citizen company, “a digital solution for proof of identity of citizens or organizations” backed by asymmetric cryptography with the end game of replacing paper documents.
To be fair this isn’t a new thing, most countries in Europe already provide standardized smartcards as citizen identity cards that use asymmetric cryptography so you can electronically sign documents and login to gov services with them. Said signatures have legal value and in some cases - such as lawyers and doctors - you’re required to sign documents and prescriptions with the card. eIDAS just pushed it even further.
Just imagine the potential for a govt/EU to revoke your oficial / legal identity at any time :)
Seriously this was very surprising. I’ve been experimenting with GrayJay since it was announced and I largely think it’s a pretty sweet app. I know there are concerns over how it isn’t “true open source” but it’s a hell of a lot more open than ReVanced. Plus, I like the general design and philosophy of the app....
Bruh, you’re literally an ad-blocking YouTube frontend. What kind of mental gymnastics does it take to be facilitating ad-blocking and then at the same time shame the end-user for using an extension which simply automates seeking ahead in videos.
My phone is no longer getting updates, so it’s time to buy a new one. The hardware could easily last 1-2 more years but I’d have to replace the battery, which is a pain on my phone....
I just don’t want my content scattered across different platforms in suboptimal quality and be forced to pay
That and also the fact that sometimes content vanishes from those platforms because of licensing agreements and/or get censored like many older TV Shows have gotten.
I’m a long-time Transmission user but I just learned that VPN killswitches are a thing (how did it take me so long!?). I would like to try another client which has this feature in case I forget to launch my VPN client before opening Transmission. Does anybody have any recommendations? Deluge? QBittorrent? Or any others?...
You don’t need to switch to another client. Apparently Transmission can be set to bind to your VPN IP by editing settings.json:
bind-address-ipv4: String (default = “0.0.0.0”) Where to listen for peer connections. When no valid IPv4 address is provided, Transmission will bind to “0.0.0.0”.
bind-address-ipv6: String (default = “::”) Where to listen for peer connections. When no valid IPv6 address is provided, Transmission will try to bind to your default global IPv6 address. If that didn’t work, then Transmission will bind to “::”.
If you set those with your VPN IP and the VPN is down then Transmission won’t be able to communicate with any peers.
Another option, is to use systemd to restrict Transmission’s networking to your VPN IP. You can make an override of the default transmission daemon unit by using the following command:
<span style="color:#323232;">[Service]
</span><span style="color:#323232;">IPAddressDeny=any
</span><span style="color:#323232;">IPAddressAllow=10.0.0.1 # --> your VPN IP here
</span>
Another systemd option, might be to restrict it to a single network interface:
<span style="color:#323232;">[Service]
</span><span style="color:#323232;">RestrictNetworkInterfaces=wg0 # --> your VPN interface
</span>
Save the file and run systemctl daemon-reload followed by systemctl restart transmission-daemon.service and it should be applied.
This will be safer than just doing bind-address-ipv4 and bind-address-ipv6.
Rasbperry Pi is a popular choice as a SoC / SBC Linux board. But you have to use their custom linux kernel. Are there Linux boards with decent mainline Linux kernel support?
You most likely do not want to run a mainline kernel / system. Run Armbian instead, it is Debian optimized for SBCs, it has a very good track record and sometimes is the only option after manufacturers stop creating images for their old boards.
Generic images / mainline kernel might underperform in your board, the GPIO and other low level components will, most likely, not work and you might burn your storage as logging and other I/O intensive operations aren’t tweaked for SD/eMMC. Armbian aims to fix all those issues and provides continuous system and kernel updates long after the manufacturer stops doing so.
Today we are forced to share some sad news - yesterday many of our domains were seized again. We should highlight that the majority of the seized domains were not mirrors of the Z-Library website. Instead, they were separate sub-projects, containing only books in rare languages of the world, and their blocking is perplexing. For...
The GNOME Foundation is thrilled to announce the GNOME project is receiving €1M from the Sovereign Tech Fund to modernize the platform, improve tooling and accessibility, and support features that are in the public interest....
For the 1000th time, those extensions aren’t even close to what something really native would offer. They fail in some circumstances like drag and drop to certain plains and behave inconsistently.
Sounds cool, however don’t forget this is under MatterMost Licensing:
A source available license gives access to source code, but places restrictions on its use. The Mattermost Source Available License allows free-of-charge and unrestricted use of the source code in development and testing environments, but requires a valid Mattermost Enterprise Edition License in a production environment.
Still garbage. Why is it so hard for the KDE guys to actually design something simple that makes sense? Starting with proportions and spacing between elements that they seem to be unaware of?
I just found out about AppImageLauncher, a package handler for AppImages. It organizes them, creates desktop files for you and handles updates and removal....
so is it possible to watch pirated shows and movies together over the internet? me and my friends cant meet up because we’re hours away from eachother.
What about you all torrent the same file, hit play at the same time and use some audio / video chat for the rest? Discord, MS Teams (lol), Zoom, Skype, FaceTime, whatever is available…
[es] Spanish government is working in a digital certificate to identify adults and avoid minors to access porn sites (cadenaser.com)
Age verification without name and surname: this is the way to avoid minors to watch porn.
Alternatives to Canva?
I use Canva a fair bit for work, is there anything similar that’s more privacy friendly? I don’t always want to open up Gimp, ideally it’ll be available online as well.
When Windows 10 dies, I am going to jump ship over to Linux. Which version would you recommend for someone with zero prior experience with Linux? **Edit: Linux Mint it shall be.**
Whom also likes to game every now and then ;)...
Planning on setting up Proxmox and moving most services there. Some questions
I am currently running most of my stuff from an unraid box using spare parts I have. It seems like I am hitting my limit on it and just want to turn it into a NAS. Micro PCs/USFF are what I am planning on moving stuff to (probably a cluster of 2 for now but might expand later.). Just a few quick questions:...
I'm Done With Windows, Are you? (youtu.be)
The "Everything" Fanless Home Server for under $300 USD (www.servethehome.com)
Is Ubuntu deserving the hate? (lemmy.ml)
Long story short, I have a desktop with Fedora, lovely, fast, sleek and surprisingly reliable for a near rolling distro (it failed me only once back around Fedora 34 or something where it nuked Grub). Tried to install on a 2012 i7 MacBook Air… what a slog!!! Surprisingly Ubuntu runs very smooth on it. I have been bothering all...
Is there any future for the GTK-based Desktop Environments? (ludditus.com)
This article was written in the sense of bashing gnome but yet some points seem to be valid. It explains the history of gtk 1 to 4 and the influence of gnome in gtk. I’m not saying gnome is bad here, instead I find this an interesting to read and I’m sharing it.
MS Outlook Blocking Tutanota Emails As Spam (tuta.com)
Started in mid November and despite repeated requests from Tuta(nota) and reassurances from MS, it’s still happening and MS have gone silent on the subject.
Why you should never use Facebook or Google to log in to third party websites - what to do instead (tilvids.com)
EP rejects mass scanning of private messages - European Digital Rights (EDRi) (edri.org)
Louis Rossman/FUTO's YouTube app, GrayJay, now supports Sponsorblock... and shames you if you use it
Seriously this was very surprising. I’ve been experimenting with GrayJay since it was announced and I largely think it’s a pretty sweet app. I know there are concerns over how it isn’t “true open source” but it’s a hell of a lot more open than ReVanced. Plus, I like the general design and philosophy of the app....
Deciding between Fairphone 5 and Pixel 8
My phone is no longer getting updates, so it’s time to buy a new one. The hardware could easily last 1-2 more years but I’d have to replace the battery, which is a pain on my phone....
on arch btw. (i.imgflip.com)
Once a pirate, always a pirate (discuss.tchncs.de)
Favourite FOSS Torrenting Client for Linux that has a VPN killswitch?
I’m a long-time Transmission user but I just learned that VPN killswitches are a thing (how did it take me so long!?). I would like to try another client which has this feature in case I forget to launch my VPN client before opening Transmission. Does anybody have any recommendations? Deluge? QBittorrent? Or any others?...
SBC's with better mainline Linux support than Raspberry Pi?
Rasbperry Pi is a popular choice as a SoC / SBC Linux board. But you have to use their custom linux kernel. Are there Linux boards with decent mainline Linux kernel support?
Z-Library Blog: "Unprecedented seizure of our domains with books on rare languages" (z-library.se)
Today we are forced to share some sad news - yesterday many of our domains were seized again. We should highlight that the majority of the seized domains were not mirrors of the Z-Library website. Instead, they were separate sub-projects, containing only books in rare languages of the world, and their blocking is perplexing. For...
GNOME Recognized as Public Interest Infrastructure (foundation.gnome.org)
The GNOME Foundation is thrilled to announce the GNOME project is receiving €1M from the Sovereign Tech Fund to modernize the platform, improve tooling and accessibility, and support features that are in the public interest....
Focalboard: a free alternative to Trello (lemdro.id)
Focalboard is an open source, self-hosted alternative to Trello, Notion, and Asana.
New Plasma 6 Default Icon Theme Looks (invent.kde.org)
Just learned about AppImageLauncher (lemmy.world)
I just found out about AppImageLauncher, a package handler for AppImages. It organizes them, creates desktop files for you and handles updates and removal....
is there a way to watch pirated shows/movies together?
so is it possible to watch pirated shows and movies together over the internet? me and my friends cant meet up because we’re hours away from eachother.