From: Dotan Cohen on
> I actually once did, but am sure I'll be swamped if I try now - Ubuntu
> is massive! It would be nice though to compare the response
> (favourites) from both camps. I'll limit myself to Debian for now;
> maybe next year :-(
>

Would you like me to do it? I am rather active on the Ubuntu and
Kubuntu lists. I have no problem taking responsibility for those lists
every year, and you keep up the good work with Debian. What do you
say?


--
Dotan Cohen

http://what-is-what.com
http://gibberish.co.il


--
To UNSUBSCRIBE, email to debian-user-REQUEST(a)lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster(a)lists.debian.org
From: Dotan Cohen on
>> Would you like me to do it? I am rather active on the Ubuntu and
>> Kubuntu lists. I have no problem taking responsibility for those lists
>> every year, and you keep up the good work with Debian. What do you
>> say?
>
> magnificent! when u going to start it? I'm going to re-subscribe right
> now just for the poll!
>

Go subscribe, I'll post in about ten minutes.


--
Dotan Cohen

http://what-is-what.com
http://gibberish.co.il


--
To UNSUBSCRIBE, email to debian-user-REQUEST(a)lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster(a)lists.debian.org
From: Avi Greenbury on
On Tue, 17 Nov 2009 13:01:20 +0200
Dotan Cohen <dotancohen(a)gmail.com> wrote:

> >> Would you like me to do it? I am rather active on the Ubuntu and
> >> Kubuntu lists. I have no problem taking responsibility for those
> >> lists every year, and you keep up the good work with Debian. What
> >> do you say?
> >
> > magnificent! when u going to start it? I'm going to re-subscribe
> > right now just for the poll!
> >
>
> Go subscribe, I'll post in about ten minutes.
>

Ah, handy!

I managed to miss this on here, so I'll await its appearance on the
dark side.

--
Avi Greenbury
http://aviswebsite.co.uk ;)
http://aviswebsite.co.uk/asking-questions


--
To UNSUBSCRIBE, email to debian-user-REQUEST(a)lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster(a)lists.debian.org
From: Tim Tebbit on
Dotan Cohen wrote:
>
> My guess would be the popularity of Ubuntu. Much of the pie went
> there. As Ubuntu is Debian-derived, how about doing the poll there as
> well?
>

Out of curiosity I extracted unique email address from ubuntu-users.mbox
available from their archive site. The archive starts 15 Sep 2004, and I
found 10,809 unique address give or take a few my patterns missed.

I'm sure their current subscription is not that high, and I was not able
to find a mbox for debian-user ( a good thing ) to see what debian had
over the same time period for comparison.



--
To UNSUBSCRIBE, email to debian-user-REQUEST(a)lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster(a)lists.debian.org
From: Celejar on
On Tue, 17 Nov 2009 14:01:53 -0500
Tim Tebbit <ttebbit(a)gmail.com> wrote:

> Dotan Cohen wrote:
> >
> > My guess would be the popularity of Ubuntu. Much of the pie went
> > there. As Ubuntu is Debian-derived, how about doing the poll there as
> > well?
> >
>
> Out of curiosity I extracted unique email address from ubuntu-users.mbox
> available from their archive site. The archive starts 15 Sep 2004, and I
> found 10,809 unique address give or take a few my patterns missed.
>
> I'm sure their current subscription is not that high, and I was not able
> to find a mbox for debian-user ( a good thing ) to see what debian had
> over the same time period for comparison.

As you say, a good thing ;) Here's a harvester to go through an mbox
file and print out all the 'froms' found (requires Mail::MboxParser -
install libmail-mboxparser-perl):

#! /usr/bin/perl -w

# usage: 'harvester.pl mbox'
# prints all values of 'from' lines in 'mbox'
# to do useful things with this, you'll probably want to pipe the output
# through sort, and sometimes uniq, e.g.:
# 'harvester.pl mbox | sort | uniq | wc -l' - count the number of unique
# addresses found (not entirely accurate, since there can be multiple
# equivalent variations of the same address

use Mail::MboxParser;

my $parseropts = {
enable_cache => 1,
enable_grep => 1,
cache_file_name => '/tmp/harvester-cache-file',
};

my $mb = Mail::MboxParser->new(shift, decode => 'ALL', parseropts => $parseropts);
while (my $msg = $mb->next_message) {print $msg->header->{from}, "\n"}

Celejar
--
foffl.sourceforge.net - Feeds OFFLine, an offline RSS/Atom aggregator
mailmin.sourceforge.net - remote access via secure (OpenPGP) email
ssuds.sourceforge.net - A Simple Sudoku Solver and Generator


--
To UNSUBSCRIBE, email to debian-user-REQUEST(a)lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmaster(a)lists.debian.org