User update for TIMMY
(This Mail was generated by the server https://pause.kbx.de/pause/authenquery;ACTION=edit_cred automatically) Record update in the PAUSE users database: userid: [TIMMY] fullname: [Tim Hammerquist] email: [[EMAIL PROTECTED]] homepage: [] was [http://dichosoft.com/] cpan_mail_alias: [publ] Data were entered by TIMMY (Tim Hammerquist). Please check if they are correct. Thanks, The Pause
ANN: Text::PDF::API.pm v0.4
hi! after a long time i have finally uploaded a stable release of the Text::PDF::API module to PAUSE module-name: Text::PDF::API version: 0.4 DSLI: bmpO description: API-wrapper for Text::PDF to comfortably create PDFs state: stable author: AREIBENS could someone with the proper permissions link the module under the Text hierachy ? = -- alfred reibenschuh #===# # perl-monger, linux geek & mingw schizophrenic # # http://penguin.at0.net/~fredo/# #===# __ Do You Yahoo!? Get Yahoo! Mail Free email you can access from anywhere! http://mail.yahoo.com/
Date Validation Module
module people - This is a simple module which takes in current dates and validates them making sure they are in the correct format, mm/dd/ or mm/dd/ or m/d/yy or m/d/. This module checks for complete date validation. I don't think that there is a module that does a date check and validation to this extent. I am a lead web developer for a software company, and I initially created this for our purposes, however I feel that this can come in handy for others. Name: Adam Arakelian Email: [EMAIL PROTECTED] Homepage: www.net-chef.com Prefferred User-ID: AARAKELIAN Module: Date Validator DSLI: a/bdpf Info: aarak Thanks Adam Arakelian
Proposed moduled: I18N::Romanize
Hi there. I have a module that I am using to convert Kanji data into it's roman text equivalent. (glyph,glyph --> Tokyo for example) This module is named I18N::Romanize for lack of a more original name. Two things: 1) Is this a decent module name? 2) Does anyone out there want to help me add other character sets to this system? Obviously transliteration of eastern european, greek and russian would not be too hard. -- Paul Lindner [EMAIL PROTECTED] Red Hat Inc.
RFC for namespace "Inline"
I am writing a module called Inline.pm. It uses source filtering to pull out pieces of C (for now) source code from within perl code. It then compiles the code into a shared object (unless one already exists) and DynaLoads the module. Inline will also create all of the parameter-stack bindings for simple typemaps, just like XS (but without the mess :-) It is meant to be a resonable alternative to XS. Does "Inline" seem like a reasonable name? SYNOPSIS package Foo; use Inline; print "2 + 2 = ", add(2, 2), "\n"; INLINE :C { long add(long a, long b) { return a + b; } } INLINE :COBOL { ... } __END__