• 0 Posts
  • 28 Comments
Joined 1 year ago
cake
Cake day: June 4th, 2023

help-circle


  • golden_zealot@lemmy.mltoLinux@lemmy.mlArdour 8.10 released
    link
    fedilink
    English
    arrow-up
    2
    ·
    29 days ago

    Do you have any recommendations for anyone looking to switch from windows DAW to a Linux DAW? Are there any tips regarding getting the plugins to play nicely?

    I would love to switch to Linux on my desktop, but the only thing holding me back is that I use FL Studio with the Arturia V collection and I feel as though it would be nightmarish to try to get such a thing working in Linux.


  • If you want to get into doing it, I found searching through a lot of note taking applications until I found something I really liked helped me remember to go do it regularly.

    For FOSS stuff a lot of people like Joplin, and I could certainly recommend it. Personally though, I really like Obsidian for its backlinking and graph view features, but it’s not open source.

    Furthermore, just carrying around a notebook and a pen everywhere you go as a habit helps a lot. I got into the habit of doing this by maintaining a personal journal for some time. For writing effective notation on paper which can easily be digitized, I would recommend looking into “bullet journaling” methods, and again, finding a notebook and pen that you really quite like, helps a lot to make the experience enjoyable and develop it as a skill.


  • I learned this lesson pretty quick when working in IT.

    It’s not always feasible to document everything as it happens, but I definitely learned to do so if I had the time and means to while I was doing the thing.

    Just started at a new company with 0 documentation, they’re super psyched that I’ve actually been writing down all their processes/procedures/configurations etc. as they explain them to me/as I work with them.



  • Linux is as good as Linux is, just as Windows is as good as Windows is and MacOS is as good as it is.

    All operating systems have their place, purpose, and use cases, so the question is subjective. Different OS’s are good or bad for different people, and different scenario’s which is why they all have a part of the market share.

    MacOS has ease of use and excellent intercompatibility with other Apple products, and Windows has boatloads of compatible software and compatibility with Microsoft’s Active Directory domains in businesses.

    What Linux has is cost effectiveness and true ownership and control.

    At the moment most people prefer ease of use for home computing, but on a long enough timeline Linux will obtain this as well, just look at what Valve did with SteamOS and the steam deck when it comes to that. Making it easy to use there is, I suspect, one of the major reasons the steam deck as a device is so well reviewed, and partly why we have seen such an increase in market share recently I suspect.

    So right now, most people probably prefer another OS because of ease of use, but at some point in the future, Linux will probably be holding all the cards. It just seems that those who develop the distributions are often tied up with other goals apart from ease of use for the common user in the contemporary, but eventually they will begin to tackle this goal as well.



  • golden_zealot@lemmy.mltoLinux@lemmy.mlSo I installed Arch Linux... Is this it?
    link
    fedilink
    English
    arrow-up
    20
    arrow-down
    1
    ·
    edit-2
    3 months ago

    People like Arch because to many it feels more truly like your system than other distributions.

    It isn’t that Arch is in some way more customizable than other distros, rather it’s that if there is a package on your Arch system, its probably there because it was your choice to put it there in the first place, and so the system can feel more representative of you given it only contains the things you want or need and nothing more from the get go.










  • You might also be interested in cron/crontab. You can schedule scripts/software to run at specific times of day, week, month, year etc.

    Also if you want to learn more about the linux command line, three super useful commands for you are ‘man’, ‘help’ and ‘apropos’.

    man followed by a command, like ‘man find’ will show you the manual pages for the command ‘find’, showing you how to use it.

    In some cases man wont work for some commands, in those cases try ‘help theCommandThatDidntWorkWithMan’.

    apropos followed by a query like ‘apropos network’ will show you any commands that have ‘network’ in their short description to help you find commands that you might want to use for something.