Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Cyborg)
  • No Skin
Collapse
Brand Logo

CIRCLE WITH A DOT

  1. Home
  2. Uncategorized
  3. I have started collecting scripts, templates and more for my Akai Force Script ambition, but wow it’s hard to get really started, when you haven’t programmed in over 20 years (only did it in my teen years).

I have started collecting scripts, templates and more for my Akai Force Script ambition, but wow it’s hard to get really started, when you haven’t programmed in over 20 years (only did it in my teen years).

Scheduled Pinned Locked Moved Uncategorized
javalinuxbitwig
7 Posts 6 Posters 1 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • mosgaard@uddannelse.socialM This user is from outside of this forum
    mosgaard@uddannelse.socialM This user is from outside of this forum
    mosgaard@uddannelse.social
    wrote last edited by
    #1

    I have started collecting scripts, templates and more for my Akai Force Script ambition, but wow it’s hard to get really started, when you haven’t programmed in over 20 years (only did it in my teen years).

    So please give me a bump: I need some kind of IDE/Software for programming, what should I download first?

    I will be using the Bitwig API and use Java as some has suggested, since it seems the way with most examples I can learn to understand. Are we using openjdk?

    #Java #Linux #Bitwig

    bjoreman@toot.cafeB starlily@mastodon.socialS michael@westergaard.socialM ghost_letters@fosstodon.orgG tahomasoft@puget.socialT 5 Replies Last reply
    0
    • mosgaard@uddannelse.socialM mosgaard@uddannelse.social

      I have started collecting scripts, templates and more for my Akai Force Script ambition, but wow it’s hard to get really started, when you haven’t programmed in over 20 years (only did it in my teen years).

      So please give me a bump: I need some kind of IDE/Software for programming, what should I download first?

      I will be using the Bitwig API and use Java as some has suggested, since it seems the way with most examples I can learn to understand. Are we using openjdk?

      #Java #Linux #Bitwig

      bjoreman@toot.cafeB This user is from outside of this forum
      bjoreman@toot.cafeB This user is from outside of this forum
      bjoreman@toot.cafe
      wrote last edited by
      #2

      @mosgaard OpenJDK sounds good. And I guess most people default to VS Code these days, or IntelliJ perhaps. Eclipse still exists too!

      1 Reply Last reply
      0
      • mosgaard@uddannelse.socialM mosgaard@uddannelse.social

        I have started collecting scripts, templates and more for my Akai Force Script ambition, but wow it’s hard to get really started, when you haven’t programmed in over 20 years (only did it in my teen years).

        So please give me a bump: I need some kind of IDE/Software for programming, what should I download first?

        I will be using the Bitwig API and use Java as some has suggested, since it seems the way with most examples I can learn to understand. Are we using openjdk?

        #Java #Linux #Bitwig

        starlily@mastodon.socialS This user is from outside of this forum
        starlily@mastodon.socialS This user is from outside of this forum
        starlily@mastodon.social
        wrote last edited by
        #3

        @mosgaard Its not really an IDE, but I use Sublime Text a lot.
        You will probably want Postman to test your API calls.

        1 Reply Last reply
        0
        • mosgaard@uddannelse.socialM mosgaard@uddannelse.social

          I have started collecting scripts, templates and more for my Akai Force Script ambition, but wow it’s hard to get really started, when you haven’t programmed in over 20 years (only did it in my teen years).

          So please give me a bump: I need some kind of IDE/Software for programming, what should I download first?

          I will be using the Bitwig API and use Java as some has suggested, since it seems the way with most examples I can learn to understand. Are we using openjdk?

          #Java #Linux #Bitwig

          michael@westergaard.socialM This user is from outside of this forum
          michael@westergaard.socialM This user is from outside of this forum
          michael@westergaard.social
          wrote last edited by
          #4
          For Java, I use Eclipse. It's open source and free, but a bit wonky and old-fashioned. You can install plugins for basically anything. Many prefer IntelliJ, which is closed source but has a free tier. It's generally more polished than Eclipse. Some also prefer Visual Studio Code; that's especially good for frontend stuff (typescript etc). All work on "all" platforms and can install language support for most languages.

          As for JDK, that has fragmented. Oracle provides their own version (for pay) and OpenJDK; neither is widely adopted anymore. From OpenJDK, there are many distros. I use Eclipse Temurin commercially, but they are likely all fine (unless you have weird needs like special architectures or old versions). Get any from adoptium.net/marketplace or just install from your distro, it's fine.
          mosgaard@uddannelse.socialM 1 Reply Last reply
          0
          • mosgaard@uddannelse.socialM mosgaard@uddannelse.social

            I have started collecting scripts, templates and more for my Akai Force Script ambition, but wow it’s hard to get really started, when you haven’t programmed in over 20 years (only did it in my teen years).

            So please give me a bump: I need some kind of IDE/Software for programming, what should I download first?

            I will be using the Bitwig API and use Java as some has suggested, since it seems the way with most examples I can learn to understand. Are we using openjdk?

            #Java #Linux #Bitwig

            ghost_letters@fosstodon.orgG This user is from outside of this forum
            ghost_letters@fosstodon.orgG This user is from outside of this forum
            ghost_letters@fosstodon.org
            wrote last edited by
            #5

            @mosgaard

            IntelliJ comes with all the bells and whistles you need. And provides ways to download a bunch of extras if you want.

            I see it like this: if their Java Tooling breaks permanently, Jetbrains might go out of business. For Microsoft you will not see any difference in the stock value.

            1 Reply Last reply
            0
            • michael@westergaard.socialM michael@westergaard.social
              For Java, I use Eclipse. It's open source and free, but a bit wonky and old-fashioned. You can install plugins for basically anything. Many prefer IntelliJ, which is closed source but has a free tier. It's generally more polished than Eclipse. Some also prefer Visual Studio Code; that's especially good for frontend stuff (typescript etc). All work on "all" platforms and can install language support for most languages.

              As for JDK, that has fragmented. Oracle provides their own version (for pay) and OpenJDK; neither is widely adopted anymore. From OpenJDK, there are many distros. I use Eclipse Temurin commercially, but they are likely all fine (unless you have weird needs like special architectures or old versions). Get any from adoptium.net/marketplace or just install from your distro, it's fine.
              mosgaard@uddannelse.socialM This user is from outside of this forum
              mosgaard@uddannelse.socialM This user is from outside of this forum
              mosgaard@uddannelse.social
              wrote last edited by
              #6

              @michael thanks! I see maven mentioned from various projects, is that something I need?

              1 Reply Last reply
              0
              • mosgaard@uddannelse.socialM mosgaard@uddannelse.social

                I have started collecting scripts, templates and more for my Akai Force Script ambition, but wow it’s hard to get really started, when you haven’t programmed in over 20 years (only did it in my teen years).

                So please give me a bump: I need some kind of IDE/Software for programming, what should I download first?

                I will be using the Bitwig API and use Java as some has suggested, since it seems the way with most examples I can learn to understand. Are we using openjdk?

                #Java #Linux #Bitwig

                tahomasoft@puget.socialT This user is from outside of this forum
                tahomasoft@puget.socialT This user is from outside of this forum
                tahomasoft@puget.social
                wrote last edited by
                #7

                @mosgaard

                I generally eschew IDE use in favor of using Emacs. But vscode is sometimes helpful, as is the Phoenix Code editor. Both run on Linux; as expected from MicroSlop, vscode is pretty bloated.

                1 Reply Last reply
                2
                0
                • R relay@relay.infosec.exchange shared this topic
                  System shared this topic
                Reply
                • Reply as topic
                Log in to reply
                • Oldest to Newest
                • Newest to Oldest
                • Most Votes


                • Login

                • Login or register to search.
                • First post
                  Last post
                0
                • Categories
                • Recent
                • Tags
                • Popular
                • World
                • Users
                • Groups