tiz

joined 3 years ago
 

For example, one provider and client like proton mail only uses OpenPGP and apple mail client only supports s/mime. Why is that? Why can we not have Proton mail support both, end of the story. Ain’t it?

[–] [email protected] 1 points 3 weeks ago (1 children)

I wonder if it still needs account management on Mozilla server or on your own. May I?

 

I've recently beaten the Moon lord for the first time and loved the experience. And I'm thinking of playing all over.

But I'm a little confused. When I created a new worlds inside my previously played character, I carried over basically everything I had in my inventory. Is it supposed to be similar to NG+ in dark souls? (without difficulty bump) In that, am I supposed to create a new character because I basically cheese the entire run with the weapons and items I carry over?

[–] [email protected] 2 points 1 month ago

I’m sad too. But I think it’s quite logical given people that use Mastodon probably already know or heard of proton. Marketing is particularly effective for people that don’t know of them (at least while they are small)

[–] [email protected] 10 points 1 month ago

Same lol. Can’t be that catastrophic. Right? …. Right?

 

Hello. With tModloader, there’s one mod named Achievenent mod. I can “grant” myself an achievement with /achievement grant [achievement name]. But how and where am I supposed to type that? Can you point me to the right direction?

[–] [email protected] 3 points 2 months ago

Agreed. Do I expect my mom to manually plug in the usb flash? She ain’t have slightest idea of what a file is. Same goes for Nextcloud everything and Syncthing. Setup and done is Immich. The lead dev of Immich explicitly mention his motivation was to make it easy to backup and share pics with his wife and child.

 

Hello there, (again)!

I purchased Terraria on Steam. And have been playing on my MacBook. I also have desktop PC that runs Bazzite (Linux distro).

I assumed it would just sync the save file between the OS. But it seems that although the sync is not failing, the save data hasn't been synced. All data is still present on the MacBook. But none transferred over to Linux.

Is multiple OS not supported for Terraria?

 

Hello there. I'm now extremely interested in Terraria and I'm thinking of starting the journey from an Android phone. The problem is I live in Japan and my Play Store region is set to Japan as well. I can only get the Japanese version of the game on there. And that's an issue. I got the refund but I'm dumbfounded with options. Can I get Terraria from APK mirror and somehow purchase the game in the app?

Help needed!

[–] [email protected] 1 points 2 months ago

I suggest Matrix if I could choose.

[–] [email protected] 1 points 2 months ago

I know right. “All important stuff -> emails” has to change.

[–] [email protected] 2 points 2 months ago (1 children)

I think this is one viable solution to me (not for other normal people).

But again, with my own domain, I’m basically announcing my presence all over the services I sign up to because I’m no longer a part of the mass of Gmail, iCloud etc. users. I fear this will expose myself even worse in case of personal info breaches. And buying multiple domain is not cheap.

[–] [email protected] 1 points 2 months ago

Yeah. I agree they will definitely go with proprietary solution. I would much prefer something like Matrix adopted. But that has to be blow up in popularity to replace emails…

 

This post is not really about questions I have. I just feel like I need to write this somewhere to express my concern.

First of all, online stores have become a huge part of our society and I admit I heavily rely on that. That alone could be privacy issue but I’d ignore that for the sake of not missing the point of this post.

The problem is rather in the way these online stores send out their receipts. You might already know that emails are by default not client side encrypted. That means your email server admin (Google if you use Gmail, Apple if you use iCloud mail. And Proton if you use Protonmail. Yes Proton claims it stays encrypted as soon as the emails arrive to their server but who can really vouch this? It’s behind the curtain anyway. ) has access to your receipts including of the past.

Now email has been around for a really long time. And the client side encryption part has been worked in a lot of forms such as S/MIME. But none of the online services really implement it even though they contain critically personally identifiable info such as items I bought along with my name & address.

And the thing is even though these online sellers acknowledge this privacy risk, they don’t have options to not email us receipts. For example, Amazon has a dedicated page on their site where I can see the list of everything I bought. That’s literally enough for me. They can stop sending me the receipts in the worst possible way! At least they could provide us with better way (even WhatsApp will do) yet they don’t. This is a severe privacy issue.

I can’t help feeling, with all the sophisticated technology we have at hand, that we deserve better.

[–] [email protected] 2 points 2 months ago

These days, I feel like the underlying problem with these kind of stuff is priority for the phone maker is on the feature that make them money while us, consumers, priority is on a basic functions working 100%of the time.

[–] [email protected] 5 points 2 months ago

Yeah. My point being in terms of AI use, there aren’t really differences between lemmy and Reddit since the data is public. I don’t even see the point why this topic is relevant to privacy.

[–] [email protected] 7 points 2 months ago (6 children)

I wonder what’s different on lemmy though. At the end of the day, this platform is just another platform on the internet which almost anybody have access to. Sure AI use is not on the ToS. But anything open access is assumed to be privacy unfriendly anyway. If it’s the dm feature, it’s a different story.

[–] [email protected] 1 points 2 months ago

Thank you! Great info. After some reading, I went with Rescuezilla which is yet another GUI for Clonezilla. I might give the foxclone next time!

 

I’m going to make a backup of 2TB SSD today. I will use clonezilla mainly because that’s all I know. But do you recommend any other ways for any reason?

I want to keep the process simple and easy. And I will likely take backup once a month or so repeatedly. It doesn’t have to be ready all the time. If you need more clarification, ask away.

 

A gigantic wall of text just to say we don’t have free chargers for whatever reason. IMHO they totally miss the point of the controversy…

 

On mastodon iOS app, i love it that I can see how many people are talking about specific news. But I don’t really know what people are tooting. Can I even do that?

 

Can you help me with these steps?

I created Dockerfile & docker-compose.yaml to spin up a docker container with which I can just docker compose up -d --build.

Steps to recreate:

  1. Set up a docker ready machine
  2. create a folder e.g. typst-server
  3. Create and put Dockerfile & docker-compose.yaml inside of the folder
  4. docker compose up -d --build
  5. Go to http://your-ip:8443/
  6. Install Tinymist Extension for real time preview
  7. You can see that the preview shows nothing except gray background.

Dockerfile

FROM lscr.io/linuxserver/code-server:latest

RUN apt update && apt install -y \
	git \
	curl \
	wget \
	tar \
	xz-utils \
	python3\
	&& apt clean \
	&& rm -rf /var/lib/apt/lists/*

RUN wget -qO typst.tar.xz https://github.com/typst/typst/releases/latest/download/typst-x86_64-unknown-linux-musl.tar.xz
RUN tar xf typst.tar.xz --strip-components=1 -C /usr/local/bin typst-x86_64-unknown-linux-musl/typst

docker-compose.yaml

services:
  code-server:
    build:
      context: .
    ports:
      - "8443:8443"
    volumes:
      - "./data:/home/coder/project"
    environment:
      PASSWORD: "mypasswordhere"

    restart: unless-stopped
 

On immutable systems like bazzite, what's the best way to mount webdav storage as a file system in order to open it with Cryptomator?

options i'm thinking are:

  1. use distrobox bc there i can install davfs and cryptomator
  2. look for flatpak softwares that enables this function

I'm basically clueless. Any kind of info would be much appreciated.

 

I'm extensively looking to setting up gaming on linux inside a VM on proxmox VE. But nothing i've tried worked.

I'm trying out bunch of games through Steam and its proton compatibility layer. Games I tried:

  • Sekiro
  • Elden Ring
  • Dark Souls 3

I've tried:

  • Manjaro KDE
  • Bazzite

on VM:

I was successfully install Windows 10 inside a VM and run games on there. By following this reddit post

But on any linux VM attempts, games can go 'starting' but back to 'launch' in a few seconds. It just fails...

I just want to know if anybody has ever successfully done this:D

view more: next ›