-1
votes
How do you open a browser to a URL using ActivePerl on Windows?
on windows: start
on modern unixen (that is to say, those with xdg-utils installed):
xdg-open
…
-4
votes
1
vote
Is it worth learning BASH when I know Perl?
don't learn 'bash', learn sh/ksh/pdksh, its the basis of bash and knowing the basics of it instead of all the bad practices (bashisms) learning bash would teach you, would let you use any unix/posi …
-1
votes
How can I use bash syntax in Perl’s system()?
THe world outside of Linux that don't want to have to install bash to run Perl programms thanks you.
…
6
votes
What are good interactive GUI builder packages for Perl?
Echoing Chas Owens, glade is quite usable with Gtk2 in Perl. In addition, Gtk2 also supports GtkBuilder files (which you can create the the latest glade too).
The main problem with wxPerl …
0
votes
Is there a Perl module to monitor an email queue?
The Perl Email Project @ http://emailproject.perl.org/mediawiki/index.php/Main_Page has recommendations and o …
0
votes
Could anyone explain if -G in perl?
This is clearly confusion between [ (test) options and Perl -X file tests. -G is in the former (on my BSD system), but not the latter. -G is a non-posix extension and I guess Perl didn't include …
6
votes
Help with algorithm to dynamically update text display.
Use Curses, or if you need to be doing it yourself, read about the VTnnn control codes. Both of these should work on windows and on *nix terms and consoles (and Windows). You can also consult the …
1
vote
Automate open and save OpenOffice Impress format as html/jpeg using C# reflection, or perl
Use OpenOffice::OODoc, it understands the XML format of OpenOffice documents, requires no openoffice bin …
0
votes
What do you keep in your Perl toolbox?
CGI::Application::Dispatch (thus CGI::Application too)
CGI::Fast
DBIx::Class
Template Toolkit
DBD::Pg
Coro
AnyEvent::*
Gtk2::* …
0
votes
How can I map numbers to their string equivalents in Perl?
Create a lookup table in your RDBMS which maps 2 to Good and 6 to Bad. Create an INNER JOIN (or LEFT JOIN if you anticipate having values that will not match the lookup) with your SQL statement (o …
2
votes
How can I implement a RESTful API in Perl?
I would use something like CGI::Application::Dispatch, it lets me build a dispatch table with variables and REST methods, and lets you use CGI and CGI::Application modules from CPAN. E.g.:
…
2
votes
Does DBIx::Class have transparent caching?
Semi-transparently there is DBIx::Class::Cursor::Cached (from mst, like DBIC). You need to provide a Cache object to your connections or schema objects though. Seems very undocumented unfortunate …
4
votes
Is there a database access library for C and/or C++ with a similar interface to Perl’s DBI?
NVM, no odbc interface, but it is DBI like (seeing as DBI doesn't use odbc except in DBD::ODBC)
libdbi - http://libdbi.sourceforge.ne …
0
votes
Problem Passing CGI parameters to a Pop-up Window
your pseudo code should be like this:
<script language='JavaScript'>
function newPopup(pattern){
var prefix_str = "displayKB.cgi?id=";
window.open(prefix …
