Search Results

0
votes

Automate firefox with python?

The languages of choice of Firefox is Javascript. Unless you have a specific requirement that requires Python, I would advice you to use that. …
1
vote

Which of these scripting languages is more appropriate for pen-testing?

All of them should be sufficient for that. Unless you need some library that is only available in one language, I'd let personal preference guide me. …
8
votes

Comparison of Python and Perl solutions to Wide Finder challenge

The better regex implementation of perl is one part of the story. That can't explain however why the perl implementation scales better. The difference become bigger with more processors. For some r …
1
vote

Parsing and generating Microsoft Office 2007 files (.docx, .xlsx, .pptx)

For xlsx documents there is Spreadsheet::WriteExcelXML. I'm not aware of an …
14
votes

Can I use named groups in a Perl regex to get the results in a hash?

Perl uses (?<NAME>pattern) to specify names captures. You have to use the %+ hash to retrieve them. $variable =~ /(?<count>\d+)/; print "Count …
27
votes

Is there a builtin “hash to string” in Perl?

use Data::Dumper; local $Data::Dumper::Terse = 1; my $str = Dumper({a => 1, b => 2, c => 3}); …
4
votes

What is a simple way to generate keywords from a text?

In Perl there's Lingua::EN::Keywords. …
5
votes

Is there a need for a “use strict” Python compiler?

Python has no true lexical scoping, so strict vars wouldn't be very sensible. It has no symbolic references AFAIK, so it has not need for strict refs. It has not barewords, so it has no need for st …
5
votes

CL-WHO-like HTML templating for other languages?

Perl's CGI module has support for something like this. use CGI ':standard'; use Lisp::Fmt print header(); print table( { -border => 1, -cellpading => 4}, loop({ below = …