Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re: Percentage of MS Windows Perl Users

by marto (Cardinal)
on Feb 19, 2020 at 08:02 UTC ( [id://11113139]=note: print w/replies, xml ) Need Help??


in reply to Percentage of MS Windows Perl Users

"This suggests to me (making certain assumptions that the testing population represents the broad user population) -- that only about 4% of Perl users are on Windows."

The basis of your assumption is flawed. Some testers run smokers for several different OS. Windows has licence costs. If you feel Windows is underrepresented it's a voluntary effort, see Why are some OS blank in CPAN Testers Matrix?.

  • Comment on Re: Percentage of MS Windows Perl Users

Replies are listed 'Best First'.
Re^2: Percentage of MS Windows Perl Users
by thechartist (Monk) on Feb 19, 2020 at 13:54 UTC

    The statistician George Box is often quoted as saying: "All models are flawed, but some models are useful". I'm well aware that the assumption regarding testers being representative of the broader userbase isn't exactly correct. But I'm curious if the estimate is off by a little bit, or a lot.

    Based on the types of questions seen on various forums, there could be many more Windows users than the testing logs would suggest. And if that is the case, I'd like to devote some time to testing on Windows.

      Just to get you started, a list of dists with failures on the Windows platform in cpantesters within the last month.

      #!/usr/bin/perl use strict; use warnings; use feature 'say'; use DateTime; use Mojo::UserAgent; # http://api.cpantesters.org/docs/?url=/v3#!/Summary/v3_summary_all my $url = 'http://api.cpantesters.org/v3/summary'; # just an example, the last month my $date = DateTime->now->add( months => -1 )->iso8601.'Z'; my $osname = 'mswin32'; my $grade = 'fail'; my $ua = Mojo::UserAgent->new; my $res = $ua->get( "$url?osname=$osname&grade=$grade&since=$date" )-> +res->json; say "$osname $grade since $date"; foreach my $fail ( @{$res} ){ say "$fail->{dist} failed on $fail->{perl}"; }

      Displays:

      mswin32 fail since 2020-01-19T16:45:05Z Config-Registry failed on 5.20.1 ExtUtils-MakeMaker failed on 5.22.1 Config-Registry failed on 5.18.2 Config-Registry failed on 5.18.2 CBOR-Free failed on 5.18.2 MySQL-ORM failed on 5.18.2 MySQL-ORM failed on 5.12.2 Metabolomics-Fragment-Annotation failed on 5.18.2 MySQL-ORM failed on 5.20.1 Config-Registry failed on 5.12.2 Class-Refresh failed on 5.18.2 .....

        Many thanks! I greatly appreciate that help!

      I don't think there is going to be a method to determine the number of users accurately. Anyone running cpan/cpanm can configure their client to report the installation status (pass/fail) to cpantesters. If you care enough and have the means you could setup an automatic smoker to do this without manual intervention.

        I would greatly appreciate knowing how to get cpanm to report install pass/fails.

        a windows user

Re^2: Percentage of MS Windows Perl Users
by jcb (Parson) on Feb 19, 2020 at 23:58 UTC
    Windows has licence costs.

    Could useful results be obtained by running Strawberry Perl or Cygwin perl on Wine on a Linux or BSD host? Or perhaps using ReactOS? Or should those be more properly considered different platforms from "proper" cygwin and mswin32?

      the Wine comparability layer could IMHO introduce problems. I think this sort of thing would simply muddy the waters.

        Yes, but it might also be something worth smoking.

        Perl itself has failing tests (for me) when installing in Ubuntu 18.04.2 LTS over Windows Subsystem for Linux. That would also be an interesting platform to smoke.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11113139]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (2)
As of 2024-04-19 00:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found