perl module for creating CLI [closed] - perl

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I wish to know is there any existing perl module which can provide the framework
to create new CLI commands ?
Thanks
Arpit

There are lots and lots of them. For example see here.
To get you started, perhaps have a look at Getopt::Long::Descriptive. Another suggesion, if you want to create command-driven applications (like git commands) is to have a look at App::Cmd.
If you're using Moose, there are modules which integrate it with the above (e.g. MooseX::Getopt and MooseX::App::Cmd) though I find the start up time quite slow.

I have used MooseX::App with success in my last project. It's a Moose based solution, and it's easy to use.
If you donĀ“t want Moose, App::Cmd is good.

Related

Whatever happened to PerlScript? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
My ActivePerl documentation has a section dedicated to this seemingly little-known technology.
I guess that the technology didn't really catch on.
A couple of questions:
where would PerlScript be useful as a drop-in replacement for an equivalent technology like VBScript?
does anyone know of any examples where businesses have employed PerlScript?
ActiveState implemented this for Microsoft IIS, allowing Perl to be used in lieu of VBScript or JScript there. My guess, therefore, is that most Microsoft shops look to Microsoft tools and hence there is limited adoption.

New or Old Non-MVC PHP Frameworks [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I know this has been asked way too many times... But I am in search of a non-mvc-based PHP framework. My only requirements are that it be stable enough, and not one that can be easily found (meaning that if it can be easily found, then I've probably already found it, and don't like it)
Any help is appreciated
Thanks!
Check out Fat Free - can be used in an MVC way or not - super flexible, but needs PHP 5.3+ to run.

NCurses and Perl, any guides? [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I need to use NCurses, with Perl. I found some very short bits of text about it but no example at all.
Is there anyone aware of any existing guide online?
Thanks!
http://metacpan.org/pod/Curses::UI::Tutorial
http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/
The examples from tldp.org are:
http://tldp.org/HOWTO/NCURSES-Programming-HOWTO/ncurses_programs/perl/
Also, from http://www.perl.com/doc/FAQs/FAQ/oldfaq-html/Q3.8.html:
For a good example of using curses
with Perl, you might want to pick up a
copy of Steven L Kunz's* perl
menus'' package (menu.pl'') via
anonymous FTP from
``ftp.iastate.edu''. It's in the
directory /pub/perl as:
menu.pl.v3.1.tar.Z
Another possibility is to use Henk
Penning's cterm package, a curses
emulation library written in perl.
cterm is actually a separate program
with which you communicate via a pipe.
It is available from ftp.cs.ruu.nl
[131.211.80.17] via anonymous ftp. in
the directory pub/PERL.

Open source js-kit/disqus like tool [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
is there any open-source and extendable tool like what js-kit/disqus provides that could be self hosted ?
Since disqus is made with django, IMHO it is relevant to suggest something similar that is made with django too. :-) From my understanding is disqus is basically a threaded commenting system. The most popular ones in django community for this is django-threaded-comments.
Take a look on Juvia
It's in Ruby and there is a demo available following the Github project readme

Scala 2D Animation library [closed]

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Can anyone recommend a good 2D animation package for Scala? I prefer something which already have some basic events handling, more like JavaFX than like processing.org.
I used piccolo2d with Scala, and it worked out nicely. Here's another thread along those lines, or visit www.piccolo2d.org for a more general introduction.
Have you look at Wiggle?
Instead of looking for something like processing, you can use processing directly. It's called SPDE and you can get it here. It's really nice.
Here are a couple of applets written in Scala using SPDE (Rosetta Clock, Starlings).
There's a nice scala api wrapper for JavaFX: http://code.google.com/p/scalafx/