Dipping Toes Into Programming
-
@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.
-
@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.
-
@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!
-
@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.
-
@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.
-
@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! -
@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.
-
@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.
-
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.
-
@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. -
@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.
-
@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!
-
This video might be useful for you, too.
https://mangolassi.it/topic/14309/standard-patterns-for-smb-bespoke-software-development/
-
@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?
-
@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.
-
@scottalanmiller said in Dipping Toes Into Programming:
@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.
Yeah I may do PHP instead. It does hit all the things I need, plus it will help with existing things I use like WP and such. You can even talk to salt API I think. At least I seen a library or whatever for PHP that will interface with it.
-
SoloLearn is really great. I started this before but it's been a while.
-
@tim_g said in Dipping Toes Into Programming:
@scottalanmiller said in Dipping Toes Into Programming:
@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.
Yeah I may do PHP instead. It does hit all the things I need, plus it will help with existing things I use like WP and such. You can even talk to salt API I think. At least I seen a library or whatever for PHP that will interface with it.
API pretty much always means that you don't need any specific language. Of course, that's not completely universal, but essentially universal. You basically always assume that everything talks to everything in this day and age. Making an API that was language specific would be absurdly complicated and even the most common "language focused" API out there, which is a native "internal data exchange" in JavaScript, is so well supported that even though you are speaking in native JavaScript Objects it is used as a universal data interchange format... you know it as JSON.
When working with a product today, if you are interfacing by writing code that goes INSIDE the project (like you submit it to Github and hope the package maintainer accepts it) then you care what language you are in to do so. But if you are writing software to talk over the network to another piece of software, it's all universal because they have to share that network format.
-
@scottalanmiller said in Dipping Toes Into Programming:
@tim_g said in Dipping Toes Into Programming:
@scottalanmiller said in Dipping Toes Into Programming:
@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.
Yeah I may do PHP instead. It does hit all the things I need, plus it will help with existing things I use like WP and such. You can even talk to salt API I think. At least I seen a library or whatever for PHP that will interface with it.
API pretty much always means that you don't need any specific language. Of course, that's not completely universal, but essentially universal. You basically always assume that everything talks to everything in this day and age. Making an API that was language specific would be absurdly complicated and even the most common "language focused" API out there, which is a native "internal data exchange" in JavaScript, is so well supported that even though you are speaking in native JavaScript Objects it is used as a universal data interchange format... you know it as JSON.
When working with a product today, if you are interfacing by writing code that goes INSIDE the project (like you submit it to Github and hope the package maintainer accepts it) then you care what language you are in to do so. But if you are writing software to talk over the network to another piece of software, it's all universal because they have to share that network format.
I see, I didn't realize it was like that.
One of the things I searched for with all 3 of my considerations was that it "talked" to the Salt API, or at least REST API. They all do (PHP, JS, Python). So I guess then everything does.
-
I am liking PHP more than Python. PHP seems so much easier in every way so far... but I'm not very far with either.