ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Dipping Toes Into Programming

    Developer Discussion
    16
    142
    18.7k
    Loading More Posts
    • 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.
    • scottalanmillerS
      scottalanmiller @Obsolesce
      last edited by

      @tim_g said in Dipping Toes Into Programming:

      I started with Python last night for about 45 minutes..

      I feel like I'd rather learn JS first, but it seems learning both is best. So starting with Python then Django, then JavaScript. They all go together, but Python seems to have more overall uses in IT.

      Yes, JS really has no applicability to IT tasks.

      1 Reply Last reply Reply Quote 0
      • F
        flaxking @Obsolesce
        last edited by

        @tim_g said in Dipping Toes Into Programming:

        I started with Python last night for about 45 minutes..

        I feel like I'd rather learn JS first, but it seems learning both is best. So starting with Python then Django, then JavaScript. They all go together, but Python seems to have more overall uses in IT.

        Yes, there are so many Python modules out there that you could probably almost replace Powershell with it.

        scottalanmillerS 1 Reply Last reply Reply Quote 0
        • matteo nunziatiM
          matteo nunziati
          last edited by

          @Tim_G imho the best way to learn python is try to rewrite some of your PS scripts with it.

          Also if you plan webapps Django is ok. For REST API flask is a better option imho.
          My last application in python was done with flask appbuilder. A sort of small django.

          Visual studio code is your best bet for interpreted languages.

          I see you have made your choice. Btw I strongly recommend python over js for a newbie too. because the non blocking concurrent logic of js tends to blow your brain in the beginning.

          scottalanmillerS ObsolesceO 3 Replies Last reply Reply Quote 0
          • scottalanmillerS
            scottalanmiller @flaxking
            last edited by

            @flaxking said in Dipping Toes Into Programming:

            @tim_g said in Dipping Toes Into Programming:

            I started with Python last night for about 45 minutes..

            I feel like I'd rather learn JS first, but it seems learning both is best. So starting with Python then Django, then JavaScript. They all go together, but Python seems to have more overall uses in IT.

            Yes, there are so many Python modules out there that you could probably almost replace Powershell with it.

            Completely replace it, definitely. Python is the most universal automation language for systems administration. You can run Python on .NET, on Java, on the OS directly (with the standard interpreter), it predates PowerShell as the hard core scripting language for Windows automation. It's great because it works on Linux, Solaris, BSD, MacOS, etc. as well.

            SaltStack is written in Python and does essentially anything you can imagine.

            ObsolesceO 2 Replies Last reply Reply Quote 1
            • scottalanmillerS
              scottalanmiller @matteo nunziati
              last edited by

              @matteo-nunziati said in Dipping Toes Into Programming:

              Visual studio code is your best bet for interpreted languages.

              I agree. My top three picks for Python would be...

              1. Visual Studio Code
              2. Atom
              3. PyCharm
              1 Reply Last reply Reply Quote 1
              • ObsolesceO
                Obsolesce @matteo nunziati
                last edited by

                @matteo-nunziati said in Dipping Toes Into Programming:

                @Tim_G imho the best way to learn python is try to rewrite some of your PS scripts with it.

                Also if you plan webapps Django is ok. For REST API flask is a better option imho.
                My last application in python was done with flask appbuilder. A sort of small django.

                Visual studio code is your best bet for interpreted languages.

                I see you have made your choice. Btw I strongly recommend python over js for a newbie too. because the non blocking concurrent logic of js tends to blow your brain in the beginning.

                Cool, I'll keep Flask in mind when I get to that point.

                1 Reply Last reply Reply Quote 0
                • ObsolesceO
                  Obsolesce @matteo nunziati
                  last edited by

                  @matteo-nunziati said in Dipping Toes Into Programming:

                  isual studio code is your best bet for interpreted languages.

                  Yes I agree, but to start learning, I'm using Thonny. I like how it debugs through code and how you can step through it as well as it's visual help. I compared the same thing to VSC, and seems like Thonny is better for gettign started.

                  matteo nunziatiM 1 Reply Last reply Reply Quote 1
                  • matteo nunziatiM
                    matteo nunziati @Obsolesce
                    last edited by

                    @tim_g said in Dipping Toes Into Programming:

                    @matteo-nunziati said in Dipping Toes Into Programming:

                    isual studio code is your best bet for interpreted languages.

                    Yes I agree, but to start learning, I'm using Thonny. I like how it debugs through code and how you can step through it as well as it's visual help. I compared the same thing to VSC, and seems like Thonny is better for gettign started.

                    Yes. As a learning tool thonny is a better start. That's thonny goal in the end!

                    1 Reply Last reply Reply Quote 0
                    • ObsolesceO
                      Obsolesce @scottalanmiller
                      last edited by

                      @scottalanmiller said in Dipping Toes Into Programming:

                      @flaxking said in Dipping Toes Into Programming:

                      @tim_g said in Dipping Toes Into Programming:

                      I started with Python last night for about 45 minutes..

                      I feel like I'd rather learn JS first, but it seems learning both is best. So starting with Python then Django, then JavaScript. They all go together, but Python seems to have more overall uses in IT.

                      Yes, there are so many Python modules out there that you could probably almost replace Powershell with it.

                      Completely replace it, definitely. Python is the most universal automation language for systems administration. You can run Python on .NET, on Java, on the OS directly (with the standard interpreter), it predates PowerShell as the hard core scripting language for Windows automation. It's great because it works on Linux, Solaris, BSD, MacOS, etc. as well.

                      SaltStack is written in Python and does essentially anything you can imagine.

                      All reasons that persuaded me to start with Python instead of JS... though I do want to learn JS in the end due to it's awesome web usefulness stuff and web browser integration.

                      1 Reply Last reply Reply Quote 1
                      • ObsolesceO
                        Obsolesce @scottalanmiller
                        last edited by

                        @scottalanmiller said in Dipping Toes Into Programming:

                        @flaxking said in Dipping Toes Into Programming:

                        @tim_g said in Dipping Toes Into Programming:

                        I started with Python last night for about 45 minutes..

                        I feel like I'd rather learn JS first, but it seems learning both is best. So starting with Python then Django, then JavaScript. They all go together, but Python seems to have more overall uses in IT.

                        Yes, there are so many Python modules out there that you could probably almost replace Powershell with it.

                        Completely replace it, definitely. Python is the most universal automation language for systems administration. You can run Python on .NET, on Java, on the OS directly (with the standard interpreter), it predates PowerShell as the hard core scripting language for Windows automation. It's great because it works on Linux, Solaris, BSD, MacOS, etc. as well.

                        SaltStack is written in Python and does essentially anything you can imagine.

                        One thing that caught my attention is how well Python works with the major databases. That will be a big help later.

                        matteo nunziatiM scottalanmillerS 2 Replies Last reply Reply Quote 0
                        • matteo nunziatiM
                          matteo nunziati @Obsolesce
                          last edited by

                          @tim_g said in Dipping Toes Into Programming:

                          @scottalanmiller said in Dipping Toes Into Programming:

                          @flaxking said in Dipping Toes Into Programming:

                          @tim_g said in Dipping Toes Into Programming:

                          I started with Python last night for about 45 minutes..

                          I feel like I'd rather learn JS first, but it seems learning both is best. So starting with Python then Django, then JavaScript. They all go together, but Python seems to have more overall uses in IT.

                          Yes, there are so many Python modules out there that you could probably almost replace Powershell with it.

                          Completely replace it, definitely. Python is the most universal automation language for systems administration. You can run Python on .NET, on Java, on the OS directly (with the standard interpreter), it predates PowerShell as the hard core scripting language for Windows automation. It's great because it works on Linux, Solaris, BSD, MacOS, etc. as well.

                          SaltStack is written in Python and does essentially anything you can imagine.

                          One thing that caught my attention is how well Python works with the major databases. That will be a big help later.

                          Definitively the most complete language imho. Js is all nosql. I'm currently looking at asp.net core 2.0 and there are less "production ready" solutions even here.
                          Python has libs for almost any kind of db. And even a really powerful (but complex) orm!

                          scottalanmillerS 1 Reply Last reply Reply Quote 0
                          • scottalanmillerS
                            scottalanmiller @Obsolesce
                            last edited by

                            @tim_g said in Dipping Toes Into Programming:

                            @scottalanmiller said in Dipping Toes Into Programming:

                            @flaxking said in Dipping Toes Into Programming:

                            @tim_g said in Dipping Toes Into Programming:

                            I started with Python last night for about 45 minutes..

                            I feel like I'd rather learn JS first, but it seems learning both is best. So starting with Python then Django, then JavaScript. They all go together, but Python seems to have more overall uses in IT.

                            Yes, there are so many Python modules out there that you could probably almost replace Powershell with it.

                            Completely replace it, definitely. Python is the most universal automation language for systems administration. You can run Python on .NET, on Java, on the OS directly (with the standard interpreter), it predates PowerShell as the hard core scripting language for Windows automation. It's great because it works on Linux, Solaris, BSD, MacOS, etc. as well.

                            SaltStack is written in Python and does essentially anything you can imagine.

                            One thing that caught my attention is how well Python works with the major databases. That will be a big help later.

                            They all really do that. Database integration isn't lacking from any major language.

                            1 Reply Last reply Reply Quote 0
                            • scottalanmillerS
                              scottalanmiller @matteo nunziati
                              last edited by

                              @matteo-nunziati said in Dipping Toes Into Programming:

                              Definitively the most complete language imho. Js is all nosql.

                              JS has no particular affinity for NoSQL any more than for relational databases. There is a trend in the NodeJS community to lean towards NoSQL, and there is a trend in language like Python and Ruby to lean towards relational - but it has nothing to do with the language or capabilities, but only the kinds of projects people are popularly making with those languages. And often it's nothing more than one or two famous frameworks creating the impression.

                              matteo nunziatiM 1 Reply Last reply Reply Quote 0
                              • stacksofplatesS
                                stacksofplates
                                last edited by

                                I’ve been doing a lot with Go lately and I think I’m going to start using that for most things I do. It’s probably the most cross platform available language. I’m not a dev in any way but it’s pretty easy to pick up. Web stuff is really easy with it as well.

                                stacksofplatesS ObsolesceO 2 Replies Last reply Reply Quote 1
                                • matteo nunziatiM
                                  matteo nunziati @scottalanmiller
                                  last edited by

                                  @scottalanmiller said in Dipping Toes Into Programming:

                                  @matteo-nunziati said in Dipping Toes Into Programming:

                                  Definitively the most complete language imho. Js is all nosql.

                                  JS has no particular affinity for NoSQL any more than for relational databases. There is a trend in the NodeJS community to lean towards NoSQL, and there is a trend in language like Python and Ruby to lean towards relational - but it has nothing to do with the language or capabilities, but only the kinds of projects people are popularly making with those languages. And often it's nothing more than one or two famous frameworks creating the impression.

                                  Yes this is not a language/implementation feature but most of a community trend.

                                  What I mean is: Try postrgres in python: there is plenty of options. From python default db lib up to sqlalchemy.
                                  Most of what I sorted out in node/js was plain sql queries embedded in strings into calling functions.

                                  1 Reply Last reply Reply Quote 0
                                  • stacksofplatesS
                                    stacksofplates @stacksofplates
                                    last edited by

                                    @stacksofplates said in Dipping Toes Into Programming:

                                    I’ve been doing a lot with Go lately and I think I’m going to start using that for most things I do. It’s probably the most cross platform available language. I’m not a dev in any way but it’s pretty easy to pick up. Web stuff is really easy with it as well.

                                    I’ll clarify. Not most cross platform but easiest.

                                    1 Reply Last reply Reply Quote 0
                                    • ObsolesceO
                                      Obsolesce @stacksofplates
                                      last edited by

                                      @stacksofplates said in Dipping Toes Into Programming:

                                      I’ve been doing a lot with Go lately and I think I’m going to start using that for most things I do. It’s probably the most cross platform available language. I’m not a dev in any way but it’s pretty easy to pick up. Web stuff is really easy with it as well.

                                      Go looks interesting too!

                                      1 Reply Last reply Reply Quote 0
                                      • scottalanmillerS
                                        scottalanmiller
                                        last edited by

                                        This video might be useful for you, too.

                                        https://mangolassi.it/topic/14309/standard-patterns-for-smb-bespoke-software-development/

                                        ObsolesceO 1 Reply Last reply Reply Quote 0
                                        • ObsolesceO
                                          Obsolesce @scottalanmiller
                                          last edited by

                                          @scottalanmiller said in Dipping Toes Into Programming:

                                          This video might be useful for you, too.

                                          https://mangolassi.it/topic/14309/standard-patterns-for-smb-bespoke-software-development/

                                          You make some really good points in that video. Maybe I have been over thinking this and really, for what I would like to do, PHP would work. So now, why not PHP instead of python?

                                          scottalanmillerS 1 Reply Last reply Reply Quote 1
                                          • scottalanmillerS
                                            scottalanmiller @Obsolesce
                                            last edited by

                                            @tim_g said in Dipping Toes Into Programming:

                                            @scottalanmiller said in Dipping Toes Into Programming:

                                            This video might be useful for you, too.

                                            https://mangolassi.it/topic/14309/standard-patterns-for-smb-bespoke-software-development/

                                            You make some really good points in that video. Maybe I have been over thinking this and really, for what I would like to do, PHP would work. So now, why not PHP instead of python?

                                            Python’s strong suit is easy readability for teams and system automation. PHP’s strong suit is simple, traditional web applications.

                                            Most big web apps that you know like WordPress and NextCloud are PHP. PHP is super easy to deploy tontraditional web hosts as well but Python is not.

                                            ObsolesceO 1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 6
                                            • 7
                                            • 8
                                            • 4 / 8
                                            • First post
                                              Last post