tiz

joined 4 years ago
[–] tiz@lemmy.ml 1 points 2 days ago

https://turtlapp.com/ would be a nice middle ground.

[–] tiz@lemmy.ml 2 points 9 months ago

Yup, yup and yuuup. I can vouch this:

Feels really good, and in a different way than many fromsoft titles

[–] tiz@lemmy.ml 2 points 9 months ago

Awesome to hear the dlc is good! I’m liking Lies of p more than I originally thought. So I might buy it too:)

 

Except for the translation;) it was phenomenally bad.

But gameplay wise, I’m confident that it has some of the coolest mechanics out there In the soulslike universe. I particularly loved that it occurred to me so many times that it had felt completely impossible to beat bosses at first but I gradually figured them out. And many tries after, I slay them like I dance!

 

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?

[–] tiz@lemmy.ml 1 points 1 year ago (1 children)

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

[–] tiz@lemmy.ml 1 points 1 year ago (1 children)

Thanks for sorting this out! Will do

 

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?

[–] tiz@lemmy.ml 2 points 1 year 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)

[–] tiz@lemmy.ml 10 points 1 year 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?

[–] tiz@lemmy.ml 3 points 1 year 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!

[–] tiz@lemmy.ml 1 points 1 year ago

I suggest Matrix if I could choose.

[–] tiz@lemmy.ml 1 points 1 year ago

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

[–] tiz@lemmy.ml 2 points 1 year 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.

[–] tiz@lemmy.ml 1 points 1 year 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.

 

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.

view more: next ›