Software Endorsements

  • 🐕 I am attempting to get the site runnning as fast as possible. If you are experiencing slow page load times, please report it.

Did you like the App?

  • yes

  • no

  • Stop waisting our time


Results are only viewable after voting.
I used to use Mullvad, but it's relatively expensive (compared to other providers) and their API at least used to shit the bed regularily and they recentely removed port forwarding as feature. I heard it was connected to people hosting child porn and offering access via forwarded ports but if it wasn't torrenting I find that hard to believe because it just seems overtly complicated in a time where twitter, discord etc. don't take posts with CP down for years and LE obviously doesn't care that much if it's not useful for some agenda to "find" it.

It was caused by people using it for hosting RAT's, C2 and other malware. Mullvad ip's were getting blacklisted by Spamhaus all the time and escalated to transit providers.
Shit hit the fan because of it being used by ransomware operators and resulted in Mullvad offices getting raided https://mullvad.net/en/blog/mullvad...-search-warrant-customer-data-not-compromised
 
This will only affect a small subset of users, but Flood makes a very good interface replacement for qbittorent. I had the swizzin package installed on my server and used qbittorent but it's interface is so ugly and nearly impossible to use on mobile devices. Despite the Swizzin documentation not saying so, Flood will act as an interface for qb and it is so much better looking, with a dark theme with mobile support.
 
TiinyHostNeocitiesnull-e.ddos.lgbt
Doesn't Automatically deletes your account if it finds the words NIGGER anywhere✅❌✅
Allows you to use disposable emails✅
❌
N/A
Doesn't gives users a malware warning❌✅✅
Not watermarked❌✅✅
:smug:
I don't think it means much.
I give them credit for taking away credit card auto renewals to reduce the amount of time they had to hold onto info. A lot of passive revenue is generated by stupid people letting shit autorenew endlessly and it no doubt hurt their bottom line doing that.
ideally be set up to be hosted on a personal server already running nextcloud? So like a To-Do task sync, OneNote, calendar also. And maybe a RSS client that can be hosted on a server?
You can use DAVx5 on Android to do CalDAV (Calendar) and CardDAV (Contacts) syncing with Nextcloud. DAVx5 costs money from Google Play but you can get a free open source version through F-Droid. The Tasks.org Android client can plug into DAVx5 CalDAV syncing so Nextcloud tasks can be synced and manipulated on your phone and vice versa. It basically creates a special calendar for tasks that's separate from your normal calendar.

Mailcow is a good option for self-hosted mail if you're ever looking to replace Microsoft hosted e-mail. Very easy to run and it's popular so lots of documentation and help out there.

I would suggest not putting your photos into Nextcloud if you're looking to replace OneDrive as it's retardedly slow and impossible to find anything. Use Immich for storing photos + syncing from Android. The Immich app is extremely fast and it can do image recognition so you can search for images based on the content, like "wet dog" returns a bunch of photos of my dogs playing in water.

OneNote is something I've struggled with. The old school fat version that shipped with Office is so good, but I am trying out a FOSS Notion-clone called AppFlowy which can do a lot of the stuff that OneNote does and supports self hosting. If you do self host, I would suggest not opening it to the Internet unless you can do some IP whitelisting or run it on your home network and access it remotely via Wireguard. Its out of the box security is abysmal with lots of default passwords (though can be fixed in the .env file) and there's literally no way to prevent randoms from making accounts on your instance. It's very immature.
 
  • Like
Reactions: Butch Hartman
what's the best email client for Android that has full Outlook intergration?
You'll struggle to find one which can talk the Outlook proprietary protocols (EWS, MAPI, ActiveSync, etc.) but if IMAP is sufficient then I suggest either K-9 Mail or FairEmail. The latter is what I use and they're both decent clients.
 
anyone has tried Whonix or is it too schizo/overkill?
Definitely not overkill. Even though basic containerization or Tails protect you for most parts, they for example don't protect your real IP from being leaked by potential exploits in Tor itself. Whonix is an exception to this from the architectural standpoint, as the workstation and Tor gateway are separated into two separate & isolated VMs.
 
Definitely not overkill. Even though basic containerization or Tails protect you for most parts, they for example don't protect your real IP from being leaked by potential exploits in Tor itself. Whonix is an exception to this from the architectural standpoint, as the workstation and Tor gateway are separated into two separate & isolated VMs.
Interesting, I think I'll give it a shot.
 

Zoxide is a alternative to cd that lets you enter directories through shorthands that are registered automatically based on your patterns. Say I had directory /home/flux/myprogram/files, after you navigate through to it a couple times you could just do
Code:
Z myprogram files

It definitely saves a lot of time and so far haven't had any issues.
I have been using this as my `cd` command for a while now and it's great. Definitely saves time
 
Shout out to vaxry and his hyper autism for rewriting the whole of the wayland protocols in Hyprland and making Nvidia work. I followed https://wiki.hyprland.org/Nvidia/ and additionally added nvidia-drm.fbdev=1 (someone might want to add this to the wiki, Hyprland crashes without it) to the kernel parameters and Hyprland on a Nvidia Quadro (had it for CAD) works flawlessly (even better than X11, eat shit xorg). Sway doesn't, because the developers are retarded GNU-pills.

Here's the whole NixOS module that does this:

Code:
{ hardware, ... }:

{
  imports = [ hardware.nixosModules.common-gpu-nvidia ];

  boot.kernelParams = [ "nvidia-drm.fbdev=1" ];

  boot.kernelModules = [
    "nvidia"
    "nvidia_drm"
    "nvidia_modeset"
    "nvidia_uvm"
  ];

  hardware.nvidia = {
    open                   = false;
    powerManagement.enable = true;

    prime = {
      intelBusId  = "PCI:0:2:0";
      nvidiaBusId = "PCI:1:0:0";
    };
  };

  environment.sessionVariables = {
    GBM_BACKEND               = "nvidia-drm";
    LIBVA_DRIVER_NAME         = "nvidia";
    NVD_BACKEND               = "direct";
    XDG_SESSION_TYPE          = "wayland";
    __GLX_VENDOR_LIBRARY_NAME = "nvidia";
  };
}
 
  • Like
Reactions: Prokhor Zakharov
is there any linux cad software that isn't unintuitive hot garbage? or at least is there a way to get button labels on FreeCad instead of having to hover and guess what each glyph does?

or maybe i should just figure out how to install a cracked version of Mastercam on Linux
 
Can someone recommend a good photo metadata/tagger editor? I have thousands of photos from my trips and would love a quick way to tag them like how PhotoSift works to quickly sort images into folders (which was a recommendation from this thread I think, so thanks!)

I've found what looks like would suit me perfectly - fastphototagger on SourceForge. It requires installing Java on my computer, but I don't know enough about if that's a sensible idea or not in current year.
 
I've found what looks like would suit me perfectly - fastphototagger on SourceForge. It requires installing Java on my computer, but I don't know enough about if that's a sensible idea or not in current year.
Personally I usually have a Java version or two but never use a plugin that allows it to run in a browser under any circumstances, and obviously be really careful about what you run with it. It's a sandbox but it seems like every few months there's yet another bit of malware that jumps out of the sandbox and fucks shit up.
 
Back