It seems like the FOSS community is continuing to grow, and FOSS apps keep getting better (Immich reallh blew my mind recently), which is a big win 😎 but there are still many apps I use that I would kill for an open source alternative. I am curious what you guys think? Are there any apps you’d love alternatives for?
A decent language learning type app, like dulingo
My phone firmware
Photoshop.
And yeah, no, please, don’t come over and mention Gimp and Kryta and all the others. I get it, they’re cool for the stuff they do. They just aren’t the all in one package that Photoshop is or have as powerful tools specifically for photo editing. Photoshop would require a Blender-style major effort to replicate and Gimp just isn’t up to it. I wish it were. Photoshop is at the perfect intersection of being uniquely capable and walled off behind the single crappiest ecosystem in software.
Nobody likes Adobe, nobody wants to work with Adobe. Nobody can avoid Photoshop. That’s just the world we live in and I don’t like it.
Actually, I’d much prefer a FOSS alternative of Affinity Photo instead of Photoshop.
I’d be happy if the Affinity suite worked on Linux :(
Krita & OpenToonz handle just about everything I need as an animator/artist, but I’m worried about OpenToonz continued development. I worry that there aren’t enough people working on it.
I don’t see anyone talking about it here but I’d dream of an open source alternative to AndroidTV/Apple Tv. Firstly because ATV is ultra-dependent on Google, and secondly because the interface is unclear and not really pretty.
Today I’ve switched to Apple TV, which is much better in terms of UX, but the OS is too closed and sideloading isn’t possible…
So I hope to see some sort of CalyxOS / LineageOS for Tv arrive one day!
KDE BigScreen had some ambition to be that
Plain banking apps for smartphones. Having those developed in the open would hopefully make it possible to have forks that work on rooted devices without hiding magisk and whatnot.
That would be awesome. I wish banks would also have standardized (or at least open) APIs so I could use FOSS financial software to pull my live purchase history and then categorize that and etc. I think some banks do this, but not very common in the US from what I can tell.
Yeah, if banks had open and standardised APIs we could all use the same FLOSS banking app — or choose from any of a bazillion FLOSS apps. Instead they’re going the authoritarian route and locking customers in with bloated black box, proprietary apps…
Xx
Discord. It’s extremely popular and has no direct alternatives (Matrix spaces thing isn’t ready at all yet)
EDIT: I didn’t know Revolt and Zulip existed. I’m doing a research on them now
Honestly i never enjoyed discord It is messy and difficult to find information once its a few days old
Id much rather use a decent forum really
This is more of a hammer as a screwdriver problem, where everyone decided to use chat software as a forum.
almost every hobby has moved to facebook and it’s the same damn thing. utterly useless for the purpose people try to use it for.
i don’t know what the fuck is wrong with people, but this is definitely one of the pinnacles.
They want to use a single account for everything and have the most people possible.
That is it really. They don’t want to have to make 50 new accounts where every account has to deal with getting past the spam policies and filters only to find that their potential base is 1/10 of that on other platforms
That’s why reddit became the de-facto forum for many things also. 1 interface, 1 account, people can trace your account across different “forums” and it was searchable (on search engines, not shit reddit search).
Matrix is also extremely complicated to sign up for. I tried getting some tech savvy friends to sign up for Matrix the other day. Even for someone tech-savvy it is waaaaaaaay too complicated. Many of the clients don’t even have a sign up option, you need to sign up elsewhere first.
Yeah…for many of these programs the onboarding is so daunting, even for those who are tech savvy. Laymen don’t stand a chance with something that is that complicated. It doesn’t often seem to be a technical issue either, more-so a user experience or design problem
It doesn’t often seem to be a technical issue either, more-so a user experience or design problem
Oh 100%. The problem is that there’s a lack of UX designers and such in the Open Source community. There’s technical people building stuff but they often don’t know how to make a good user experience (or in some cases they don’t care to).
IDK why this always gets downvoted. UI/UX some of the biggest issues with FOSS software, and is a massive barrier to entry to someone who isn’t a massive computer nerd willing to put up with that shit.
Canva.
Their feature set and functionality is great, but their vendor lock-in is really off-putting. Even just within their platform, it’s really difficult to move assets around within workspaces.
Let alone edit graphics that you made on Canva and edit them elsewhere, say Penpot, for example.
I wish there were more Open Source games.
Just wanted to shout out https://osgameclones.com/. It has a pretty decent list of them and source ports.
I really liked how Id used to release their old engines as open source, but of course once they got bought out all that stopped. The biggest problem for OSS games is with assets though. There are a few decent open source engines now for a lot of types of games, but it’s a lot harder to find decent looking assets to make games. I wonder if stuff like stable diffusion might help with that going forward.
FOSS CAD softwares. I know FreeCAD exists but it’s very unintuitive compared to the proprietary ones. I am thankful that it exists but it’s a long way apart to become a household name like Blender.
I wish I could start writing one but I don’t have a clear picture of requirements to plan and start writing one. If anyone is expert in this field please link some research papers and guidelines for someone to start fresh.
Ultimate Guitar Tabs. After spending years getting a community to contribute to one of the best music resources on the web, they turn around and lock all but the most basic features behind a pay wall.
It’s the dumbest thing, but right now I just really want a better open source alternative to Advanced IP Scanner. Or I want someone to add a filter (especially by MAC) option to Angry IP Scanner. Whatever. I just want an IP scanner that can filter by MAC and works on Linux.
Every few years I reinvent a script for this lol
Would you by any chance mind sharing? I was going to make my own, but a good starting point never hurts.
(feel free to say no, I don’t want to impose)
Honestly I would if I could.
The reason I redo it is because I change work places… And it’s one of those things I could actually bring with me no problem because it doesn’t contain confidential data, but also since it’s so trivial, I don’t think of it until I’m on to the next place.
And I haven’t made a new one since last change 😂
What I’d probably do today is to list out the constraints and what I’d like to have work, then ask ChatGPT or Bing AI to make it for me, e.g.;
On a system running Red Hat Enterprise Linux 8.8 I should like a simple ping tool. It should be written using best practices, contain a shebang, follow all good guidelines for scripting and for the tools used. It should print out a help section with example if called without arguments. If no flags are provided, it could be hostnames or an IPs. Alternative, it can accept an argument of a CIDR range following a switch, '--range 10.2.3.4/30'. When it has verified the input, the following tests should be made for the IP, hostname or IPs, per IP involved;
- If IP, PTR lookup
- if hostname(s), look up A and AAAA records
- It should try opening all the most common ports using netcat, telnet, nmap or similar
- It should pretty print a concise and user friendly report of all outcomes
The script should be error free, print out helpful error messages when something occurs and gracefully degrade using ‘try/catch’ or similar. As far as possible, it should use different functions internally to ensure modualirty and maintainability.
That would give you a Python or Bash script most likely. It’s going to give you an 80% done script. Probably also experiment with feeding it a type of output you’d prefer. Hope that helps!
I’m sure I’m missing something, but can’t nmap do all of this?
I’m actually looking at doing a wrapper around NMap. Personally I’m fine with “Just use NMap” as a solution, but I need something that’s usable by people who know only a little about Linux and aren’t super comfortable in the command line. So I want to do stuff like enumerating the interfaces and just letting them pick one to scan instead of having to specify a network. I’ll probably work in a really basic UI using Dialog or something as well.
It’d be nice to have some kind of FOSS business suite, aka point of sale, accounting, inventory etc. I’m not a fan of Intuit.
I’ve also not found journal software I really like. RedNotebook is about the closest. I tend to use my journal not only as a personal diary but also as a place to brainstorm and I would also like a checklist/to-do list system, and this I haven’t found in any software free or proprietary. I may have to build it myself, with my rudimentary knowledge of qt.
I may have to build [journal software] myself, with my rudimentary knowledge of qt.
Don’t do that! Take a look at Tonto2.
Looking around at that page…no thanks.
Fusion360
Tried out FreeCad/Ondsel, and just couldn’t get it to cooperate. Trying to do even basic changes would constantly result in errors/crashes. I spent maybe two weeks trying to make a single model. Then I tried making the same model in Fusion360 and was done in an half an hour. Granted, there is a huge difference in experience level here between these pieces of software, but still.
So I think my best bet for now is a jailbroken copy of Fusion360.
@Olgratin_Magmatoe
There are currently some changes on the way. They fundamentally solve the Topo-Naming-Problem I propose to try again after the next release.
I don`t know the #Onsel fork. In what way does it differ from #Freecad or Freecad from #realthunder?They fundamentally solve the Topo-Naming-Problem I propose to try again after the next release.
Are they settled on an assembly workbench yet?
@GorGor
I don’t know.