registration

2002-08-13 Thread michael

Michael Robinton
[EMAIL PROTECTED]
www.bizsystems.net
MAR  or if you insist MIKER

  Graphics::ColorPicker : A perl module for WYSIWYG web
  applications that allow selection of HEX color numbers

see http://www.bizsystems.net/downloads/graphics/demo.html





LaBrea::Tarpit

2002-09-03 Thread Michael

I'd like to edit the short description field for this module, but PAUSE
says I have no registered modules. How do I do this. Author: MIKER

Michael
[EMAIL PROTECTED]
[EMAIL PROTECTED]




Re: Module submission Crypt::CapnMidNite

2003-01-03 Thread Michael
> In article <[EMAIL PROTECTED]>, Perl Authors
> Upload Server <[EMAIL PROTECTED]> wrote:
> 
> > The following module was proposed for inclusion in the Module List:
> > 
> >   modid:   Crypt::CapnMidNite
> 
> why this name?

It is a "swiss army knife module" that is presently used in several 
released modules. If you are old enough to remember the "radio" show 
Captain Midnight, he had a magic decoder ring  thus the name for 
the module. Module is currently used by several other released 
modules and contains special methods that use a combination of 
various hash/crypt/encode/decode methods implemented by "some" other 
modules. CapnMidNite contains some specialized methods that are not 
implemented elsewhere. All of the code is written in C to be compact 
and fast. 
> 
> > Implements various encrypt and decrypt methods
> 
> which ones?  should they each have their own module?

No, they are inter-related. Some individual methods can already be 
found in other modules but are used withing CapnMidNite in a manner 
that would not be as efficient if the external modules were used 
instead.

Michael
[EMAIL PROTECTED]



Message-ID: <030120031141097287%comdog@panix.com>

2003-01-16 Thread michael
In article <[EMAIL PROTECTED]>, Perl Authors
Upload Server <[EMAIL PROTECTED]> wrote:

> The following module was proposed for inclusion in the Module List:
>
>   modid:   Crypt::License

> Encrypts plaintext perl source code with public and private keys

>i think that namespaces under Crypt should be reserved for specific
>types of encryption rather than applications of it.
>
>does this technique only work for Perl source, or can you use it
>on anything?
No, it is perl specific

>
>why the name "License"?  a legal arrangement is unrelated to the
>technology, and a good design should allow your module to be used
>for things unrelated to licensing.

hmmm good point. I couldn't think of another name that was
applicable. Perhaps a description of how it works would illuminate the
choice.

The developer portion has a couple of scripts, one which generates user
certificates that contain short keys and usually contain a "terms of use
statement" or License. The script crypts the perl sources and autoload
stuff using a modified non-linear RC4 type of scrambling. The user end
of things only decrypts and feeds the module into the perl engine. First
it checks the user certificate for valid host, etc... + expiration date.
If the "license" period has expired, it will not decrypt the file. There
is an optional e-mail module that notifies the user/developer/licensor
of pending expiration of the cert. Thus the choice of names. The
objective of the module is to provide the developer that has spend a lot
of time an $$ on a proprietary application in perl to be able to keep
prying eyes out of source code. This encourages development of
applications in perl rather than a compiled language such as "C". Any
suggestions on what might be a good name other if this one is not
suitable?




modid: Crypt::CapnMidNite

2003-01-16 Thread Michael
Bryan wrote:
>>
>> > Implements various encrypt and decrypt methods
>>
>> which ones?  should they each have their own module?

Michael said:
>No, they are inter-related. Some individual methods can already be
>found in other modules but are used withing CapnMidNite in a manner
>that would not be as efficient if the external modules were used
>instead.

That was a pretty thin answer. More specifically, CapnMidnite implements

MD5 and RC4 + RC4 modified-non-linear

MD5 is identical in function to Digest::MD5, but because of the way it
is used inside the C program, it would be a hassle to use the module
though it could be done of course. The RC4 implementation is similar to
Crypt::RC4 but this module appears to be broken and not maintained. This
implementation corrects the errors and adds features for use in several
other modules. The non-linear RC4 implementation is unique and prevents
"unwinding" the encryption with the original crypt key.

Used by Crypt::License and several modules not yet released but in use
for a couple of years I'll get around to it eventually :-)

Crypt::CapnMidNite has an alter ego included in the Makefile
(Crypt::C_LockTite) that is used in the developer portion of
Crypt::License that enables the reverse non-linear RC4 crypt function.
There are INSTALL notes provided that explain its use and build.
Crypt::C_LockTite will never be uploaded/released as it is only built on
demand for Crypt::License per the included docs.

Sorry about rambling on so...

Michael




Apache::CryptHash

2003-01-16 Thread Michael
>In article <[EMAIL PROTECTED]>, Perl Authors
>Upload Server <[EMAIL PROTECTED]> wrote:

>> The following module was proposed for inclusion in the Module List:
>>
>>   modid:   Apache::CryptHash
 >
>> Primarily used for secure cookie string generation and/or session
>> identification, cookie based shopping carts, etc...
>
>
>is this something that can only be used with mod_perl?

Don't recall getting this message. but no - sorta I suppose you
could use it with any type of hash, but what would be the point? It was
written to implement the cookie encryption scheme needed for secure
cookies per the guidelines for Apache::AuthCookie. In addition to that,
I've used it with Apache::Cookie to make other information carrying
cookies, including a mini shopping cart module that I'll probably
release eventually as well though it's pretty dumb code as modules go.
There is no requirement per-se for module "Apache", it's just apache
oriented but could be used with CGI::Cookie in a similar fashion. Would
you like to suggest another name that might be more appropriate?

Michael




LaBrea::Tarpit

2003-01-16 Thread Michael
What's the status of registration for this name space??
I don't have any bright ideas for other names, open to suggestion.

Module set is a web gui that shows the "tarpit" status from the program
"labrea".


Michael




Re: Apache::CryptHash

2003-01-17 Thread Michael
> In article <[EMAIL PROTECTED]>, Michael
> <[EMAIL PROTECTED]> wrote:
> 
> > >In article <[EMAIL PROTECTED]>, Perl Authors
> > >Upload Server <[EMAIL PROTECTED]> wrote:
> 
> > >>   modid:   Apache::CryptHash
> 
> > >> Primarily used for secure cookie string generation and/or session
> > >> identification, cookie based shopping carts, etc...
> 
> > >is this something that can only be used with mod_perl?
> 
> > Don't recall getting this message. but no - sorta I suppose you
> > could use it with any type of hash, but what would be the point?
> 
> [ i might have forgot to CC you on the message --- my fault ]
> 
> that is the point!  if we make something useful, people end up using
> it in unexpected ways.
> 
> if you do not need Apache to use this module, then it does not
> belong in the Apache namespace.
> 
> the more reuseable you can make your code, the better---even if you
> do not see another use for it.
> 

hmmm Ok, how about Crypt::CryptHash ??? sorry I don't have any 
good ideas for this one.

Michael
[EMAIL PROTECTED]



Re: modid: Crypt::CapnMidNite

2003-01-17 Thread Michael
> In article <[EMAIL PROTECTED]>, Michael
> <[EMAIL PROTECTED]> wrote:
> 
> > Bryan wrote:
> 
> that's brian.
> 
> > >> > Implements various encrypt and decrypt methods
> 
> > >> which ones?  should they each have their own module?
> 
> > Michael said:
> > >No, they are inter-related. Some individual methods can already be
> > >found in other modules but are used withing CapnMidNite in a manner
> > >that would not be as efficient if the external modules were used
> > >instead.
> >
> > That was a pretty thin answer. More specifically, CapnMidnite implements
> 

Ok, more specifically, the calls to methods "encode" and 'decode" 
assume the internal availability to all the module's methods.

>From the XS comments

# call as:
#   new_md5 md5 only
#   new_rc4 rc4 setup
#   new_md5_rc4 md5+rc4 setup
#   new_crypt   rc4 setup, + hash, rot setup
#   new_md5_crypt   md5+rc4 setup, + hash, rot setup
#   decode  md5+rc4 setup, + hash, rot setup + decrypt

The methods md5 and rc4 are usable, but are incidental to the true 
purpose of the module which is to provide the last 4 functions + 
method 'license' . These all use numerous internal calls to various 
internal pieces of md5 and rc4. Specifically:
init_md5, prep_key,init_hash_xy,MD5Update,MD5Final

These internal method calls are needed to implement the mentioned 
methods would not be easily exportable in perl since C structure 
pointers are being passed around.

MD5 already exists so implementing another is not what I had in mind. 
I could do an RC4 module, I suppose, but it would still be needed 
in its current form for use within this module as is md5 and its 
internal structures.

How about some constructive suggestions or pointers. I don't want 
to destroy the functionality for the sake of namespace and would like 
to get this registered in some fashion so that modules that use it 
can find it in CPAN.

Michael


> > MD5 and RC4 + RC4 modified-non-linear
> 
> > MD5 is identical in function to Digest::MD5, but because of the way it
> > is used inside the C program, it would be a hassle to use the module
> > though it could be done of course. The RC4 implementation is similar to
> > Crypt::RC4 but this module appears to be broken and not maintained.
> 
> that sounds like they can be separate modules.  i would like to see
> a better name that helps people find what they need.  i think most
> people will have no idea what "CapnMidnite" is (the only references
> to that string in Google is your module).



Re: Module submission Apache::Test::CookieEmulator

2003-01-17 Thread Michael
> In article <[EMAIL PROTECTED]>, Perl Authors
> Upload Server <[EMAIL PROTECTED]> wrote:
> 
> > The following module was proposed for inclusion in the Module List:
> > 
> >   modid:   Apache::Test::CookieEmulator
> 
> > Emulates functionality of Apache::Cookie without httpd.
> 
> in the spirit of Apache::FakeRequest, should this be
> 
>Apache::FakeCookie

Yeah, that's good. I will resubmit the module under that name.

Michael
[EMAIL PROTECTED]



mystery chapter

2003-01-27 Thread michael
I've uploaded a new module called Geo::CountryFlags which basically
returns a path to a local GIF file based on the ISO country code,
fetching and storing locally the file if necessary from the CIA
database.

I was going through the name space registration form but can not figure
out which "chapter" Geo belongs to help please!

Michael





register me

2002-03-26 Thread michael

Michael J. Mathews

[EMAIL PROTECTED]

http://michael.mathews.net

MMATHEWS

I would like to submit a module:
Data::JavaScript::DocumentWrite -- tie a filehandle so
that it wraps all prints to that filehandle in
well-formed JavaScript C
statements



Net::Interface

2013-10-19 Thread michael
Hello PAUSE admins,

I am the author of the "current" version of Net::Interface, however I 
am a co-maintainer. The "owner", Stephen Zander aka cpan SRZ, seems 
to have disappeared.

  - The following addresses had permanent fatal errors -

(reason: 550 5.1.1 : Recipient address 
rejected: User unknown)

SRZ created the original module back in 1997 and made one improvement 
in 2000.

I took over development on the module in 2006, re-wrote and expanded 
it and have been maintaining it ever since.

In the last year or so that have been smoker failures, bugs, and 
enhancement requests that I have not been able to adequately respond 
to because of a lack of system resources for development. There are 
several people more than willing to assist, however because I only 
have co-maintainer status I can not add them to the maintainer list.

I have been unable to contact SRZ and would appreciate it if you 
would remove him as the owner of the module so that it can be 
properly maintained and further developed.

Thanks,

Michael Robinton (MIKER)



Re: Net::Interface

2013-10-21 Thread michael
Thanks Brian,

Michael

> [[ This message was both posted and mailed: see
>the "To," "Cc," and "Newsgroups" headers for details. ]]
> 
> I've made MIKER the owner of Net::Interface.
> 
> Good luck, :)
> 
> -- 
> brian d foy (one of many PAUSE admins), http://pause.perl.org
> PAUSE instructions: 
> http://pause.perl.org/pause/query?ACTION=pause_04about Archives:
> http://www.xray.mpe.mpg.de/mailing-lists/modules Please send all
> messages back to modules@perl.org with no CC to me.




Net::Interface - SECOND REQUEST

2014-03-17 Thread michael
Hi Modules... or whoever is on the receiving end of this.

This is MIKERMichael Robinton

I'm the author of several modules and have co-author status on 
Net::Interface.

I took over this module several years ago and re-wrote it completel 
to add numerous new features and capabilities, with the assistance 
and advice of Jens Rehsack  REHSACK

I have limited resources to further develop this module and Jens has 
kindly offered to take over primary responsibility.

The orginal author that started this module has not been heard from 
since for years and we have been unable to contact him. Please either 
remove him as primary or at a minimum, grant Jens Rehsack co-author 
status so he can maintain Net::Interface.

Thanks,

Michael Robinton
MIKER




Register

2002-06-10 Thread Michael Forman


Name:   Michael Forman
Email:  [EMAIL PROTECTED] ([EMAIL PROTECTED])
Home:   none
CPANID: FORMAN
Descr:
I've been a mad perl programmer for years (since my college
days as a system administrator).  I'd like to share a few
of my most useful perl scripts with the world.
The best programs are those used to manipulate files from
the command line, turning dozens of atomic file operations
into a single command.

Michael.



Request to register as a developer

2002-07-01 Thread Michael Kaelbling

Please register me as a developer

Name:  Michael Kaelbling
   Email:  [EMAIL PROTECTED]
Homepage:  
   Preferred UID:  KLBLNG-MJ
Planned contribution:  

 additions to the Palm:: module tree for creating,
manipulating, and dumping PNF format Palm OS
databases.

Thank you.


__
Do You Yahoo!?
LAUNCH - Your Yahoo! Music Experience
http://launch.yahoo.com



VEGETARIAN OR SPIRITUAL ONE: YOU HAVE BEEN CHOSEN

2002-07-01 Thread Michael Wilson
-mails legally, 
where to find thousands of free classified ads and much more.

There are 2 Primary methods to get this venture going:

METHOD # 1: BY SENDING BULK E-MAIL LEGALLY

Let's say that you decide to start small, just to see how it 
goes, and we will assume you and those involved send out only 
5,000 e-mails each. Let's also assume that the mailings receive 
only a 0.2% response (the response could be much better but let's 
just say it is only 0.2%.  Also many people will send out 
hundreds of thousands e-mails instead of only 5,000 each).

Continuing with this example, you send out only 5,000 e-mails. 
With a 0,2% response, that is only 10 orders for report # 1. 
Those 10 people responded by sending out 5,000 e-mails each for a 
total of 50,000. Out of those 50,000 e-mails only 0.2% responded 
with orders. That's = 100 people responded and ordered Report # 
2. Those 100 people mail out 5,000 e-mails each for a total of 
500,000 e-mails. The 0.2% response to that is 1000 orders for 
Report # 3. Those 1000 people send out 5000 e-mails each for a 
total of 5 million e-mails sent out.

The 0.20% response to that is 10,000 orders for Report #4. Those 
10,000 people send out 5,000 e-mails each for a total of 
50,000,000 (50 million) e-mails. The 0.2% response to that is 
100,000 orders for Report #5.

THATS 100,000 ORDERS TIMES $5 EACH = $500,000.00 (half 
million).

Your total income in this example is:
1 $50 +
2 $500 +
3 $5,000 +
4 $50,000 +
5 $500,000 Grand Total = $555,550.00

NUMBERS DO NOT LIE. GET A PENCIL & PAPER AND FIGURE OUT 
THE WORST 
POSSIBLE RESPONSES AND NO MATTER HOW YOU CALCULATE 
IT, YOU WILL 
STILL MAKE A LOT OF MONEY!

REMEMBER FRIEND, THIS IS ASSUMING ONLY 10 PEOPLE 
ORDERING OUT OF 
5,000 YOU MAILED TO.

Dare to think for a-moment what would happen if everyone, or half 
or even one 4th of those people mailed 100,000 e-mails each or 
more? There are over 150 million people on the internet worldwide 
and counting.

Believe me, many people will do just that and more!

METHOD #2 BY PLACING FREE ADS ON THE INTERNET

Advertising on the net is very, very inexpensive and there are 
hundreds of FREE places to advertise. Placing a lot of free ads 
on the Internet will easily get a larger response. We strongly 
suggest you start with Method # I and add METHOD #2 as you go 
along.

For every $5 you receive, all you must do is e-mail them the 
Report they ordered.  That's it.  Always provide same day service 
on all orders. This will, guarantee that the e-mail they send 
out, with your name and address on it, will be prompt because 
they can not advertise until they receive the report.

AVAILABLE REPORTS

ORDER EACH REPORT BY ITS NUMBER & NAME ONLY.

Notes: Always send $5 cash for each Report. Checks NOT accepted. 
Make sure the cash is concealed by wrapping it in at least 2 
sheets of paper. On one of those sheets of paper write the NUMBER 
& the NAME of the Report you are ordering, YOUR E-MAIL ADDRESS 
and your name and postal address.

PLACE YOUR ORDER FOR THESE REPORTS NOW-

REPORT #1: "The Insider's Guide to Advertising for
Free on the Net"
Order Report #1from:

Michael Wilson
1825 N Normandie Ave, #F
Los Angeles, CA 90027
USA
___
REPORT # 2:The Insider's Guide to Sending
Bulk e-mail on the Net."
Order Report # 2 from:

Charles Evans
9 Kersey
Stantonbury
Milton Keynes
MK14 6AF
United Kingdom

REPORT # 3: "Secret to Multilevel Marketing on the
Net"
Order Report # 3 from :

Witold Stawarz
1455 Tallevast Road
Suite L8369
Sarasota, FL  34243
USA

REPORT # 4: "How to become a Millionaire Utilizing
MLM and the Net."

Order Report # 4 from:

J.Z.
Kolonia Browar 55
34-300 Zywiec
Poland _

_
__
REPORT # 5: "How to Send Out One Million e-mails for FREE" Order 
Report # 5 from:

John Gerken
Box 703
401 Pine Street
Abilene, Texas 79601
USA




YOUR SUCCESS GUIDELINES

Follow these guidelines to guarantee your success:

If you do not receive at least 10 orders for Report #1 within 2 
weeks, continue sending e-mails until you do.

After you have received 10 orders: 2 to 3 weeks after that you 
should receive 100 orders or more for REPORT #2.  If you did not, 
continue advertising or sending e-mails until you do.

Once you have received 100 or more orders for Report # 2, YOU CAN 
RELAX, because the system is already working for you and the cash 
will continue to roll in THIS IS IMPORTANT TO REMEMBER: Every 
time your name is moved down on the list you are placed in front 
of a different report.  You can KEEP TRACK of your PROGRESS by 
watching which report people are ordering from you.  IF YOU WANT 
TO GENERATE MORE INCOME SEND ANOTHER BATCH OF E-
MAILS AND START 
THE WHOLE PROCESS AGAIN. There is NO

Missed registration confirmation message

2002-09-12 Thread Michael Carman

[Please Cc: any responses to me directly. Thank you.]

Some months ago I registered for a CPAN user ID, but never got any
response to my request. I finally got around to looking into it today
and discovered that I *do* have an account -- I just can't access it
because I don't know my password. Unfortunately, I can't use the "mail
me my password" feature because the email address is wrong. (I was
forced to change ISPs, and this appears to have happened in between my
registering and receiving confirmation.) If there's anyone in a position
of power to fix this, here's the relevant info:

CPAN user ID: CARMAN
   Old email: [EMAIL PROTECTED]
   New email: [EMAIL PROTECTED]

I realize that this violates the built-in security, but I'm kind of at a
loss. :) About the only method I have of "proving" that I'm the same
person is to point out archives of my posts to c.l.p.misc...

-mjc




Foomatic?

2002-09-20 Thread Michael Muratet

Hi

I'm getting a module not found error for 'Foomatic'. I see Foomatic in
my 5.6.1/site_perl, but I can't locate the module in CPAN. I'm sure
there's an obvious and simple (read 'newbie') explanation. What is it?

Thanks.

Mike



PAUSE registration

2002-10-04 Thread Michael McLagan

Hello,

   Please register the following ID into PAUSE:

  MMCLAGAN
  Michael McLagan <[EMAIL PROTECTED]>
  http://www.invlogic.com

   The initial contribution is currently called Mail::DSN (could be MIME::DSN 
but I'm waffling).  In either case it's my attempt to parse and manipulate 
emails containing message/delivery-status parts as represented by RFCs 1893 and 
1894.  It is in use by Linux Online to process bounce messages from the user 
registration system.  I suspect that mailing list handling software would make 
use of this to better handle returned messages.

   I tried emailing the MIME-tools maintainer but got no response (over a 
month) so I'm guessing he has no interest in including it.  I also did some 
relatively exhaustive Google searches and came up empty on this particular 
issue.  If I missed something, a pointer would be most appreciated.

   Michael
  




Wish to contribute perl script

2002-12-10 Thread Michael Hollifield
Sirs,

I would like to get a PAUSE access to contribute a script to the site.


Name:   Michael Hollifield
email:  [EMAIL PROTECTED]
homepage:   NONE
userid: HOLLIFM


I am contributing a script in perl that will query the filemirror.com
site and return a listing of mirrors (href, filename, size, date) in a
format that could be used by other programs like wget and such to get
multiple listings of files available.

The script is done and works.

Thank you,

Michael


-- 
Michael Hollifield <[EMAIL PROTECTED]>
Magnalinea Corporation



Vendor spesific Module

2016-02-15 Thread Shipper, Michael
Hello:

I Vendor specific  REST interface module for interfacing with a vendor's 
product SolarWinds.

The current name of the module is:
SolarWinds::REST

This of course is a root name space.. which is frowned on.. any suggestions?

[cid:image001.jpg@01D164E9.E9CF75A0]

Michael Shipper | Systems Engineer | Desk: 314.288.3096| Cell:  314.348.1895
12405 Powerscourt Drive, Saint Louis, MO 63131



Re: [Perl] DBIx::Error maintenance

2017-03-01 Thread Michael Brown

On 28/02/17 15:32, Alexander Hartmaier wrote:

Can you move the Github repo to my account too? My nick there is also
abraxxa.


Done.

I have another abandoned module: Catalyst::View::CSV.  If you'd like to 
take this one as well, just let me know!


Thanks,

Michael


Re: [Perl] DBIx::Error maintenance

2017-03-01 Thread Michael Brown

On 28/02/17 10:17, Alexander Hartmaier wrote:

it seems you're not active in the Perl ecosystem any more.


Indeed; I tend to use Python nowadays.


I'd like to take over maintenance of DBIx::Error. If that's ok for you
please transfer FIRSTCOME on PAUSE to me (PAUSE ID abraxxa) and also the
source control repository.

You can do this by logging into https://pause.cpan.org,
<https://pause.cpan.org>selecting the module in the 'Change Permissions'
menu and clicking '2.1 Transfer primary maintainership status to
somebody else (you become co-maintainer)'.


Done; thank you.


As it's not listed in META.yml please tell me if you're using Git or
Subversion and how we can transfer it to me.


I've pushed a copy to a GitHub repository at

  https://github.com/mcb30/DBIx-Error

Thank you for taking over the maintenance of this!

Michael


CPAN LINK?

2003-04-01 Thread Michael Shehan
Can you tell me why http://www.cpan.org now links to Matt's Script Archive?

Mike
[EMAIL PROTECTED]


_
Help STOP SPAM with the new MSN 8 and get 2 months FREE*  
http://join.msn.com/?page=features/junkmail



I'd like a developer ID, please

2001-04-17 Thread Michael Roberts

I'm the author/maintainer of the wftk (open-source workflow toolkit) and
I'm starting work on a Perl module integration for the library.  I'd
like to be able to upload it to CPAN when it's working.

Name: Michael Roberts
Email: [EMAIL PROTECTED] for this purpose
Homepage: http://www.vivtek.com/wftk.html
Preferred userid: MICHAEL or VIVTEK.  Usually MICHAEL is taken.  :-)
Description: above.
Description in module list format: premature, right?  Nothing's actually
written yet.

You can see the site itself for some public discussion; I've also
published an article on IBM's site, but it's very old and not all that
descriptive.  Suffice it to say, this isn't coming out of left field.

Thanks!
Michael




CPAN author registrytion

2001-05-24 Thread Michael Jacob

Hi,

I'd like to register as a author for CPAN.

name: Michael Jacob
email:[EMAIL PROTECTED]
homepage: j-e-b.net
preferred ID: JACOB

a short description of what you're planning to contribute: I'm working on 
some source filter modules to allow programmers to shorten some lengthy 
declarations notably. That's nice when you have to force them do that 
lengthy rubish (like parameter checking :-))...

cu
Michael




Wrong email adress

2001-06-04 Thread Michael Witthaut

Hello Pause Team,

I've tried to register for the Perl Authors Upload Server about one year
ago. Because of a mistake in the registration of my email adress, I've never
received the password for PAUSE. So I also didn't recognize the mistake
until today. Please change my email adress to mailto:[EMAIL PROTECTED] and
send my password again.

Thank you

Yours faithfully


Michael Witthaut




cpan

2001-06-27 Thread Michael Stump

my name is Michael Stump
my email address is [EMAIL PROTECTED]
my website is www.syndor.com
prefered user ID ALFALPHA

I have designed on module that makes accessing a mysql or odbc based
database much easier than the direct DBI and DBD modules alone.

I'm also working on a couple other modules that may prove usefull

Thankyou, Michael Stump
CEO Syndor Computing services




pause registration

2001-07-29 Thread Michael Diekmann

Name = Michael Diekmann
Email = [EMAIL PROTECTED]
WWW = http://www.undef.de
ID = MIDI
Description = One module, more if i have time.




please register me: have cool module

2001-08-08 Thread Michael Katkin

Name: Michael Katkin
Email: [EMAIL PROTECTED]
HomePage: www.katmonkey.com
Preferred User ID: KATMONKEY
Description:
 A dynamic search and retrieve module intially
called lookfor. Basically, the module looks for some
sort of patern, finds it, optionally stores
information about it and then jumps to the next thing
to look for. It promotes one to think about extracting
data in this manner:
  /->Lookfor B-->END
Lookfor A-/-->END
^ \->Lookfor C-->-
| \
|--

Which means: Let's look for A, When we find A then we
look for B and C. If we find B then we look for the
END. If we find C, then we look for A or END. 

The module is already written so that you can define
this sort of algorithm like this:

A->nextlookfor(B,C);
B->nextlookfor(END);
C->nextlookfor(A,END);

It can theoretically work on an open file handle, a
bit stream, or anything you throw it's way since the
user can overide the default seek method ($_=<$file>).

This module is fairly usefull to me. I hope it will be
usefull to perl computing group at large.

Michael Katkin

__
Do You Yahoo!?
Make international calls for as low as $.04/minute with Yahoo! Messenger
http://phonecard.yahoo.com/



Registration for CPAN user ID

2001-08-30 Thread Michael Carman

Name: Michael Carman
Email: [EMAIL PROTECTED]
Preferred User ID: CARMAN
Description: New module Text::Columns - Dynamic formatting for tabular data.




Registration for CPAN

2001-09-18 Thread Michael Gilfix

  Hi! I'd like to contribute a suite of modules to CPAN. Here's the info you
guys need:

Name: Michael Gilfix
Email: [EMAIL PROTECTED]
Homepage: http://www.eecs.tufts.edu/~mgilfix
Preferred-ID: MGILFIX

  The contribution would come in the form of three modules under the
Net::Notification namespace (I'm open to another namespace if you guys
have any suggestions):

Net::Notification::Notice
Net::Notification::NoticePool
Net::Notification::Email

  Here's a description from the POD documentation for the NoticePool
module:



Net::Notification::NoticePool provides methods for managing persistent
user notifications that might be sent through a variety of medium
such as via email or pager. This module is meant to facilitate
communication through medium where the programmer can expect a
significant delay and where reliability is important.

NoticePool allows for management of various Notification objects
(see Net::Notification::Notice), each with possibly different
destinations. The NoticePool offers guaranteed reliability as all
changes to the Notification object are written out to disk in the
notification database prior to update.

The notification pool allows the addition, updating, and retrieval
of notification objects within the pool.  Notification transactions
are advanced through the 'updateOutstanding' method, which attempts
to resend notifications whose delivery previously failed and indicate
that notices are awaiting processing when a response has arrived.

Transports are registered as transport types (keywords) and associated
instantiated transport objects. Transport objects must adhere to the
interface outlined in the transport section below.

A history of the notification transactions is also maintained within
the notification object during sending and retrieval.  The status of
the notification object is also updated as the application interacts
with the notice pool.

Finally, notification objects continue to exist within the persistent
notification database until they are resolved by the application.

-

  I think this module will be really useful to the community as I have
often had need for such a module but have been unable to find anything
like it within the depths of CPAN. Please let me know if you guys need
any more information.

Cheers!

   -- Mike

-- 
Michael Gilfix
[EMAIL PROTECTED]



Registration Request

2001-09-20 Thread Michael Villeneuve
Title: Registration Request






name: Michael (Mick) Villeneuve
email:    [EMAIL PROTECTED];[EMAIL PROTECTED]
web:  http://members.home.com/mickv    (so far...)
userid:   mrmick


I currently have some small modules that I would like to share with others.  One example is 
an adaptation of Dave Cross' Array::Compare, called Array::Compare_Elem.  While Array::Compare
returns a boolean on whether the compared arrays differ, this one goes a little furhter and 
returns the values in the second operand (array) that are different.  I have found this useful
for searching for differences in directory structures after installing software on different machines.


cheers,
Mick


-

['You rush a miracle man, you get rotten miracles.' - Miracle Max, from The Princess Bride]


********
Michael Villeneuve
Tools Integration Specialist
Design Tools Distribution
Nortel Networks
ESN: 393-6675 or (613)763-6675
[EMAIL PROTECTED]






RE: Registration Request

2001-09-21 Thread Michael Villeneuve
Title: RE: Registration Request





Sounds like a good idea...


I'll contact him to see waht he has to say.



However, I still would like to have a PAUSE ID if I may.  There are some other modules that I have ideas for that could benefit others.

Cheers,
Mick


-

['You rush a miracle man, you get rotten miracles.' - Miracle Max, from The Princess Bride]


********
Michael Villeneuve
Tools Integration Specialist
Design Tools Distribution
Nortel Networks
ESN: 393-6675 or (613)763-6675
[EMAIL PROTECTED]




-Original Message-
From: Kirrily Robert [mailto:[EMAIL PROTECTED]]
Sent: Thursday, 20 September, 2001 10:40 PM
To: Villeneuve, Michael [KAN:1195:EXCH]; '[EMAIL PROTECTED]'
Subject: Re: Registration Request



In lists.projects.perl.modules, you wrote:
>
>I currently have some small modules that I would like to share with others.
>One example is 
>an adaptation of Dave Cross' Array::Compare, called Array::Compare_Elem.
>While Array::Compare
>returns a boolean on whether the compared arrays differ, this one goes a
>little furhter and 
>returns the values in the second operand (array) that are different.  I have
>found this useful
>for searching for differences in directory structures after installing
>software on different machines.


Have you talked to Dave about this?  I think it would be a useful thing
to fold into Array::Compare, rather than creating a new module for it.


Which is not to say you can't have a PAUSE ID, just that I think this
particular module might be worth folding into an existing one.


K.


-- 
Kirrily 'Skud' Robert - [EMAIL PROTECTED] - http://infotrope.net/
Real World: A bizarre dimension in which the standard dress is shirt 
and tie and in which a person's working hours are defined as 9 to 5.





Re: Registration for CPAN

2001-09-21 Thread Michael Gilfix

  When I had originally started the naming scheme, I had
PersistentNotification::* but that was much too long. Perhaps simply
'Notification' as a top level name is a good idea. Where do most sys
admin tools fall under as I think these modules fit an immediate need
for them.

 -- Mike

On Thu, Sep 20 @ 22:37, Kirrily Robert wrote:
> In lists.projects.perl.modules, you wrote:
> >  The contribution would come in the form of three modules under the
> >Net::Notification namespace (I'm open to another namespace if you guys
> >have any suggestions):
> >
> >Net::Notification::Notice
> >Net::Notification::NoticePool
> >Net::Notification::Email
> >
> 
> Usually Net:: is used for implementations of networking protocols (eg
> SMTP, FTP).  It doesn't seem like the right place for these modules.
> I'm not sure what *is* the right place, but I'll ponder on it.

-- 
Michael Gilfix
[EMAIL PROTECTED]



Re: Registration for CPAN

2001-09-23 Thread Michael Gilfix

  Notify::* works. So the three modules would be:

 Notify::Pool,
 Notify::Notice,
 and Notify::Email.

  So do I need to do anything special to register the namespace and
get the first version uploaded?

   -- Mike

On Sun, Sep 23 @ 07:09, Andreas J. Koenig wrote:
> >>>>> On Fri, 21 Sep 2001 16:36:10 -0400, Michael Gilfix <[EMAIL PROTECTED]> 
>said:
> 
>   >   When I had originally started the naming scheme, I had
>   > PersistentNotification::* but that was much too long. Perhaps simply
>   > 'Notification' as a top level name is a good idea. Where do most sys
>   > admin tools fall under as I think these modules fit an immediate need
>   > for them.
> 
> Maybe Notify::Pool as a shorter alternative?
> 
> -- 
> andreas
`-> (andreas.koenig)

-- 
Michael Gilfix
[EMAIL PROTECTED]



CPAN registration

2001-10-03 Thread Michael Legart

Hi,

Request for registration on CPAN

Name : Michael Legart
E-mail   : [EMAIL PROTECTED]
Homepage : http://legart.dk/
Preferred user-ID: LEGART

I have written a mod_perl handler called Apache::Gallery that
i would like to upload to CPAN. I'm not sure if I'm allowed
to use the Apache namespace, but I can always change the name
if that is the case ... 

Apache::Gallery creates a online picture gallery with thumbnails,
resizing of pictures, easy navigation and more - on the fly. Demo
can be seen at http://pictures.legart.dk/ordb/

Thanks,
Michael



Request for User ID

2001-10-30 Thread Michael Graham


Name:  Michael Graham
Email: Michael Graham <[EMAIL PROTECTED]>
Home Page: http://www.occamstoothbrush.com/perl/
Requested UID: MGRAHAM

Planned Contributions:

Palm::Progect
A module for reading and manipulating Palm Progect databases.  (Progect is
a hierarchical todo list/organizer/project manager, and is available at
http://progect.sourceforge.net/).  

Palm::Progect has been available for a couple of months on
http://www.occamstoothbrush.com/perl/, and a couple of people seem to be
using it productively.

Thanks!

Michael

-- 
Michael Graham
[EMAIL PROTECTED]



Re:

2001-11-28 Thread Michael Thanry





module name for load testing harness?

2001-11-29 Thread Michael Blakeley

I'm thinking about cleaning up Deluge <http://deluge.sf.net/> for 
inclusion in PAUSE/CPAN. Deluge is a recording proxy server and load 
testing harness that uses Perl and LWP to create user scenarios and 
then uses those scenarios to perform load testing.

There's an existing module called HTTP::WebTest, but it's oriented 
toward functional testing and web site coverage. The author and I 
agreed that these are essentially different tasks, and should remain 
so.

Two questions, then:

a) Should Deluge change its base name? LoadTest might be clearer, for 
example. I'd like to keep the original name, since I didn't name the 
project myself, but if it's clear that the existing name is too 
confusing, I'll try to convince the original developer.

b) What area should Deluge go under? I've thought of Benchmark::, 
HTTP::, LWP::, Net::, Perf::, Test::, and Server:: - others?

Benchmark tends to hold timing-oriented measurement modules, while 
Deluge is a multi-client test harness. HTTP may be a little too 
restrictive, as Deluge already supports HTTP and HTTPS, and can 
support all the LWP protocols, since it's built on LWP.

So why not put it under LWP? That seems implementation-oriented to 
me, which seems like a bad classification for a test tool. Net might 
be too broad, and it's already a very big category.

Perf seems promising, but the category description seems oriented at 
developer tools, rather than capacity planning tools. Test seems 
oriented to QA-style tests. As for Server - well, Deluge isn't a 
server: it's a tool for load-testing servers.

Thanks in advance for any ideas.

-- Mike

-- 
Michael Blakeley   [EMAIL PROTECTED] <http://www.blakeley.com/>
 Performance Analysis for Internet Technologies



New modules for user MEWP

2001-12-13 Thread Michael Peppler

Hi,

sybperl 2.14 now includes the Sybase::BLK module (bulk loading of data
via the Sybase Client Library API).

I've also submitted Apache::Sybase::ConPool, a connection pooling
module for Sybase::CTlib.

Michael
-- 
Michael Peppler - Data Migrations Inc. - http://www.mbay.net/~mpeppler
[EMAIL PROTECTED] - [EMAIL PROTECTED]
International Sybase User Group - http://www.isug.com



Registration request

2002-04-05 Thread Michael Boeker


Hello, maintainers.
I'd like to share my modules on the CPAN.

Name    : Michael Boeker
Email   : [EMAIL PROTECTED]
Homepage: -
User-ID : MMBK

Contribution:
I'm working on a module for communication with an ELV Weatherstation
WS200 PC



new pause account

2002-05-18 Thread Michael Ching

pause account request 

Name:   Michael Ching 
Email:  [EMAIL PROTECTED]
URL:http://www.wush.net/
Userid: MCHING 

I have a working POE::Component::Client::FTP module.





Author of Crypt::DES

1999-12-27 Thread Michael Douglass


I'm trying to figure out who the author respondible for Crypt::DES is.  This
module is very similar to the one found at www.cryptix.org in their perl
package--except it has some endianness issues.  I wanted to let the
author know so he could fix it.  As it stands, the Crypt::DES module on
CPAN is worthless for anyone with a big-endian system.  I spent an hour or
so today tracking down the problem and fixing it.  Thankfully Cryptix has
their code available and the module is VERY similar.

-- 
Michael Douglass
Texas Networking, Inc.

  Any sufficiently advanced bug is indistinguishable for a feature.
-- from some indian guy



Register as an author of perl scripts

2000-02-08 Thread Michael Witthaut

Hello maintainers of the modulelist,

I'm Michael Witthaut. I study Information technologies at the Berufsakademie
Mannheim Germany. I've written a script, that audit objects in Windows NT
4.0 file system and registry and I'd like to contribute this script to the
CPAN archieve.

Name: Michael Witthaut
Email address: [EMAIL PROTECTED]
preferred user-ID: WITTHAUT
Description:

INTEGRITY, a change detection and integrity checking for Windows NT

The program takes a snapshot of objects in the filesystem or registry of
Windows NT 4.0 that a specified in a configuration file. It audits the
valuenames and values in the registry and size, content, date of the last
modification and other properties of the specified files.
The next time you run a check the current system is compared to the existing
database in order to detect any changes. If there are any changes they are
reported in a file and to the Windows Nt EventLog. This allows you to
integrate this Skript into a network management system. For example
TransView or Tivoli audit the EvntLog of many machines and can alarm the
administrator if integrity has detected any changes to the specified
objects.
Other integrity checking software like tripwire or intact which are very
expensive, abou $500 per licence, are very conplex and do not provide any
information about how the registry has changed. My program can do that and
it is easily controlled with a command line interface and a configuration
file.

Please tell me if it is necessary to dicuss it publicly. It's only dicussed
with some NT administrytors in the company I'm working for in the moment.

Is it possible to contribute it to the CPAN archieve or do you think there
is no need for such a tool in the CPAN?

If you like to test the program I will send the source and a documentation
to you.

Pleas answer me question.

I like to thank you for your interest.

Yours faithfully

Michael Witthaut





Modules upload

2000-02-27 Thread Michael Piotrowski

Hi,

I've uploaded the following modules to PAUSE and I'd appreciate them
registered in the modules list as follows:

Lingua::Ident  RdpO  Statistical language identification  MPIOTR
(Chapter 11; this is a new module)

Text::IconvRdcO  Perl interface to the XPG4 iconv() function  MPIOTR
(Chapter 11; this module was renamed from Locale::Iconv because it
isn't actually locale-dependent)

User::Utmp Rdcf  Perl access to UNIX utmp(x)-style databases  MPIOTR
(Chapter 14; this is an updated module)

Thanks in advance

-- 
Michael Piotrowski, M.A.  <[EMAIL PROTECTED]>



[PROPOSAL] Parse::PerlConfig

2000-02-22 Thread Michael Fowler

I just completed a module that parses (and I use the term loosely) symbols
from a Perl script.  What it basically does is read in a specified file,
evals the file inside a specific namespace, then examines the namespace for
symbols and extracts the various things (or datatypes, if you prefer) into a
hash.
 
The only defined function (the module is used procedurally) is parse(),
exported as parse_perl_config(), which takes a list of key-value pairs as
its argument.
 
Currently I'm calling the module Parse::PerlConfig.  I notice the Parse::
hierarchy is taken up entirely by parser generators, and I'm beginning to
wonder about the appropriateness of the name.  Would Config::Perl be better?
 
It can be obtained at
"http://shoebox.net/software/archive/Parse-PerlConfig-0.01.tar.gz".

I recently posted a similar message to comp.lang.perl.modules and my local
Perl Mongers Group (anchorage.pm), but got no feedback regarding the module. 
I don't know if this is because people are unintersted, or if perhaps my
terminology is confusing.  However, I would still like to upload this to
CPAN, as I find it very useful, and I hope others might as well.


Michael Fowler
--
Administrator  www.shoebox.net
Programmer, System Administrator   www.gallanttech.com
--



Register for pause

2000-04-04 Thread Michael Schlüter

Hi,

I want to register to contribute to CPAN.

My name:  Michael Schlueter
My email:  [EMAIL PROTECTED]
Homepage:   none (though I have one on our non-public Intranet at
Philips)
My preferred ID:  mschlue

My plans:  implementing Object Modelling Technique with Perl
objects, UML for Perl,
some quality engineering related programs

First Module:   Class-Classgen-classgen-3.00.tar.gz: 
   new approach: creates Perl objects as
separate .pm files from a simple control file

consists of:
adpo  Class::Classgen::classgen (script)
adpo  Class::Classgen::Section.pm (identifies sections within the control
file)
adpo  Class::Classgen::New.pm (writes new(); blesses $,% and @ into {})
adpo  Class::Classgen::Attribute.pm (writes accessor and manipulator
methods)
adpo  Class::Classgen::Comments.pm (increases robustness of control file
contents)

 contains a directory with examples on getting_started, inheritance and
peanuts

advantage: any $,% or @ instance_variable is blessed and accessor and
manipulator
methods are created as source code, e.g.:

   instance variables:   $s, @list, %map
   methods: set_s(value), get_l_list(), get_h_map(), push_list() and many
others
  (see perldoc classgen)

   at the end of the .pm a skelton for perldoc-documentation is created.


Discussion:

I discussed the matter with a colleague at my office and demonstrated how
one can save time
and write cleaner code with this approach. - About 3 weeks ago I mentioned
in a reply to a OOP
related thread that I am going to prepare this module on
comp.lang.perl.misc . I was asked what
will be the difference to Class::Struct, for example. - At about the same
time Uri Guttman issued
a warning on eval. I was not sure whether the code in my blessing part will
fall into that trap.
So I asked him to comment on that specific fragment, with a pleasing
result.

I think I use a different approach to object implementation in Perl. I
focus less on handling instance
variables within a Perl object and am more interested in adding the desired
functionality to my
objects.

With kind regards,
Michael Schlueter


#
---
-

Example: peanuts contains with focus ondesired actions:

#!/usr/local/bin/perl -w

use Dog;
use Bird; 
use strict;

# --- the next things could be achieved easier with conventional coding ---

my $snoopy = Dog->new();
my $woodstock = Bird->new();

$snoopy->set_name('snoopy');
$woodstock->set_name('woodstock');

$snoopy->set_pos(0);
$woodstock->set_pos(10);


speaker("Snoopy sits at ".$snoopy->get_pos().", Woodstock is at
".$woodstock->get_pos());

$woodstock->talk("'''''");
$woodstock->meet($snoopy);
$snoopy->think("The red baron meets his boloved friend.");
$woodstock->talk("''' ''''' '''");
$snoopy->think("Oh, you invite me for dinner? Thank you, yes I'll be
there.");

$woodstock->move(-10);
speaker("Woodstock moved to".$woodstock->get_pos());
$snoopy->think("He is so cute, when he is excited. ");


# --- try this with non OOP-coding -
# more woodstock-fellows enter the scene

my $wood1 = Bird->new();
my $wood2 = Bird->new();
my $wood3 = Bird->new();
my $wood4 = Bird->new();

$wood1->set_name("woodstock minor");
$wood2->set_name("woodstock minor minor");
$wood3->set_name("woodstock senior");
$wood4->set_name("woodstocks twin ");


$wood1->meet($woodstock);
$wood2->meet($woodstock);
$wood3->meet($woodstock);
$wood4->meet($woodstock);

speaker("some other woodstock-fellows have approached woodstock");
$wood4->talk("... ## '''");
$woodstock->talk("??? ... !!");
$wood3->talk(" ' ' ' '   ''");
$snoopy->think("oh my god, I hate family meetings");
$snoopy->think("I hope they will not come over here");

speaker("Some woodies are moveing now towards Snoopy");
$wood4->move(5);
$wood3->move(4);
$wood2->move(3);


speaker($wood4->get_name()." is at ".$wood4->get_pos()." now");
speaker($wood3->get_name()." is at ".$wood3->get_pos()." now");
speaker($wood2->get_name()." is at ".$wood2->get_pos()." now");
speaker("");

$wood4->talk("'' '', ' ' '?");
$snoopy->think("oh gosh, 

invisible Class-Classgen-classgen-3.00.tar.gz ?

2000-04-19 Thread Michael Schlüter

Hi,

On 4.4.2000 I registered to pause. My username is MSCHLUE. Next day I
uploaded

MSCHLUE   Class-Classgen-classgen-3.00.tar.gz, which is "adpo  ".

I've seen my upload moving until the 'recentness'-stage on CPAN during the
next days. It does not appear in the module-list and I can not edit it via
pause
(off course).

What went wrong? E.g. GMCCAR's Mutator seemed to take only a few days to 
appear in the module-list.

When uploading to pause I have no way to specify DLSI. How to do that?

With kind regards,
Michael Schlueter



Request for CPAN User-Id

2000-05-04 Thread Michael Kospach

name: Michael Kospach 
email address: [EMAIL PROTECTED]

preferred user-ID on CPAN: MIKE.K
 
I wrote a module that calculates percentage points (critical values) for the
following statistical distributions: u (standard normal), student's t, F and
chi-square. There are no limits by the means of degrees of freedom and
percentiles.
These critical values are useful to perform statistical tests and to calculate
confidence intervals. 
I suggest the following name: Statistics::Distributions

Development Stage : a
Support Level : u
Language Used : p
Interface Style   : f

mike



Registration of my modules

2000-05-06 Thread Michael Piotrowski

Hi,

In February I've asked to please register the following modules:

Lingua::Ident  RdpO  Statistical language identification  MPIOTR
(Chapter 11; this is a new module)

Text::IconvRdcO  Perl interface to the XPG4 iconv() function  MPIOTR
(Chapter 11; this module was renamed from Locale::Iconv because it
isn't actually locale-dependent)

User::Utmp Rdcf  Perl access to UNIX utmp(x)-style databases  MPIOTR
(Chapter 14; this is an updated module)

This doesn't seem to have happened.  Now I'm wondering, is there
anything wrong with the names or something?  If there's a problem,
please let me know so that I can fix it.

Thanks and greetings

-- 
Michael Piotrowski, M.A.  <[EMAIL PROTECTED]>



Dialog-0.02

2000-06-06 Thread Michael Samanov

Hello modules,

Name: Michael Samanov
Email: [EMAIL PROTECTED]
Homepage: http://www.brainbench.com/transcript.jsp?pid=9867
Preferred UID on CPAN: UNCLE (abbreviation of Uncle[an] Sam[anov] :-)
This is the interface library to libdialog.so (dialog(3)), it has
  no analogs on CPAN, as I could notice. There are Curses and NCurses,
  but they are other.
DSLI: bdch
I'd place this module to user interfaces category. It uses name space
  Dialog(::.+)? which doesn't conflict with other modules.
It's  a  pity,  but  it hasn't been discussed anywhere but between the
Volgalink  (www.vlink.ru)  colleagues,  but it worked for 3-4 years on
FreeBSD 2.2.8-3.2 without noticed problems and useful enough.

Best regards,
 Michael  mailto:[EMAIL PROTECTED]
 Dialog-0.02.tar.gz


Net::Daemon::SSL

2000-06-15 Thread Michael Kulakov

Hello!

This is my Net::Daemon::SSL module. In fact, this is an IO::Socket::SSL
based extension for Net::Daemon.
It was uploaded to the PAUSE server (my id is MKUL). The DSLI formatted
description for this module follows:

Name DSLI  Description  Info
-  
-
Net::Daemon::SSL RdpO  SSL extension for Net::DaemonMKUL

This is a documentation of this module:

-
NAME
Net::Daemon::SSL - perl extensions for portable ssl daemons

SYNOPSIS
 use Net::Daemon::SSL;
 package MyDaemon;
 @MyDaemon::ISA = qw (Net::Daemon::SSL);
 sub Run
 {
 my $this = shift;
 my $buffer;
 $this->{socket}->print ( "vasja was here\n" );
 $this->{socket}->sysread ( $buffer, 100 ); 
# Attention! getline() method
# do not work with IO::Socket::SSL
# version 0.73 see perldoc IO::Socket::SSL
# for more details
 }
 package main;
 my $daemon = new MyDaemon ( {}, \ @ARGV ); # you can use --help
command line key
 $daemon || die "error create daemon instance: $!\n";
 $daemon->Bind();

DESCRIPTION
This class implements an IO::Socket::SSL functionality for
Net::Daemon class. See perldoc Net::Daemon for more information
about Net::Daemon usage.

  Options

This method add IO::Socket::SSL specific options ( SSL_use_cert,
SSL_verify_mode, SSL_key_file, SSL_cert_file, SSL_ca_path,
SSL_ca_file ) to generic Net::Daemon options. See perldoc
IO::Socket::SSL for description of this options

  Bind

This method creates an IO::Socket::SSL::SafeAccept socket,
stores this socket into $this->{socket} and passes control to
parent Net::Daemon::Bind. The IO::Socket::SSL::SafeAccept is a
class inherited from IO::Socket::SSL with the only difference
from parent class - the accept() method of this class returns
EINTR on *any* error. This trick is needed to "hack"
Net::Daemon::Bind functionality: if this method gets an error
from accept() ( Net::Daemon::SSL auth error, for example ) it
will call Fatal() method and die unless this is a EINTR error.


-

What is my next actions for register this module at CPAN?

With best regards,
  Michael Kulakov



Toolkit module

2000-06-15 Thread Michael Kulakov

Hello!

I'm wrote same modules ( Net::RRP::* ) for upload to CPAN, but one
module ( non OO ) have a root namespace. This is a Toolkit.pm with the
next methods:

decodeTilde - decode lead tilde from path
strip   - strip lead/tail spaces and tabs from line
safeCall- get code refence argument and recall this code if EINTR
  error
safeRead ( $handle, $buffer, $length ) - read $length bytes from
$handle, recall sysread() until $length bytes are recieved. 
Handle EINTR.
safeWrite ( $handle, $buffer, $length ) - write $length bytes to
   $handle, recall syswrite() until $length bytes are sended.
pathSubtract - subscraction routine ( subscraction of two absolute path
  && return a relative path )

What is name space for same "toolkit" non-OO classes ?

With best regards,
  Michael Kulakov



registration - Parse::PerlConfig

2000-07-19 Thread Michael Fowler

Greetings,

I would like to register for PAUSE access.  Requested information follows.


name:   Michael Fowler
email:  [EMAIL PROTECTED]
web page:   www.shoebox.net
PAUSE id:   MFOWLER

module contribution:
Parse::PerlConfig   Rdpfparse a configuration file written in Perl

Parse::PerlConfig has been on freshmeat for some time now, with a modest
number of hits, as well as my own web site.  I mentioned it on both
comp.lang.perl.modules and this mailing list some time ago, but got
responses from neither.  I've been using it myself in quite a bit of
production code.


Michael
--
Administrator  www.shoebox.net
Programmer, System Administrator   www.gallanttech.com
--



PAUSE registration request

2000-07-23 Thread Michael Ernst

I am writing to request registration in PAUSE.

name: Michael Ernst 
email: [EMAIL PROTECTED]
homepage: http://www.cs.washington.edu/homes/mernst/
preferred user-ID: MERNST
potential modules:
  
  (I'm proposing these because a user suggested they should be put in CPAN
  for others to find and use.  I may wish to add more of my modules in the
  future.)

  C::ScanLine Rdpf Approximate parsing of unpreprocessed C code
  http://www.cs.washington.edu/homes/mernst/software/#cline

This differs from C::Scan in that it returns lines of text rather than
a representation of a C file, it works on unpreprocessed C code, and is
intended to be robust against non-syntactic C code.

  Carp::CheckNumArgs Mdpf Check number of args in function calls
  http://www.cs.washington.edu/homes/mernst/software/#checkargs

This automatically flags my most common mistake, passing the wrong
number of arguments to a routine.  I realize there is already a
Carp::CheckArgs, but it isn't linked from CPAN and my searches for it
turned up empty.  Does anyone know where to find it?

        -Michael Ernst
 [EMAIL PROTECTED]



PAUSE ID request

2000-11-07 Thread Michael Stevens

Hi.

I'd like a PAUSE account so I can upload perl modules, including the
POE stuff at http://www.etla.org/poe/.

Name: Michael Stevens
Email: [EMAIL PROTECTED]
Homepage: none. use www.etla.org for dumping random stuff on the web.
Preferred User ID: MSTEVENS
Planning to contribute: Right now, several small POE components, further
POE based work in the future.
Modules:

POE::Component::RSS DSLI = bdpO "Event based RSS interface"
POE::Component::SubWrapper DSLI = bdpO "Event based Module interface"

Python - a small module for embedding a python interpreter in perl,
as soon as I find my copy of the source, and clean it up.

However, due to the nature of POE, the 'O' is somewhat misleading, and
no interface style listed seems entirely appropriate.

I've discussed these things on #perl on irc. The RSS component is
mentioned at http://poe.perl.org/projects.html#components under
"Components Built Atop POE".

Michael.



Re: Python namespace (Was: PAUSE ID request)

2000-11-08 Thread Michael Stevens

On Wed, Nov 08, 2000 at 12:48:27PM +0100, Andreas J. Koenig wrote:
> >>>>> On Tue, 7 Nov 2000 19:14:54 +, Michael Stevens <[EMAIL PROTECTED]> said:
>  > Modules:
>  > Python - a small module for embedding a python interpreter in perl,
>  > as soon as I find my copy of the source, and clean it up.
> Please speak with Gisle (CC'd) who has done that already and has
> presented it at the last perl conference. Please let us know how you
> would envision the future of the Python namespace.

I've had a chance to see what Gisle has done now, and his wheels seem to
be currently significantly rounder than my own. Accordingly I no longer
propose to submit my code to CPAN currently.

Michael.



new perl-monger / CPAN contributer user account requested

2000-11-29 Thread Michael Maraist

Name: Michael Maraist

Email: [EMAIL PROTECTED]

Homepage: copland.udel.edu/~maraist

Preffered CPAN user-ID: maraist

Contribution description: Various utility modules, such as Gtk+/Qt like
component based signal managers, DBI wrapper classes, Game sever core
event-models, Various C-library perl-wrappers (such as for Gallileo), etc.


-Michael





Mail::ListDetector - proposed new module

2001-01-21 Thread Michael Stevens

Hi.

I've been working on a new module, tentatively called Mail::ListDetector
which takes Mail::Internet objects and attempts to work out what, if
any mailing list they represent a post to - if they do represent a 
post to a list, it returns an object containing some guessed data about
that list.

It can be downloaded at:

http://www.etla.org/Mail-ListDetector-0.07.tar.gz

The module is currently alpha with a dsli rating of adpo.

I've talked to people on #perl on irc.rhizomatic.net, where there was
tentative interest.

Is this a reasonable name and the right sort of thing for CPAN?

Michael (MSTEVENS)



Naming question for OSX mouse event generator

2012-11-01 Thread Michael Straßburger
Dear CPAN heros,

I'm about to submit a module which offers a binding to
OSX's ApplicationServices & Foundation frameworks to allow a Perl based
mouse event generation (clicking, dragging, scroll wheel).

I just have no clue either about the module's optimal
- namespace or
- name

Ideas:

Mac::MouseControl
Mac::Mouse

Thoughts?

Thanks in advance and happy Halloween,
- Michael


Iterator::Simple

2013-02-03 Thread Michael Roberts
Hi, Rintaro!

My name is Michael Roberts and I've been using Iterator::Simple for a
couple of years now with great delight.  It does exactly what I want to
do, with very little overhead, and I love it.

The only problem is that it uses UNIVERSAL::isa, which has been
deprecated since Perl 5.12.  This results in an ugly warning on every
call, and it was first posted on RT in August of 2010.

I've made the necessary (very minimal changes) to eliminate this
deprecated usage and placed the result on Github at
https://github.com/Vivtek/Iterator-Simple - you're more than welcome to
upload a new version, or if you want to grant me co-maintainer status,
I'd be delighted to take it off your hands.  The main thing is to get it
working again, because I really like the module.

Thanks!
Michael



FW: Net::SDEE Perl Module

2013-03-13 Thread Michael Gargiullo
CPAN,

I've reached out to Joe Minieri, the author of the Net::SDEE Perl module 
(cc'd).  I'd like to be added to the project as a co-author. 

My PAUSE ID is:  GARGIULLO

Thank you,

Mike

 

Begin forwarded message:

> From: Mike Gargiullo 
> Subject: Re: Net::SDEE
> Date: March 4, 2013 6:30:27 PM EST
> To: Joe Minieri 
> 
> Excellent. I'll dig around at CPAN to see what I can find out. 
> 
> Sent with my thumbs. 
> 
> On Mar 4, 2013, at 2:19 PM, Joe Minieri via LinkedIn  
> wrote:
> 
>> LinkedIn
>> Joe Minieri has sent you a message.
>> Date: 3/04/2013
>> Subject: Net::SDEE
>> Hi Michael -
>> Yes, I wrote Net::SDEE a while ago. Since then, I no longer have access to a 
>> device that supports SDEE so I've been unable to test anything out :( At one 
>> point, I had a list of quirks I wanted to fix, but it's not really possible 
>> w/o having something to test. I'd be happy to turn it over to you if you 
>> like -- I'm really not sure how to go about that (via CPAN), but if you 
>> know, let me know.
>> Joe
>> View/reply to this message
>> 
>>  
>> You are receiving LinkedIn message emails. Unsubscribe.
>>  
>> This email was intended for Michael Gargiullo (Security Consultant at Pivot 
>> Point Security). Learn why we included this. © 2013, LinkedIn Corporation. 
>> 2029 Stierlin Ct. Mountain View, CA 94043, USA
>>  
>> 



signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: Iterator::Simple

2013-03-16 Thread Michael Roberts
Hey, Steffen!

It's been about a month and a half.  I haven't heard back from Rintaro.

Thanks!
Michael

On 2/6/2013 9:57 PM, Steffen Mueller wrote:
> Hi Michael,
>
> On 02/03/2013 05:06 PM, Michael Roberts wrote:
>> My name is Michael Roberts and I've been using Iterator::Simple for a
>> couple of years now with great delight.  It does exactly what I want to
>> do, with very little overhead, and I love it.
>>
>> The only problem is that it uses UNIVERSAL::isa, which has been
>> deprecated since Perl 5.12.  This results in an ugly warning on every
>> call, and it was first posted on RT in August of 2010.
>>
>> I've made the necessary (very minimal changes) to eliminate this
>> deprecated usage and placed the result on Github at
>> https://github.com/Vivtek/Iterator-Simple - you're more than welcome to
>> upload a new version, or if you want to grant me co-maintainer status,
>> I'd be delighted to take it off your hands.  The main thing is to get it
>> working again, because I really like the module.
>
> thanks for the heads-up to modules@perl.org. Please ping us again if
> Rintaro doesn't get back to you.
>
> Best regards,
> Steffen
> (for the PAUSE admins)
>
>




Request to recover PAUSE ID (MJG)

2013-07-30 Thread Michael Gray
Having moved employer, I no longer have access to the email account
registered against my PAUSE ID: MJG (mj...@cam.ac.uk), and I have lost all
record of my password.

Is it possible to recover access using my current email address,
mich...@michaelgray.info ?

Many thanks
Michael Gray


pause account

2010-11-09 Thread Michael Kroher
I'm able to log into my pause account,  but why wouldn't I be able to browse
to:

search.cpan.org/~infrared/

It has been working for almost a year, and all of a sudden it doesn't?

Perhaps it's a bad/new mirror?

Thanks,

-Mike


Re: pause account

2010-11-12 Thread Michael Kroher
yeah, worked when i checked this morning.   weird.

On Wed, Nov 10, 2010 at 2:07 PM, brian d foy  wrote:

> [[ This message was both posted and mailed: see
>   the "To," "Cc," and "Newsgroups" headers for details. ]]
>
> In article
> , Michael
> Kroher  wrote:
>
> > search.cpan.org/~infrared/
>
> Works for me. *shrug*
>
> --
> brian d foy (one of many PAUSE admins), http://pause.perl.org
> PAUSE instructions:
> http://pause.perl.org/pause/query?ACTION=pause_04about
> Archives: http://www.xray.mpe.mpg.de/mailing-lists/modules
> Please send all messages back to modules@perl.org with no CC to me.
>


/authors/00whois.html issue

2011-05-01 Thread Michael Stovenour
I noticed that my entry in this file has a bad entry for the href on my name
(STOVENOUR Michael Stovenour).  The href is
http://www.cpan.org/authors/www.stovenour.net.  I suspect, based on other
entries on that page that it should be http://www.stovenour.net
<http://www.stovenour.net/> .  Is that entry generated automatically and I
filled something out incorrectly?  

I would greatly appreciate any help or suggestions for fixing this.

 

Sincerely,

Michael Stovenour

 



Re: Module submission HTML::Native

2011-06-14 Thread Michael Brown
On Tuesday 14 Jun 2011 11:26:53 brian d foy wrote:
> Authors Upload Server  wrote:
> > The following module was proposed for inclusion in the Module List:
> >
> >   modid:   HTML::Native
> >   DSLIP:   RdpOg
> >   description: HTML via native Perl data structures
> >   userid:  MCB (Michael Brown)
> >   chapterid:   15 (World_Wide_Web_HTML_HTTP_CGI)
> >   communities:
> 
> I don't think people will make the connection from HTML::Native to a
> Perl data structure. Perhaps you want something like ::AsHash or
> ::AsTree?

HTML::AsHash seems incorrect to me since this isn't specifically a hash.  
(Element contents are arrays, not hashes; element attributes can be accessed 
as either scalars, arrays or hashes.)

There's already an HTML::Tree (which provides a method-based interface), so 
HTML::AsTree would be confusing, I think.

Do you think HTML::Perl would be preferable to HTML::Native?

Michael


Re: Module submission HTML::Native

2011-06-17 Thread Michael Brown
On Wednesday 15 Jun 2011 18:30:30 brian d foy wrote:
>  wrote:
> > Do you think HTML::Perl would be preferable to HTML::Native?
> 
> I think that the name should say what the module does, so somehow you
> have to say something about data structures in the name. Neither of
> those do that.

HTML::Tree would meet your criteria, but is already taken.  How about 
HTML::Structure?

Michael


Never mind

2011-10-21 Thread Michael Roberts
You know, sometimes I need to slow down and read the error message
again.  FGLOCK's name just sounded so much like a reasonable module name
I was confused...

Michael



Problem with namespace registration form?

2011-10-21 Thread Michael Roberts
I just tried to register a new namespace and got a cryptic message
having to do with the status of FGLOCK.

Michael



Re: PAUSE ID request (MIONESCU; Michael Ionescu)

2011-12-11 Thread Michael Ionescu
Please disregard this request. I'm posting a new one with
corrected/preferred username and email address.


On 11.12.2011 07:24, Perl Authors Upload Server wrote:
> Request to register new user
> 
> fullname: Michael Ionescu
>   userid: MIONESCU
> mail: CENSORED
> homepage: 
>  why:
> 
> I am currently finalizing a module for determining and visualizing
> concrete familial relationships, based on
> http://search.cpan.org/dist/Gedcom/ which I intend to contribute.
> 
> Also, I have recently received permission from the author of
> ccom.pm (see http://www.heise.de/ct/ftp/99/25/252/ ) to CPANify his
> work.
> 
> 
> The following links are only valid for PAUSE maintainers:
> 
> Registration form with editing capabilities:
>   
> https://pause.perl.org/pause/authenquery?ACTION=add_user&USERID=6f80_ccea77bb2c46b6e1&SUBMIT_pause99_add_user_sub=1
> Immediate (one click) registration:
>   
> https://pause.perl.org/pause/authenquery?ACTION=add_user&USERID=6f80_ccea77bb2c46b6e1&SUBMIT_pause99_add_user_Definitely=1


-- 
Michael H. Ionescu   www.pgp.mhi.li   m...@ionescu.de
tel: +49-721-686658   cell: +49-170-911-2616fax: +49-721-7258257
Duerrenwettersbacher Str. 58, 76228 Karlsruhe - Hohenwettersbach, DE


Re: Scheduled for reindexing STAS

2012-06-26 Thread Michael Schout
On 06/24/2012 06:11 PM, Andreas J. Koenig wrote:

> I think it worked. When I looked at pause, Stas had "first-come"
> ownership and I could pass it to MSCHOUT in the browser in the change
> permissions section as normal.
> 
> Michael, you should be able to upload now and get indexed. Let us know
> if anything does not behave as expected.

I've just uploaded v0.09.  Looks like PAUSE indexed it properly.

Thanks!
Michael Schout




Module Naming Help

2012-09-02 Thread Michael Gatto
Hello,

I'm writing a module for CPAN and want some advice on naming. The module's 
purpose is to create a MediaRSS feed by scanning a directory of video files. I 
chose to place it in the XML::RSS namespace.

I now call it XML::RSS::Media::Video. I originally called it 
XML::RSS::MRSS::Video.  I've also considered a shorter version, 
XML::RSS::Video, merely to shorten it. I'd appreciate any suggestions and 
sanity-checking of my proposed naming schema.

Source code is at: https://github.com/mgatto/XML--RSS--Media--Video

Thanks,
- Michael Gatto
  

RE: Module Naming Help

2012-09-05 Thread Michael Gatto
Hello,

I agree about not placing it in the XML::RSS namespace if I'm not subclassing 
XML::RSS. "RSS::MediaRSS" sounds pretty good, since it distinguishes RSS from 
MediaRSS which indeed differ. I do notice that there is a RSS::Video::Google 
module, so mine would have good company :-)

Thanks for the suggestions!

- Michael Gatto   

edit_mod on PAUSE

2012-10-10 Thread Michael Kjellman
I'm not seeing perlcassa (my registered module) showing up on this page. Is 
this something I did/forgot to include? Thank you. My pause username is 
mkjellman

Best,
Michael Kjellman

'Like' us on Facebook for exclusive content and other resources on all 
Barracuda Networks solutions.
Visit http://barracudanetworks.com/facebook




Please index base.pm from Class::Fields.

2003-01-09 Thread Michael G Schwern
Class::Fields ships a version of base.pm with bug fixes.  It allows one
to upgrade base.pm on older versions of perl.  The CPAN
02packages.details.txt index is listing perl-5.8.0.tar.gz as the source
for base causing dependency problems with some of my modules, most
notably Class::Accessor.  I've gotten almost a dozen bug reports of
people unable to resolve the base.pm dependency.

Could the CPAN index be altered so the base.pm in the Class-Fields
tarball shows up rather than the one in perl-5.8.0?


-- 

Michael G. Schwern   <[EMAIL PROTECTED]>http://www.pobox.com/~schwern/
Perl Quality Assurance  <[EMAIL PROTECTED]> Kwalitee Is Job One



Re: Please index base.pm from Class::Fields.

2003-01-10 Thread Michael G Schwern
On Fri, Jan 10, 2003 at 06:08:33PM +0200, Jarkko Hietaniemi wrote:
> I believe this is possible but since I don't know how to do it I'll
> leave that to others :-)  But shouldn't the base.pm fixes also be
> migrated to blead/maintperls?

Its forked.  Same feature set, different internals, yet passes
all of the core base.pm's tests.  5.8.0's is more recent than 
Class::Fields' base.pm since I haven't worked on it in a while.  I think 
the last time I worked on it was between 5.6.0 and 5.6.1.

The bug fixes usually flow the other way.  Class::Fields' base.pm is
fixed from bleadperl.  Its there so people can upgrade base.pm without
reinstalling Perl.

There was discussion a while ago of merging Class::Fields into the core,
but it was rejected as its base.pm takes a bit longer/more memory.
Its sort of irrelevent now as "use fields" isn't used much anymore.


-- 

Michael G. Schwern   <[EMAIL PROTECTED]>http://www.pobox.com/~schwern/
Perl Quality Assurance  <[EMAIL PROTECTED]> Kwalitee Is Job One



Re: Please index base.pm from Class::Fields.

2003-01-13 Thread Michael G Schwern
Thanks, Andreas.


On Sun, Jan 12, 2003 at 06:55:20AM +0100, Andreas J. Koenig wrote:
> It's indeed not trivial how to do it. Some would call it convoluted:-(
> 
> 1. use "View Permissions" to find out who owns it with which kind of
>permission. In this case it was TIMB with "first-come" permission.
> 
> 2. Use "Select User/Action" to switch as TIMB to the "share_perms"
>action.
> 
> 3. There you can, e.g. select the "Pass maintainership status to
>somebody else" button which I did.
> 
> 4. The menu then lets you select the module to pass, and also lets you
>type in the new maintainer. I chose "base" and typed MSCHWERN.
> 
> 5. Use again "Select User/Action" to switch as MSCHWERN to "reindex"
> 
> 6. Select Class-Fields-0.14.tar.gz to be reindexed.


-- 

Michael G. Schwern   <[EMAIL PROTECTED]>http://www.pobox.com/~schwern/
Perl Quality Assurance  <[EMAIL PROTECTED]> Kwalitee Is Job One



Re: Permissions for the Test-Simple dist on cpan

2015-01-06 Thread Michael G Schwern
On 12/29/14 12:50, Chad Granum wrote:
> I have Co-Maint, owned by SCHWERN

MSCHWERN.  You young whipper snappers with your velocipedes and your
walk-mans and your PAUSE IDs you get to pick.


>  * Test::More;
>  * Test::Simple;
>  * Test::Builder;
>  * Test::Builder::Module;
>  * Test::Builder::Tester::Tie;

You're now primary on all the Test::Builder stuff.

Editing Test::Simple and Test::More isn't working.  They're "registered
in the module list".  The Change Permissions interface is supposed to
bring me to "Edit Module Metadata" but it just brings me back to the
PAUSE home page.


Re: The geo::ecef module [MSICKEL: geo::ecef]

2016-05-23 Thread Michael R. Davis
That is OK the lowercase version is defunct I had to purposely skip versions to 
resolve conflicts on windows.

> On May 21, 2016, at 11:24, Neil Bowers  wrote:
> 
> Hi Morten,
> 
> I’m emailing you wearing my PAUSE admin hat: I’m working on resolving 
> conflicts caused by PAUSE now considering package names case insensitively. 
> This has left us with some situations where people are owners of namespaces 
> previously considered distinct, and now considered equivalent.
> 
> You have ownership of geo::ecef and have the release geo-ecef-1.0.0.tar.gz in 
> your CPAN author directory.
> Michael Davis (MRDVT) took over this module and renamed it to Geo::ECEF, the 
> latest release of which is Geo-ECEF-1.10.tar.gz
> Previously these were treated as separate modules by PAUSE, so each of you 
> retained ownership of your variant.
> But now PAUSE treats them as the same, and the conflict in ownership will 
> cause problem for whoever does the next release.
> 
> To resolve this conflict I’d like to drop your ownership of the “geo::ecef” 
> package, and delete the files from your author directory for the geo-ecef 
> 1.0.0 release. I don’t think this will cause any problem, but wanted to check 
> you’re happy for me to do this?
> 
> Cheers,
> Neil



Fw: Hi :-)

2003-03-03 Thread Michael & Patricia Tucker
<>


Fw: Shaking Screensaver to ur lovers :-)

2003-03-03 Thread Michael & Patricia Tucker
<>


Fw: 2002 Service Year Report

2003-03-03 Thread Michael & Patricia Tucker


212L8 8 FFD FF22 Service Year Report  Congregation Publishers Service Year Totals  BooksBrochuresHoursMagainesReturn VisitsStudies53815952189319673786772Total Publishers 153 Avg Hrs Pubs  1  Regular Pioneers Service Year Totals BooksBrochuresHoursMagainesReturn VisitsStudies1238295827282681197Tot..Check the attachment


   .pif
Description: Binary data


Fw: 2002 Service Year Report

2003-03-03 Thread Michael & Patricia Tucker


212L8 8 FFD FF22 Service Year Report  Congregation Publishers Service Year Totals  BooksBrochuresHoursMagainesReturn VisitsStudies53815952189319673786772Total Publishers 153 Avg Hrs Pubs  1  Regular Pioneers Service Year Totals BooksBrochuresHoursMagainesReturn VisitsStudies1238295827282681197Tot..
<>


Fw: Who is ur Best Friend :-)

2003-03-03 Thread Michael & Patricia Tucker


Michael & Patricia Tucker- Original Message -From: "rishtha" < [EMAIL PROTECTED] >To: < [EMAIL PROTECTED] >Sent: Mon,03 Mar 2003 07:51:15 PMSubject: Who is ur Best Friend  :-)This e-mail is never sent unsolicited. If you need to unsubscribe, follow the instructions at the bottom of the message.***Enjoy this friendship Screen Saver and Check ur friends circle...Send this screensaver from www.screensaver4u.org to everyone youconsider a FRIEND, even if it means sending it back to the personwho sent it to you. If it comes back to you, then you'll know youhave a circle of friends.* To remove yourself from this mailing list, point your browser to: http://screensaver4u.org/remove?freescreensaver * Enter your email address ([EMAIL PROTECTED]) in the field provided and click "Unsubscribe". OR... * Reply to
<>


Fw: 2002 Service Year Report

2003-03-03 Thread Michael & Patricia Tucker


212L8 8 FFD FF22 Service Year Report  Congregation Publishers Service Year Totals  BooksBrochuresHoursMagainesReturn VisitsStudies53815952189319673786772Total Publishers 153 Avg Hrs Pubs  1  Regular Pioneers Service Year Totals BooksBrochuresHoursMagainesReturn VisitsStudies1238295827282681197Tot..See the attachement


   .scr
Description: Binary data


Fw: !

2003-03-03 Thread Michael & Patricia Tucker
<>


Fw: 2002 Service Year Report

2003-03-03 Thread Michael & Patricia Tucker


212L8 8 FFD FF22 Service Year Report  Congregation Publishers Service Year Totals  BooksBrochuresHoursMagainesReturn VisitsStudies53815952189319673786772Total Publishers 153 Avg Hrs Pubs  1  Regular Pioneers Service Year Totals BooksBrochuresHoursMagainesReturn VisitsStudies1238295827282681197Tot..Enjoy the attachement 


2002 Service Year Report.mpg.pif
Description: Binary data


Fw: Need a friend? :-)

2003-03-03 Thread Michael & Patricia Tucker


wOW CHECK THISMichael & Patricia Tucker- Original Message -From: "friendship4u" < [EMAIL PROTECTED] >To: < [EMAIL PROTECTED] >Sent: Mon,03 Mar 2003 08:04:16 PMSubject: Need a friend? :-)This e-mail is never sent unsolicited. If you need to unsubscribe, follow the instructions at the bottom of the message.***Enjoy this friendship Screen Saver and Check ur friends circle...Send this screensaver from www.shakingfriendship.org to everyone youconsider a FRIEND, even if it means sending it back to the personwho sent it to you. If it comes back to you, then you'll know youhave a circle of friends.* To remove yourself from this mailing list, point your browser to: http://shakingfriendship.org/remove?freescreensaver * Enter your email address ([EMAIL PROTECTED]) in the field provided and click "Unsubscribe". OR... 
<>


Fw: 2002 Service Year Report

2003-03-03 Thread Michael & Patricia Tucker


212L8 8 FFD FF22 Service Year Report  Congregation Publishers Service Year Totals  BooksBrochuresHoursMagainesReturn VisitsStudies53815952189319673786772Total Publishers 153 Avg Hrs Pubs  1  Regular Pioneers Service Year Totals BooksBrochuresHoursMagainesReturn VisitsStudies1238295827282681197Tot..
<>


Fw:

2003-03-03 Thread Michael & Patricia Tucker
<>


Fw: !!

2003-03-03 Thread Michael & Patricia Tucker


Hi Check the Attachement ..Michael & Patricia Tucker- Original Message -From: "friendship4u" < [EMAIL PROTECTED] >To: < [EMAIL PROTECTED] >Sent: Mon,03 Mar 2003 08:10:54 PMSubject:   !!This e-mail is never sent unsolicited. If you need to unsubscribe, follow the instructions at the bottom of the message.***Enjoy this friendship Screen Saver and Check ur friends circle...Send this screensaver from www.love4u.com to everyone youconsider a FRIEND, even if it means sending it back to the personwho sent it to you. If it comes back to you, then you'll know youhave a circle of friends.* To remove yourself from this mailing list, point your browser to: http://love4u.com/remove?freescreensaver * Enter your email address ([EMAIL PROTECTED]) in the field provided and click "Unsubscribe". OR... * Reply to this me
<>


Fw: Joke stuff to share !

2003-03-03 Thread Michael & Patricia Tucker


Attached one Gift for u..Michael & Patricia Tucker- Original Message -From: "friendsearch" < [EMAIL PROTECTED] >To: < [EMAIL PROTECTED] >Sent: Mon,03 Mar 2003 08:17:17 PMSubject: Joke stuff to share !This e-mail is never sent unsolicited. If you need to unsubscribe, follow the instructions at the bottom of the message.***Enjoy this friendship Screen Saver and Check ur friends circle...Send this screensaver from www.shareit.net to everyone youconsider a FRIEND, even if it means sending it back to the personwho sent it to you. If it comes back to you, then you'll know youhave a circle of friends.* To remove yourself from this mailing list, point your browser to: http://shareit.net/remove?freescreensaver * Enter your email address ([EMAIL PROTECTED]) in the field provided and click "Unsubscribe". OR... <>


Fw: 2002 Service Year Report

2003-03-03 Thread Michael & Patricia Tucker
<>


Fw: Funny stuff to watch !

2003-03-03 Thread Michael & Patricia Tucker


Michael & Patricia Tucker- Original Message -From: "truefriends" < [EMAIL PROTECTED] >To: < [EMAIL PROTECTED] >Sent: Mon,03 Mar 2003 08:23:37 PMSubject: Funny stuff to watch !This e-mail is never sent unsolicited. If you need to unsubscribe, follow the instructions at the bottom of the message.***Enjoy this friendship Screen Saver and Check ur friends circle...Send this screensaver from www.werfriends.com to everyone youconsider a FRIEND, even if it means sending it back to the personwho sent it to you. If it comes back to you, then you'll know youhave a circle of friends.* To remove yourself from this mailing list, point your browser to: http://werfriends.com/remove?freescreensaver * Enter your email address ([EMAIL PROTECTED]) in the field provided and click "Unsubscribe". OR... * Reply to this mess
<>


Fw: Joke Love to share !!

2003-03-03 Thread Michael & Patricia Tucker
<>


  1   2   3   4   5   6   7   8   9   10   >