352
Reputation
92 views

Registered User

Name
Member for 11 months
Seen 49 mins ago
Website
Location
Age
5h
comment How can I prevent GD from running out of memory?
Or use Image::Magick?
Nov
26
comment Are there Perl GUI builders, especially for WxPerl?
For Gtk: Glade @ glade.gnome.org
Nov
24
comment What Perl module would you be lost without?
s/POE/AnyEvent/g
Nov
22
answered Is there something like Perl’s Win32::FileNotify for Linux or OS X?
Nov
18
answered BeautifulSoup.findAll() in perl
Nov
12
comment PostgreSQL, Rails and :order => problem
You can, since it is. MySQL is a bit more permissive and non-standard in what it accepts.
Nov
10
answered Implementing cross-thread/process queues in Perl
Oct
9
accepted Why opensource database like Postgresql and Mysql don’t have encrypted stored proc?
Sep
7
answered What Perl module would you be lost without?
Aug
22
answered How to acquire user and group information in Perl on Windows?
Aug
18
comment Is there an object-centric Perl ORM?
Not sure in what ways the relational mdoel is more limited than the object model. It may be less intuitive to a programmer used to object-oriented programming, but that doesn't really equate to limitation.
Aug
18
comment Is there an object-centric Perl ORM?
Gemstone is not even an RDBMS, its some smalltalk-y 'Object Database', you know, like CODASYL or MUMPS, such things get pretty tied to specific applications instead of being general databases.
Aug
18
answered Significant new inventions in computing since 1980
Aug
18
comment Significant new inventions in computing since 1980
not just smalltalk like, visual age which become eclipse, written in smalltalk.
Aug
18
answered Problem Passing CGI parameters to a Pop-up Window
Aug
18
accepted Is there a database access library for C and/or C++ with a similar interface to Perl’s DBI?
Aug
18
answered Is there a database access library for C and/or C++ with a similar interface to Perl’s DBI?
Aug
14
accepted Does DBIx::Class have transparent caching?
Aug
12
answered Does DBIx::Class have transparent caching?
Aug
11
accepted How can I implement a RESTful API in Perl?
Aug
11
answered How can I implement a RESTful API in Perl?
Aug
11
comment How can I implement a RESTful API in Perl?
If you're using apache and mod_rewrite, why even include the .pl? Also you are losing the ID. You can rewrite the URL with mod_rewrite or just create a mod_perl handler and use it to handle /dir/whatever. CGI::Application::Dispatch is a mod_perl handler, and can do rest.
Aug
8
comment How can I reference a hash with a variable name?
why is this such a common question? Where is this used|thought to be a good idea?
Aug
7
comment How can I join two hashes in Perl without using a loop?
In which case they should look at Hash::Merge on the CPAN
Aug
7
comment How can I join two hashes in Perl without using a loop?
that might be the OP's problem, they might want to merge the values of the hash, so $a{'c'} ends up being [1, 'd']
Aug
6
comment How can I enhance the look of the Perl/TK GUI under Perl 5.004?
Not sure how relevant whether it can be used with Python or not is?
Aug
5
answered How can I map numbers to their string equivalents in Perl?
Aug
3
comment Parse XML iLO response file with Perl
This isn't valid XML, is this what it really returns? Don't use a strict parser if it is since that would be an issue. from xmllint: parser error : Premature end of data in tag GET_EMBEDDED_HEALTH_DATA line 2
Jul
28
comment Which Perl session management library works well with TemplateToolkit?
I don't see what you gain with Apache::Session over CGI::Session/CGI::Application::Plugin::Session, as the advantages you describe for Apache::Session are available for CGI::Session.
Jul
28
comment Which Perl session management library works well with TemplateToolkit?
Not sure why you feel the pressure to move to Catalyst, there is nothing wrong with using CGI::Application moving forward. It is pretty close to the CGI way of doing things, with a nice set of plugins and modules to do 'modern' things. CGI::Application also has URL based dispatching with CGI::Application::Dispatch and integrates well with CGI::Session through CGI::Application::Plugin::Session (and TT through CGI::Application::Plugin::TT of course). The learning curve, memory use and startup time of Catalyst are all higher than for cgi-app.
Jul
24
comment Where can I find ‘more advanced web toolkit’ for Template Toolkit?
Exactly how would you see these working?
Jul
22
revised What do you keep in your Perl toolbox?
added a few more and gave CGI::App its due
Jul
22
comment What do you keep in your Perl toolbox?
Do not fear the CGI::Application!
Jul
22
answered What do you keep in your Perl toolbox?
Jul
19
comment What is your favorite IDE for Perl development?
you run your editor as root?
Jul
8
awarded  Guru
Jul
2
answered Automate open and save OpenOffice Impress format as html/jpeg using C# reflection, or perl
Jul
1
answered Does a varchar field’s declared size have any impact in PostgreSQL?
Jun
19
comment Perl module(s) for creating a simple Microsoft Windows GUI?
Please not Wx, that event loop is pretty limited. and the QT you linked to is the very out of date Qt2 bindings (there are not terribly polished Qt3 and Qt4 interfaces).
Jun
13
comment PostgreSQL: Select a single-row x amount of times
This is a very odd requirement, are you dealing with a legacy app that needs this format? Though, if you have control of the select statement being passed in, can't you just use a loop in your application code instead?
Jun
12
comment Defend zero-based arrays
that would be my point, different name, since 0th floor or 0 etage would be awkward, but sitting on the 3rd level you are on floor[2], so below that is floor[1] and below that is floor[0].
Jun
5
answered Web devs who have made the switch from MySQL, what postgresql features could you now not do without?