Dipping Toes Into Programming
-
@dafyre said in Dipping Toes Into Programming:
I actually prefer PHP. I've tried some dot net, Java, and even some node.js (I haven't completely ruled this one out yet as I'm still learning what I like / not like about it).
PHP is quite good, I like it a lot.
-
I really like Ruby, though.
-
@tim_g said in Dipping Toes Into Programming:
But the differences are so small. I took a quick look at Python last night to compare it to PHP, and it was SO MUCH EASIER after I had done the same stuff with PHP.
Lots of programming is very cumulative that way. You should also be able to apply what you're learning back to powershell
-
@scottalanmiller said in Dipping Toes Into Programming:
I really like Ruby, though.
I had to write a quick little code snippet in Ruby once, was not as intuitive |for| me as I expected.
Part of the problem is that I didn't believe the syntax my google searches were showing me.
-
@flaxking said in Dipping Toes Into Programming:
@scottalanmiller said in Dipping Toes Into Programming:
I really like Ruby, though.
I had to write a quick little code snippet in Ruby once, was not as intuitive for=>me as I expected.
I think you mean the above...
-
@scottalanmiller said in Dipping Toes Into Programming:
I really like Ruby, though.
I've not done much with that one. I tried a few things, but never really took off with it.
-
I actually find it faster to build the interface in straight HTML, CSS, & Javascript and then let PHP or whatever handle the data transports and such.
-
I've been digging through WordPress a little bit in the evenings to see how it's really set up, starting with index.php and following it.
It's freakin huge with so many moving parts and gears, I can see why there's so many devs lol.
But it's very interesting to see how it works at that level, and helps to learn a little too.
-
@tim_g said in Dipping Toes Into Programming:
I've been digging through WordPress a little bit in the evenings to see how it's really set up, starting with index.php and following it.
It's freakin huge with so many moving parts and gears, I can see why there's so many devs lol.
But it's very interesting to see how it works at that level, and helps to learn a little too.
That will actually help if you ever find yourself having to clean up a hacked Wordpress site.
-
I came across this link:
Usage of server-side programming languages for websites
https://w3techs.com/technologies/overview/programming_language/all -
PHP definitely rules the roost by number of deployments. Just keep it in perspective that that is mostly WordPress, Drupal, Joomla and similar, simple frameworks that are widely deployed. And lots of free apps like vTiger, SugarCRM, SuiteCRM, you name it were always PHP apps. And most web hosts only offer PHP. So PHP does insane numbers of simple "personal websites". That's its name, Personal Home Page.
Then things like Erlang or Java might have small numbers of deployments, but they tend to be things like big financial transaction systems or whatever. Things that aren't deployed very often, but are really significant on a "per deployment" model.
-
That .5% Ruby is not insignificant and shows the growing popularity of Ruby on Rails.
Python is a great language to learn because there are so many different areas it is used. But Ruby on Rails is much more common for building kickass web apps. Ruby is also used for many things (Chef and Puppet if we're thinking about CMs) but I think Python is still better for variety.
-
@flaxking I agree, when making web apps, RoR is way ahead of Python and its framework options.
-
@scottalanmiller said in Dipping Toes Into Programming:
PHP definitely rules the roost by number of deployments. Just keep it in perspective that that is mostly WordPress, Drupal, Joomla and similar, simple frameworks that are widely deployed. And lots of free apps like vTiger, SugarCRM, SuiteCRM, you name it were always PHP apps. And most web hosts only offer PHP. So PHP does insane numbers of simple "personal websites". That's its name, Personal Home Page.
Then things like Erlang or Java might have small numbers of deployments, but they tend to be things like big financial transaction systems or whatever. Things that aren't deployed very often, but are really significant on a "per deployment" model.
Ya charts like that always mislead. Like the static files section. The site may be static files, but it's ignoring all of the platforms used to build them (like Hugo). Builtwith probably has the best metrics I've found. https://trends.builtwith.com/ This is their weekly trends section, but you can search by pretty much anything.
-
@stacksofplates said in Dipping Toes Into Programming:
@scottalanmiller said in Dipping Toes Into Programming:
PHP definitely rules the roost by number of deployments. Just keep it in perspective that that is mostly WordPress, Drupal, Joomla and similar, simple frameworks that are widely deployed. And lots of free apps like vTiger, SugarCRM, SuiteCRM, you name it were always PHP apps. And most web hosts only offer PHP. So PHP does insane numbers of simple "personal websites". That's its name, Personal Home Page.
Then things like Erlang or Java might have small numbers of deployments, but they tend to be things like big financial transaction systems or whatever. Things that aren't deployed very often, but are really significant on a "per deployment" model.
Ya charts like that always mislead. Like the static files section. The site may be static files, but it's ignoring all of the platforms used to build them (like Hugo). Builtwith probably has the best metrics I've found. https://trends.builtwith.com/ This is their weekly trends section, but you can search by pretty much anything.
And even static sites can be dynamically generated.
-
@scottalanmiller said in Dipping Toes Into Programming:
@stacksofplates said in Dipping Toes Into Programming:
@scottalanmiller said in Dipping Toes Into Programming:
PHP definitely rules the roost by number of deployments. Just keep it in perspective that that is mostly WordPress, Drupal, Joomla and similar, simple frameworks that are widely deployed. And lots of free apps like vTiger, SugarCRM, SuiteCRM, you name it were always PHP apps. And most web hosts only offer PHP. So PHP does insane numbers of simple "personal websites". That's its name, Personal Home Page.
Then things like Erlang or Java might have small numbers of deployments, but they tend to be things like big financial transaction systems or whatever. Things that aren't deployed very often, but are really significant on a "per deployment" model.
Ya charts like that always mislead. Like the static files section. The site may be static files, but it's ignoring all of the platforms used to build them (like Hugo). Builtwith probably has the best metrics I've found. https://trends.builtwith.com/ This is their weekly trends section, but you can search by pretty much anything.
And even static sites can be dynamically generated.
Ya that's what I was referring to. Hugo (written in Go) does that along with many others (like Jekyll).
-
@scottalanmiller said in Dipping Toes Into Programming:
Then things like Erlang or Java might have small numbers of deployments, but they tend to be things like big financial transaction systems or whatever. Things that aren't deployed very often, but are really significant on a "per deployment" model.
Yeah, I don't ever plan on doing anything with those in regards to programming.
I'm going to stick to what I can see myself using or what will be the most useful to me.
It's a short list:
- PHP
- This will teach me how to program, the concepts, etc... Basically, my gateway language.
- will also be useful on the side for personal use, and some professional use
- Python
- This is the big one that will be the most useful professionally, to my career, plus some personal use.
- JavaScript
- This goes hand in hand with the web development side of things.
Basically, Python is the main one I want to learn, but I am starting with PHP because it's much easier than Python to use as a gateway programming language. I can get further faster with learning how to program with PHP than with Python. But I also want to learn PHP anyways, which will immediately be useful for a bunch of things personally and professionally... so I see it as a win anyways, followed by Python. Then JavaScript, because that can do great things in the browser as well as on the server. It works well with the others and shouldn't be passed by in this day and age.
Although others in those lists like Go and RoR (others too, just picking on those) are probably "better" languages in some important areas, I just won't really use them with anything I have... so I don't see a point. Nothing I currently have uses those, and nothing I plan on doing uses those either. If I could find uses for them, I'd just rather use Python anyways.
- PHP
-
BTW, Is it true it was named after Monty Python?
-
@tim_g said in Dipping Toes Into Programming:
BTW, Is it true it was named after Monty Python?
It is, indeed, true.
-
@tim_g said in Dipping Toes Into Programming:
@scottalanmiller said in Dipping Toes Into Programming:
Then things like Erlang or Java might have small numbers of deployments, but they tend to be things like big financial transaction systems or whatever. Things that aren't deployed very often, but are really significant on a "per deployment" model.
Yeah, I don't ever plan on doing anything with those in regards to programming.
I'm going to stick to what I can see myself using or what will be the most useful to me.
It's a short list:
- PHP
- This will teach me how to program, the concepts, etc... Basically, my gateway language.
- will also be useful on the side for personal use, and some professional use
- Python
- This is the big one that will be the most useful professionally, to my career, plus some personal use.
- JavaScript
- This goes hand in hand with the web development side of things.
Basically, Python is the main one I want to learn, but I am starting with PHP because it's much easier than Python to use as a gateway programming language. I can get further faster with learning how to program with PHP than with Python. But I also want to learn PHP anyways, which will immediately be useful for a bunch of things personally and professionally... so I see it as a win anyways, followed by Python. Then JavaScript, because that can do great things in the browser as well as on the server. It works well with the others and shouldn't be passed by in this day and age.
Although others in those lists like Go and RoR (others too, just picking on those) are probably "better" languages in some important areas, I just won't really use them with anything I have... so I don't see a point. Nothing I currently have uses those, and nothing I plan on doing uses those either. If I could find uses for them, I'd just rather use Python anyways.
Just in case it’s not clear.... RoR is actually Ruby as the language and Rails as the framework (like Django). They are so often used together that it’s often thought that they are one thing.
- PHP