opensource

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

schizoidman, in Fossify Phone (Fossify is a fork of Simple Mobile Tools) is now available, adding to Fossify's existing Gallery, File Manager, and Calendar apps

Still waiting for their clock app fork

Rudee, (edited ) in Do U know about any AI Web Search Engine?

I’ve used phind a few times and it’s pretty good. I’m not sure if it’s open source, though

Shamot,
@Shamot@jlai.lu avatar

The model is open source, but not the whole site. It was made to help in programmation, so sometimes it makes funny answers when you ask something that has nothing to do with programmation and it tries to answer giving you a Python code.

guttermonk, in Firefox 122 released: Here's what's new
@guttermonk@lemmy.ml avatar

Is it working again with metamask?

nrbray, in Webmail server with multiple mail accounts

I’d suggest trying FairEmail on your phone, email.faircode.eu, before trying to set up an email server.

I would ask if you have good knowledge of IMAP. That allows access to a unified inbox from several devices and you don’t have to own the server. It is far preferable to webmail for me.

I host my own email server and use many devices all over IMAP. If you need a server, nixos-mailserver is my recommendation. You could then try Roundcube on top but I bet you will use IMAP instead before you get there.

bbuez, in If I create a OSS app with analytics to detect & log crashes with feature use, is it a bad practice?

Prompt after a crash, include verbatim data sent, send only this time or opt in for automatic reporting, IMHO best practice as a user who respects the need for valueable analytics

gregorum, in Firefox 122 released: Here's what's new

• Firefox now supports creating and using passkeys stored in the iCloud Keychain on macOS.

woohoo!

flamingmongoose, in Firefox 122 released: Here's what's new

Firefox now ships with a new .deb package for Linux users on Ubuntu, Debian, and Linux Mint

Lol. Lmao, even.

Ephera, in Firefox 122 released: Here's what's new

• Firefox for Android can now be set as the default PDF reader.

Tried this just yesterday and was disappointed that it doesn’t work. Timely update. 🙃

devfuuu,

Mupdf seems to be the most stable for me in the years I’ve used it.

BlastboomStrice,
@BlastboomStrice@mander.xyz avatar

I think firefox pdf reader is one of the slowest pdf readers.😅

On windows I switched to Okular and on android I use Librera (and sometimes the default stuff on my phone).

Ephera,

Eh, my needs aren’t too elaborate on my phone. I only really care about lag while scrolling, which isn’t a problem in Firefox.

Not needing to have another app installed, especially on my mum’s phone, is what I’m mostly excited by.

lemmy_user_838586, (edited ) in Nephele WebDAV server for Docker

A looong time ago, I tried using WebDAV for internal network use and I feel like there was an issue with it I didn’t like and stopped using it and instead went with smb. The issue miiight have been that if I was copying a file to a WebDAV server it didn’t give you a file copy progress? Can’t fully remember. Either way, does WebDAV give you a file copy progress now?

hperrin,

It does. The Windows built in WebDAV client was not great until Windows 10, so that might be what you’re remembering.

lemmy_user_838586, (edited )

I think you’re right, I’ve since moved on to Linux for my OS, but never had a reason to use WebDAV, so haven’t had the chance to test it with Linux WebDAV clients

hperrin,

Both Gnome and KDE have great built in WebDAV clients in their file managers. :) I use Nautilus’ WebDAV client all the time.

akrot, in If I create a OSS app with analytics to detect & log crashes with feature use, is it a bad practice?

As an OSS user, and developper, OPT-OUT is a shitty practice. It should be opt-in to users who face crashes issues if they want to share that data (they care enough to provide their info to the dev to fix it). I know this makes users sound entitled, but otherwise the “opt-out” permission will be exploited by someone which will make users even more paranoid about OSS apps.

ResoluteCatnap, in If I create a OSS app with analytics to detect & log crashes with feature use, is it a bad practice?

Do not collect more data than you need. If you need IP for some reason then that needs to be relevant. Is your app geographically based, for instance? And does the location or IP impact how the app works?

Beyond that, if you’re collecting personal or sensitive data it should be opt-in from a privacy focused perspective.

catalog3115,

Only reason we collect IP address is to evaluate which country is most active & focus localisation(language etc)

gian,

Not that usefull probably. I am in Italy but I use english language for most of the software I use daily, for example.

For this I think it is better to have a simple way to contribute with or ask for the translations.

digdilem, in If I create a OSS app with analytics to detect & log crashes with feature use, is it a bad practice?

It takes years to build a good reputation in OSS, and only one dumb thing (like opt-out of personal data) to ruin it.

(Yes, IPs may be considered personal data in that they can be used to identify individuals, and so subject to the GDPR and, potentially, the very high fines associated with that. Unless you’re evil, don’t collect any personal or identifying data unless you absolutely have to, and very triple sure the user knows what you’re sending and why)

simple, in Wick is an open-source tool for creating Flash style games and animations

Unfortunately this project seems like it got abandoned, the last news post was 4 years ago.

yogthos,
@yogthos@lemmy.ml avatar

It does look like it’s pretty functional as is though. It’s one of the closer Flash alternatives I managed find that’s open source. I find despite all the hate Flash got, it was an amazing piece of technology. It was fast, easy to use, and people made a lot of amazing stuff with it because the barrier to entry was really low. I imagine Flash helped a lot of people learn to program as well because they’d start picking up a bit of scripting here and there playing with it.

There really isn’t any popular alternative to Flash today, and I think that’s kind of a bummer.

d3Xt3r,

There really isn’t any popular alternative to Flash today, and I think that’s kind of a bummer.

WASM is looking increasingly good these days.

Have a look at egui for instance, and just see how fluid and perfomant it is on all platforms - and that is running without using any insecure/clunky/buggy plugins.

The only issue (with egui) is that it’s basically Rust so it’s not exactly newbie friendly, but that’s just a tooling issue. Hopefully in time we can get more newbie friendly tools, and with increasing number of apps using HTML these days, we might just see something as easy to use as Flash soon enough. :)

yogthos,
@yogthos@lemmy.ml avatar

Sure, in terms of underlying functionality WASM or even plain Js can do everything Flash did. What I’m talking about is lack of tooling and accessibility for non technical people to create content. Macromedia Flash was a really easy to use tool that anybody could quickly get started with and make something. You didn’t have to have any programming knowledge at all. Maybe we’ll see newbie friendly tools built on top of WASM someday, but currently there’s really not much happening in this space.

wiki_me,

Have you seen gdevelop? reportedly it does need programming skills.

yogthos,
@yogthos@lemmy.ml avatar

Gdevelop is very nifty, but yeah it’s complex enough to be intimidating for somebody with no development experience. I think the beauty of Flash was just how accessible the tooling for it was. Anybody could get started with it in minutes.

SheeEttin, in If I create a OSS app with analytics to detect & log crashes with feature use, is it a bad practice?

This doesn’t really have anything to do with open source software. It’s more of a privacy topic. You can harvest as much data as you want and still be GPL.

MoLoPoLY, in Webmail server with multiple mail accounts
@MoLoPoLY@discuss.tchncs.de avatar

Hmm sounds like a Webmail client, like Roundcube. Luckily (at least from my point of view) it has no ‘unified inbox’, but you can have as many mail accounts you want, with one login, from different vendors. You can selhost it easily. I use it on a Raspberry Pi with one login and have then access to gmail, yahoo and some other accounts.

To mimic a ‘unified inbox’ you can forward all the different accounts, to one ‘major’ account, so that you receive every mail in this inbox. Than you can create a ‘sending alias’, to answer the incoming mails with the proper SMTP service. Nothing easier than that with Roundcube.

FQQD,
@FQQD@lemmy.ohaa.xyz avatar

That sounds good too. Thinking about it, I dont necessarily need a unified inbox, it’s just makes my life easier. Thank you.

MoLoPoLY,
@MoLoPoLY@discuss.tchncs.de avatar

roundcube.net is the main webside. You can download the complete *.tar.gz file from github.com/roundcube/roundcubemail/releases. Screenshots are at roundcube.net/screens/

  • All
  • Subscribed
  • Moderated
  • Favorites
  • opensource@lemmy.ml
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #