• 17 Posts
  • 646 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle




  • But be careful in case others worked or contributed to the project as well. If you operate against their will, then it can get into the unethical part, but that depends on the context and I’m not a lawyer anyway. But if you are the only developer, then you pretty much do whatever you want, if the license of the libraries you are distributing allow it. I mean there are sometimes libraries that do not allow making money off, which would be a violation of the terms of its license, if you sell it with your program.


  • Then you can do whatever you want with it. You can publish it under different licenses or charge money on one platform and not charge any money on another. Its all up to you and its legally right and ethical. Some people don’t like that you charge money for an Open Source program, but that is their decision. Its totally okay to charge money for something you created. Don’t let people dictate you how to publish and sell your own software. If someone does not like paying and supporting you, you can always point to Fdroid or the source code. Absolutely ethical.


  • Free and Open Source developers have often a hard time to earn money for their work. Having it for 10 Euros/Dollars on Steam is an easy way for them to earn money and for users to support the software they like. I honestly wish more Free Software would come to Steam for little support money. I like the universal simple account to pay through Steam with Steam cards and don’t need another account or bank transfer for each project. It’s a small one time fee.


  • If you have the rights to publish the software, then you can do that. Why would it be illegal or not ethical? If you have the rights to, then you can even publish your software with different license on both “platforms”, if you want to.

    Do you want publish your own software or do you think of taking an existing Open Source software and sell it on PlayStore? It would be good to know what your goal is. Or is this a question of curiosity?


  • AI is fed by human input. If humans start and use AI more and more, and less human generated content, then soon AI will be fed by AI content. With each step of the feeding stage will amplify hallucinations and problems. Which will not help in the slightest with fake news and information, as fact checking could potentially be a source of fakes too. Only corporations have the money and resources to create the biggest LLMs, which means they will be the entities controlling everything.

    We don’t know if AI will grow exponentially forever. There are lot of downsides and its likely that countries in the world will ban AI. AI is already transformative technology, as we have seen. Partly because the world was not ready for how fast they improved and because no legislation exist. The question is, if AI is a bubble for short time and how long it will last. Maybe the next big AI improvements are done with Quantum Computers in a few decades from now. Who knows.







  • Most common Linux distributions focused on stability do not randomly break with updates. That’s usually not an issue. Basic things like Desktop and audio or lock screen are also never broken after an update. But it depends on the Linux operating system you are using (there are thousands of Linux operating systems and they can vastly differ) and what hardware and habits you have. Windows biggest strength is that it gets the most support from developers and being basically only one distribution to target.

    But calling Windows “battle tested code” is a bit of stretch. Windows is full of problems and I had my own issues due to updates of Windows (when I was using it in dual boot). Also in Linux I can update and do not boot until I want to boot. I can decide not to update. Overall I have more trust in Linux updates (even using on Archlinux) than Windows updates. Microsoft constantly fucks up updates. And they even introduce and install stuff you don’t know or want to.

    An old story of mine buying Civilization 6 at launch on Windows was unplayable. After days and contacting support, turned out it was a Skype installer that was installed with a Windows update without my knowledge. And it was just an installer to install Skype, not even running. Removing it made my game Civilization 6 playable. I never had such an issue on Linux.


  • The problem is, that no operating system “just works”. It also highly depend on what the person wants to achieve, and if there are any pre experience with computers or even relying on existing software or specific hardware. My recommendation is not to tell people the illusion of “just works” and be honest upfront. People should learn how it works, what to expect and if tradeoffs, time and resources are worth it.

    Same is true for the other way too. Does Windows “just works”? Especially if someone switches from Linux to Windows.

    Rather, we should teach the reasons to switch and encourage that decision. In example why it matters to have control over your system, rather than the company has control over it (MacOS and Windows) or why spying on you is bad (Windows). And encourage giving up something you are used to (and maybe paid). Sometimes its okay to use a program that is not as good as Photoshop. Sometimes its okay to give up playing a videogame you like (and maybe associated with friends playing that game with you). But most people are not ready to do it, because that is associated with lowering quality of life.

    I switched in 2008 from Windows XP to Ubuntu. I know these struggles. And they are not over yet. This is an ongoing task between my brother and me too, and he was using the Steam Deck, but decided to go with Windows 11 with the recent build. It was almost there, but there is always a butt. I say, don’t tell people that “Linux just works”. No operating system “just works”.


  • I’m a bit confused. Your terminal is not Fish. Fish is a shell like Bash, which interprets the commands. Terminal is the window application. Based on the linked image, I assume you have Kitty as your terminal? And you want to open a terminal within your editor using shortcut Ctrl-e?

    If so, then I don’t know about this. I thought you want to run a terminal with micro as the editor from outside of micro, not after you started micro. I might have completely missed your point here then.


  • What is the command executing when you press this shortcut? Usually you need to use an option with the terminal to execute a command. Most terminals use the option -e COMMAND , but it can be different for a few terminal apps. In example my terminal is “Konsole” and to open a new terminal with “Vim”, I need to use this command: konsole -e nvim . Or when I want to use arguments for vim itself, I can do it like this konsole -e "vim -R $HOME/Downloads/test.txt" as an example.

    So find out how to do this with your terminal and use that as a command for your ctrl-e shortcut.