Is Visual Basic .NET More Popular Than JavaScript? (zdnet.com)
100
Microsoft's Visual Basic .NET now ranks above JavaScript, PHP, SQL on TIOBE's index of programming language popularity, which ZDNet notes is "the highest it's ever been since [TIIOBE] started tracking the Microsoft language in 2001."
Tiobe analysts said it was "very surprising" that Visual Basic .Net is now the fifth most popular language, only behind C++, Python, C, and Java. It's even ahead of JavaScript, which currently lies in seventh place, down from sixth a year ago. C# meanwhile fell from fifth spot a year ago to sixth this month. The language index still reckons Visual Basic .Net will "sooner or later go into decline", but concedes it's popular for dedicated office applications in small and medium enterprises, and is probably still used by many developers because it's easy to learn.
TIOBE's methodology "basically...comes down to counting hits for the search query +"<language> programming," TIOBE explains on its web page -- though its results don't always agree with other analysts.
InfoWorld points out that on this month's PyPL Popularity of Programming Language index, which analyzes how often language tutorials are searched for on Google, VB.NET "doesn't even register Visual Basic.Net or Visual Basic among its Top 10 languages" -- and JavaScript comes in third, behind only Python and Java.
TIOBE's methodology "basically...comes down to counting hits for the search query +"<language> programming," TIOBE explains on its web page -- though its results don't always agree with other analysts.
InfoWorld points out that on this month's PyPL Popularity of Programming Language index, which analyzes how often language tutorials are searched for on Google, VB.NET "doesn't even register Visual Basic.Net or Visual Basic among its Top 10 languages" -- and JavaScript comes in third, behind only Python and Java.
Re:Also, popularity != quality. (Score:4, Funny)
This isn't even a good measure of popularity. Just because a language is widely used doesn't mean there are a lot of questions and discussions about it.
It is perhaps more accurate to say this is a measure of "Which language causes its users the most problems?" or even "Which language has the dumbest users?"
So it is no surprise that VB won.
Re: (Score:2)
Otherwise Justin Bieber would be the greatest musician that ever lived
He is. To some people that are not you. Probably younger. They prefer to listen to J.B. than to J.Bach. This is what makes art, some indefinable qualities added to the technicalities.
Education (Score:2)
Schools lean towards Scratch for teaching kids (Score:3)
I haven't heard of any elementary schools using BASIC for years.
Now the expectation is Scratch or a variation on products that use the block programming approach.
Re: (Score:2)
I haven't heard of any elementary schools using BASIC for years.
I heard they switched to C++.
Re: (Score:2)
Please give me a link to am elementary school that teachers C++ as a first programming language.
Re: (Score:2)
Visual BASIC is not a BASIC ... it only has the term in its name.
Re: (Score:1)
Well, Javascript is an awful language (Score:2)
Javascript or run-time environment that's awful? (Score:2)
Javascript, as a language is okay but I find its run-time environment to be the big issue - especially when you're (ironically) trying to do real time interactive programming (which I believe it was created for).
Re: (Score:2)
Re: (Score:2)
The same is true of Python and Ruby. Sure, you don't have to worry about declaring types, but you pay for that big time when you try to figure out the code months later. ...
Types are usually obvious. And if not, the IDE needs only one or two clicks to show you the type
Re: (Score:2)
Re: (Score:2)
Type unsafe is not the same as not needing to declare a type. (Static versus Dynamic typing on one axis and safe type system and unsafe type system on the other axis)
JavaScript is only unsafe in regards of a few stupid decisions about type coercions like between strings, booleans and ints. If you use objects it is type safe.
Modern languages that omit declaration of types usually use type interference (like Scala). That is only relevant at the point of definition of a variable, functions usually still need t
Re: (Score:2)
"Type unsafe is not the same as not needing to declare a type." - yes, good point. Java, e.g., is needlessly verbose in that regard. Scala fixes that.
"functions usually still need to declare the returning type" - that's the real need. I have not coded in Javascript in a long time, so I don't remember the rules anymore. I know that Python and Ruby (and Go) are horrible in this regard, mainly in the instance of function (method) return types, having spent many hours reverse engineering people's code just to f
How was the testing assumption validated? (Score:4)
So in RFTA this ranking, TIOBE is counting the number of times somebody queries "C programming", "Java programming", etc. while weighting the number according to the search engine used.
Where is the basic research that says a programmer is using a if they are doing a search on " programming"?
I would really like to see something like tracking the number of lines of code being put on GitHub for each language as a more realistic measurement followed by the number of contributors - that would give you a realistic idea of how many people are programming in a language along with the number of lines of code that are being produced.
Until we get something like this, how about we cut back on the monthly or more frequent /. stories stating that "XYZ is the most popular programming language" based on some arbitrary measurement system that hasn't been validated in any way.
Re: (Score:1)
Their methodology is desperately stupid, as is their analysis. Deciding that SQL can come back because it's Turing complete is eye-rolling pedantry. And obviously the "popularity" of VB.net didn't go up by more than 100% in a month in any real way.
But I'm not sure how I'd do better. GitHub is going to overrepresent languages popular for open source and independent developers. Meanwhile, a disproportionate amount of the world's .NET code is going to be sitting on some company's TFS server, opaque to the w
Re: (Score:2)
Microsoft Engineering: Huh? Oh yeah, they do that every year.
Microsoft Marketing: Would it be possible to slip in an update that makes each copy of Windows run a search on all the major search engines for ".NET programming" say, once a week? Y'know, not often enough to be noticed by people monitoring network
Re: (Score:2)
https://octoverse.github.com/2... [github.com]
Re: (Score:1)
It's worse than that. They don't count number of queries, they only count number of pages that are shown as a result of the query. Old languages with thousands of forum and blog postings naturally have an advantage this way, and also languages with names that also have another popular meaning. For example, Google shows not only programming links for "Dart programming", and also shows "Visual Studio basics" as a result for "Visual Basic programming".
TIOBE is a bad-bad-bad index, I don't understand why somebo
PHP bashing (Score:3)
Re:I've never actually even seen VB.net code in 20 (Score:5, Insightful)
Then you don't get around much at all. It is widely used. And it is just wordy C#. Bytecode is basically the same. It tends to be more popular with people who don't call themselves programmers but who do it everyday. Nah they don't care what you think because they need to get their job done quickly so the rest of the business can make money. They aren't snobbish assholes who relish browbeating people with tribal customs and languages. It is used to get shit done.
VB, Fortran, Cobol, etc. All still in use.
Re: (Score:2)
Re: (Score:2)
Re: (Score:1)
Worse, Python and VB.Net share many similarities to the point that there are only minor formatting differences between simple programs. It's a good laugh to see programmers say they only use Python, and then bitch about VB.Net.
Re: (Score:2)
Re: (Score:2)
GTK is a C toolkit.
However UI programming screams for something object oriented. Using C for it is just a pain in the ass.
Re: (Score:2)
Re: (Score:2)
Most UIs I worked on can not be described in UI editors. So you always have to interfere with the API of the toolkit.
I remember MFC ... shudder. I bought a Zapp license to not being forced to use MFC.
Re: (Score:2)
Re: (Score:2)
The whole point of Visual Basic is to enable those people you say "lost your job? Learn to code" to use something that is less daunting and more practical. It was designed to be a tool for someone who has a simple idea and wants to either automate their own business or sell something to a niche market and make a middle class living.
Visual Basic was and is night and day better in many cases there than Node, Python, etc. You couldn't ask for something simpler than "draw the UI and start writing event handlers" for a basic, tiny app just getting started.
If you are supplying it for external use/purchase, you should be able to hire someone to write it in a more production-ready language. If you are only using it for internal use... There isn't a very big space between Office macros, PowerShell, and moving up to C#. At least not now.
Re: (Score:1)
I use VB6 for all sorts of things. It doesn't have to be simple. It's no-work UI combined with the flexibility of COM and the Win32 API. And it runs without needing to install anything on virtually all current Windows machines.
Compare that to the sluggish bloat and limited compatibility of a .Net runtime. Or the bloat and slowness of Java. I've never even had a Java runtime installed. It's fine for server-side or maybe phones, but for desktops/laptops, Win32 API is still the standard that everything else is
A stupid question (Score:3)
How the hell would any of us know? We're each aware of what we use, plus what's used by other people at our jobs, schools etc. It's a tiny subset of all developers.
FWIW, I don't like either particularly.
Ugh (Score:3)
This is like asking if gonorrhea is a more popular STI than chlamydia.
And yet from actual code... (Score:3)
This just show how poor TIOBE's methodology really is.
Take a look at stats from actual pull request in github [github.com]
The most popular languages are:
1. Javascript
2. Java
3. Python
4. PHP
5. C++
6. C#
7. Typescript
8. Shell
9. C
10. Ruby
VB.Net is not even in the top 10
Now, you can argue that these are mostly open source projects, and that proprietary code might be different. Fair enough, but I don't see how search results (TIOBE's method) reflect proprietary code any better than this.
Re: (Score:3)
This just show how poor TIOBE's methodology really is.
Take a look at stats from actual pull request in github [github.com] The most popular languages are:
1. Javascript 2. Java 3. Python 4. PHP 5. C++ 6. C# 7. Typescript 8. Shell 9. C 10. Ruby
VB.Net is not even in the top 10
Now, you can argue that these are mostly open source projects, and that proprietary code might be different. Fair enough, but I don't see how search results (TIOBE's method) reflect proprietary code any better than this.
The VB.NET I was exposed to filled a roll that was so particular to the environment where it was created, nobody would ever want it on GitHub. It was hard enough to decipher in its native environment, it would be absolutely useless elsewhere. Move a file, query a database, rename the file, convert it to a weird text format, move it back, make a backup, and present a million pop up dialog boxes along the way.
Re: (Score:2)
My guess is that VB.NET gets a lot of search queries from people who aren't programmers but nevertheless are dabbling in it to try to get MS Office to do something it probably shouldn't really be doing anyway. So I'm sure it's a lot of "How to do X in VB.NET" search queries. Given that these people aren't programmers and that VB.NET isn't as simple as VB6*, I'm sure this means lots of searches.
*This is because Microsoft actually fixed a lot of problems with VB with VB.NET, but one of the consequences is th
Re: (Score:1)
TIOBE doesn't count "search queries". Instead, it counts "number of pages". So, Google shows something like "Visual Studio basics" as an answer to "Visual Basic programming", and TIOBE counts that.
Probably because of legacy getting an update... (Score:1)
Re: (Score:2)
Something else TIOBE didn't account for (Score:2)
VB.net isn't as bad as you think (Score:1)
Look VB.net is basically just C# with a syntax that seems a little less scary to beginners. In fact people have written scripts to convert VB.net to C# and back again. VB.net is no longer like the qbasic or gwbasic that came free with dos. VB.net isn't even like visual basic 6. Actually even vb 6 had its place as it was a language that let novices quickly put gui front ends on things. Remember that anyone can make both garbage and good code from just about any language. True some languages seem to make writ
VB.net vs C# (Score:1)
Simple explanation (Score:1)
They've somehow got the word "Shit" confused with "Popular".
Who searches for (language) programming? (Score:2)
If I'm searching Google for:
- Java Programming
- Visual Basic Programming
- JavaScript Programming
What am I looking for? Clearly, I'm a student, or someone just curious about programming.
If I'm a programmer, experienced in writing code, these are not things I would search for. Instead, I'm looking for:
- Java Serialize JSON
- C# REST API call
- JavaScript Ajax Mathod
The methodology of this "study" self-selects students, or curious people who don't know about programming. JavaScript is everywhere, like the air, b
Re: (Score:2)