github.com

DeltaTangoLima, to asklemmy in has anyone tried out lemmynade as a lemmy app?
@DeltaTangoLima@reddrefuge.com avatar

Yep - the latest release supports both 0.18.x and 0.17.x. I’ve been running it for the past few releases over the last couple of days and I really like it.

BTW, it’s been rebranded as Liftoff.

Toxinflora,
@Toxinflora@lemmy.ml avatar

thanks for letting me know, since i didn’t know that

Gamers_Mate, to asklemmy in has anyone tried out lemmynade as a lemmy app?

Omg someone actually named an App lemmynade, I suggested that name three days ago. This is really cool!

Anti_Weeb_Penguin,
@Anti_Weeb_Penguin@lemmy.world avatar

They just changed it to Liftoff

Gur814,
@Gur814@kbin.social avatar

Boo. Lemmynade was a better name.

rinze, (edited ) to privacy in Nitter is shutting down
@rinze@infosec.pub avatar

Came here to post a similar comment zedeus made in another thread:

Nitter is dead.

I still checked some Twitter accounts from people that were interesting to me and didn’t migrate to Mastodon. One less thing to worry about, I guess.

Contramuffin, to asklemmy in Nerds, I need ideas for my college project that should resemble the below GitHub project - Event Planner.

Pro tip: if you want to ask for help, it’s not a good idea to disparage the people who are supposed to help you immediately before you ask for help

csm10495, to privacy in Privacy Concerns on Lemmy: A Call for More User Control
@csm10495@sh.itjust.works avatar

Technical question: How would posts federate if private?

MajorHavoc, (edited ) to privacy in Privacy Concerns on Lemmy: A Call for More User Control

It gets weird fast, because before privacy controls in the Lemmy source code mean anything, we need trusted third party verification of a server’s patch level, and security controls.

That can be done, and I think Lemmy has a shot at getting to that point, but it’ll be awhile.

In the meantime, I suspect the Lemmy developers are hesitant to add and advertise features that you can’t be sure are actually correctly enabled on your instance.

But yeah, let’s not let perfect be the enemy of moving toward better.

Edit: Assuming you completely trust your instance admin, we could start adding some basic privacy to actions taken on your home instance.

But as soon as the user starts interacting via federation, all bets are off - because the federated instance may he malicious.

I think we might see one or more “trusted fediverse” groups emerge in the next few years, with instance admins making commitments to security controls, moderation, code of conduct, etc.

So, in theory, the lemmy software could start implementing privacy controls that allow users to limit their visibility to whichever part of the fediverse their instance admin has marked as highly trusted.

But even then, there’s risks from bad actors on highly trusted instances that still allow open signups.

Anyway, I totally agree with you. It’s just a genuinely complex problem.

SnotFlickerman, (edited )
@SnotFlickerman@lemmy.blahaj.zone avatar

If all the people complaining would just contribute to the codebase this wouldn’t even be an issue.

Often, you even see the devs coming into threads like this and making suggestions, like “make a pull request.” They want more people contributing.

It’s tons of people whining, very few people contributing. Guess what? While at a certain point, adding developers stops increasing productivity, there’s a small window where adding developers does increase productivity.

If I am correct, Lemmy only has four main developers. That’s well within the range to add more developers and increase the productivity, making new features and security come faster.

So I get it, but things take time, and are complicated, which you thankfully can see.

People whinging about it in threads does nothing to change it. Donating to Lemmy’s development costs or contributing code does.

So much of it sounds like it sounds like its from less-technically-inclined people (some of its valid critique from experts, but they generally… write bug reports and do pull requests…) who just want it to be better but the only way they know how is to “bring awareness.” Well, all that “awareness-bringing” just amounts to spreading FUD.

Sal,
@Sal@mander.xyz avatar

I think we might see one or more “trusted fediverse” groups emerge in the next few years, with instance admins making commitments to security controls, moderation, code of conduct, etc.

There is now at least one system in place for admins to vouch for other instances being non-malicious, and to report suspected instances. It is called the fediseer: gui.fediseer.com

MajorHavoc,

Very cool.

brejela, to linux in Docker team is considering distributing Docker Desktop as a Flatpak and Snap

I couldn’t possibly care less about Docker Desktop. Portainer is a much better solution when graphical administration becomes necessary. (Which should be never)

ikidd,
@ikidd@lemmy.world avatar

A middle ground is LazyDocker. Lets you do most of the stuff Portainer does without leaving the SSH terminal.

WeLoveCastingSpellz, to linux in Docker team is considering distributing Docker Desktop as a Flatpak and Snap

YES PLEASE

Russianranger, to linux in Docker team is considering distributing Docker Desktop as a Flatpak and Snap

This is interesting to me for my use case scenario, specifically SteamOS.

What I’m trying to do is run an emulated Everquest server (lookup EQEmu). The community there has several methods of installation of the server, Windows, Linux, and Docker. The hurdle to overcome is the immutable file system, specifically when it comes to the database (MariaDB). I think I may have found a work around via Linux brew and installing MariaDB through that (which I’ve done, I just have to make the final connection). However the Docker setup, when running it on a separate distro is stupid easy. If they make this a Flatpak, it can potentially be the solution I’m looking for.

Really the end goal is creating a Single player Everquest. I have a dual boot with it operating via Windows, but would much prefer to have it on the SteamOS side of the house.

ylai,

There might be several misunderstandings:

  • Docker Desktop ≠ Docker Engine, and I think what you (and several in this thread) are thinking is actually Docker Engine. Docker Desktop ultimately includes a Docker Engine inside, but it does not appear you need that virtual machine (e.g. running non-Linux code). See: docs.docker.com/desktop/faqs/linuxfaqs/-is-t…
  • Docker Desktop is based on KVM, which already works with Flatpak. So this is not something new. For example, GNOME Boxes is available as Flatpak and provides a way to run KVM guests in SteamOS.
  • Starting with version 3.5 (the current stable) SteamOS already includes Podman with the default installation. And running the daemon-y Docker Engine “bare metal” is not going to be any easier with the immutable filesystem. While Docker Desktop solves this by using KVM, it adds another layer with performance loss, vs. just running Podman containers.

So what you want is already available, and no Docker Desktop is actually needed.

Vincent,

But so if Docker Desktop does include Docker Engine, does that mean I wiill now be able to run Docker (with a some performance loss) simply by installing a Flatpak, i.e. I won’t even need to touch the CLI?

ylai,

Yes. If you mean “CLI” as for e.g. pacman install, it is a GUI (Electron) application, so I expect will install straight from e.g. KDE Discover and then run without you touching the shell.

Vincent,

That is already a pretty big benefit to me, thanks for explaining!

emax_gomax, (edited )

Ooh, didn’t know about podman. That’s neat.

Edit: shame they didn’t include podman-compose as well.

ylai, (edited )

Installing podman-compose with the immutable filesystem is fairly straight forward, since it is just a single Python file (github.com/containers/…/podman_compose.py), which you can basically install anywhere in your path. You can also first bootstrap pip (python3 get-pip.py --user with get-pip.py from github.com/pypa/get-pip) and then do pip3 install --user podman-compose.

emax_gomax,

Yep. That’s what I plan to do, just a shame it isn’t already there… also that I’m travelling from tomorrow so might have to defer it for a bit XD.

Norodix, to opensource in Unexpected-Keyboard: A lightweight Android keyboard.

I find this to be the best keyboard. My language uses a lot of non ascii characters and its so much faster to type them with this!

fenndev,
@fenndev@leminal.space avatar

I use it alongside SwiftKey (with Internet access disabled). It’s a godsend in Termux.

merde,

try tracker control and you will see that swiftKey doesn’t respect that “disable”

fenndev,
@fenndev@leminal.space avatar

I use GrapheneOS. It is unable to access the Internet entirely.

null,

An app being able to subvert system-level permissions would be pretty huge news.

I downloaded that app along with SwiftKey and disabled network access for it. Here’s what I get: https://slrpnk.net/pictrs/image/32b10804-61db-4724-98e1-647e77bf17e1.webp

Where am I supposed to see it being able to access the internet?

merde,

in the “traffic log”

null,

Enabled the traffic log, used SwiftKey in a few different apps, got traffic from those apps, but nothing from SwiftKey. What am I missing?

loki,

a tinfoil hat?

merde,

on my phone, even with disabled access, it was “phoning home” regularly. i’m on AnySoftKeyboard for the last 2 years.

maybe my os wasn’t intact 🤷 it’s degoogled now and (relatively) tracker free

if Swiftkey works for you … good for you.

excuse my comments

null, (edited )

I don’t use SwiftKey, just tested it because you shared a tool for doing it and claimed it was able to subvert Android permissions.

You probably didn’t actually disable the permission – like I said, the idea that an app could get around system-level permissions like that, in a way you could plainly observe would be headline news. It would be astounding that you somehow uncovered something that massive.

httpjames, to opensource in GustavoASantos/Noti: Quick glance, clear progress
@httpjames@sh.itjust.works avatar

It’s such a small tweak but I love it!

PlantObserver, to selfhosted in Tempo – An open source music client for Subsonic built natively for Android, now with Android Auto support

Damn FOSS Android Auto development is starting the new year off strong! First grapheneOS successfully implementing it on a non-stock OS and now this too. Too bad I got rid of my vehicles last year and no longer have a use for it on my ebike.

codeboy,

I first read this as you used to use android auto on your ebike and got really confused

MagneticFusion, to opensource in Open source Android video editor, built with Media3 and Jetpack Compose.

FINALLY what I have been waiting for. This is an amazing project. If the developer sees this, keep up the good work

trevor, to linux in Beachpatrol: A CLI tool to replace and automate your everyday web browser (Wayland support)

This is really cool! Do you have a rough timeline for Firefox support?

sebastiancarlos, (edited )

It should be pretty soon. I’ve got it working already, but I need to test it more and figure out how Firefox profiles work with Playwright.

If you want you can just clone it and replace “chromium” with “firefox”. It should just work, and it shouldn’t take too long to figure out the rest.

vort3,
@vort3@lemmy.ml avatar

Let us know when it’s ready, I’d like to try that.

sebastiancarlos,

Will do, bossman

scytale, to privacy in Proton domains blocked as disposable in disposable filter

I saw the other day Tuta complaining that Outlook has been sending emails from tutanota.com straight to junk/spam. What’s surprising is tuta.com emails were fine. So not sure if their domain change had anything to do with it, or if MS is doing the same thing as in the OP.

privacyfighter,
@privacyfighter@discuss.online avatar

Look. Outlook, Yahoo, ICloud, even Gmail provides temp mails solutions, but nobody complains or blocks them.

Also you can use something like this that will create disposable Gmail every time. So blocking Proton is totally useless

  • All
  • Subscribed
  • Moderated
  • Favorites
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #