Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
193 views

Is there a way to package my unit tests with PAR or PerlApp?

I have an app that I pack into "binary" form using PerlApp for distribution. Since my clients want a simple install for their Win32 systems, this works very nicely. Now a client has decided that ...
5
votes
3answers
592 views

Where does pp (PAR) unpack add (-a) files?

This is my attempt to cut through extraneous issues raised "Why don’t my system calls work in the Perl program I wrap with pp?" I have created a simple Perl script on a linux system: ...
4
votes
1answer
557 views

Reset par to the default values at startup

Normally when I make my own plot functions, I make a construct : op <- par("mypar"=myvalue) on.exit(par(op)) which is the standard way of reverting the par to the previous values. Imagine you've ...
4
votes
1answer
80 views

How do I detect if a program is running within a PAR archive?

I'm working on a large Perl application which gets bundled with PAR, along with a bunch of support files. When the app is running within PAR, I can use PAR::read_file to get at these various files ...
4
votes
2answers
3k views

Specify Width and Height of Plot

I have a panel containing three plots. How can I use par to specify the width and height of the main panel so it is always at a fixed size?
4
votes
4answers
1k views

Why can't Perl's PAR find the loadable object for Socket.pm?

I was using PAR::Packer to package my Perl application on Cygwin and then running it on HPUX. A simple hello world works well, e.g.: pp -p hello.pl That results in a.par and then on HPUX: parl ...
3
votes
1answer
48 views

Perl PP is searching the output script inside /script/

I have a really strange problem but only when running Ubuntu ( on CentOS evertyhing is working ). I've made a script in Perl and used the Mail::IMAPClient module. When I run the following command: ...
2
votes
1answer
100 views

What is a null graphics device?

I'm reading the R help page for ?devAskNewPage (it was linked from ?par...ask). I can't understand what par(ask=F) / par(ask=T) does. What do I need to read about to understand this: If the current ...
2
votes
1answer
39 views

How to share common things among par::packer generated exe files?

I've just tried to generate *.exe files from Perl scripts by using Par::Packer, the tool works fine as expected. The situation now is I would like to distribute my Perl based application as a group ...
2
votes
2answers
115 views

PAR Packer Executable Size

I have been using PAR:Packer (pp) to create binaries for windows for a while. They have always been understandably large (around 6-8MB), recently I updated my packages (I use stawberry perl on ...
2
votes
2answers
108 views

Self Updating Exe par on Windows

I am trying to create a script that will "self update" when it detects a new version on a server. Initially the idea I had was, when a new version is detected, download the file, then starts a DOS ...
2
votes
0answers
166 views

Compiling PAR for Perl under Windows

I've downloaded PAR from http://par.perl.org/wiki/Main_Page and compiled it after reading the README file. I've used dmake-4.12-20090907 instead of nmake ('cause 1.5 does not work) from ...
2
votes
1answer
211 views

How do I run a PAR packed file in Windows Vista or Windows 7 running with higher privileges?

Does anyone know how to make a PAR packed Perl application run with higher privileges? I've read that there must be somewhere some kind of manifest file, but how should this file look like and how to ...
2
votes
3answers
820 views

Why don't my system calls work in the Perl program I wrap with pp?

I have a Perl/POE/Tk script running on Win32 ActivePerl that calls executables using system. I created an exe of the script using pp. I can unpack the exe and see the executables off the root of the ...
1
vote
1answer
70 views

How to add points to two plots parallelly ? (in R)

I am looking for ways to add points to three different plots in parallel. I have three scatter plots named s3d1, s3d2 and s3d3 in a single window layout(matrix(c(1,2,1,3),2, 2, byrow = TRUE)) ...
1
vote
1answer
92 views

Is it possible to build a single executable Perl program that will run on a variety of platforms?

I have a Perl script that I've written and can compile it using pp (PAR). I'm curious if it's possible to make a single executable that is completely portable (run on linux & windows) or do I have ...
1
vote
1answer
68 views

PHP HTML DOM to parse XML second result

I'm using simple PHP HTML DOM to parse XML, it is that there are several tags with the same values​​, how I can display only the second label?
1
vote
2answers
67 views

Perl: How do I add encoding to PAR packed archive

The following program: use Encode qw(:all); my @list = Encode->encodings(); print join("\n", @list); gives different results if I run script as .pl or as executable, created by pp.bat ...
1
vote
3answers
694 views

Why do I get “version (5.12.2) doesn't match executable version” with Perl's PAR?

When I run the following to create an executable out of my Perl script: pp -o process_target_mode_data Process_Target_Mode_Data.pl I get the following error output: Perl lib version (5.12.2) ...
1
vote
2answers
206 views

C# how to Parse stored procedure String

I have a Query string from client application. It comes with all parameters like string query="PROCS.DBO.APP_2370_ANALYST_S 'ABC' , 'TESTDATA' , 100"; In Server, I made a ...
1
vote
2answers
127 views

Why does my Perl PAR application immediately die?

This is probably a newbie question as I have just started using pp. I read the documentation on CPAN and tried to create an executable for my application. I use Camelbox and Tk on Windows XP, ...
1
vote
2answers
419 views

Can PAR Packer generate stand-alone scripts?

I'm currently using the PAR Packer (pp) to package a couple of pl scripts such that they can be copied to a machine and "just work" without my client having to muck with CPAN. Unfortunately, the PAR ...
1
vote
2answers
812 views

Trying to create a standalone app from a Perl script that uses tkx (Tcl/tk)

Here are my specs: OS X Tiger Perl 5.8 Using Tkx bundled with ActiveTcl v8.5 I've successfully created a standalone app with the above configuration using PAR/pp, but it's not a completely ...
1
vote
3answers
172 views

using par for formatting comments in code with international characters

I'm using Par (in linux) to get nice comments formatting quickly. The problem is that now I want to introduce comments that include some international characters, like áéíóú or äëïöü... The program ...
0
votes
0answers
12 views

LaTeX: giving headlines a backgroundcolor spanning across the entire typearea [migrated]

I would like to decorate my headlines (section, subsection, etc.) by adding a background color. I would like this box filled with a single solid color to span across the entire typearea. The picture ...
0
votes
1answer
80 views

R: Improving the quality of a plot with postscript output chosen

I am still learning Sweave and R. I have below a sample code that reads in a data file and plots it. I am choosing the postscript option as I like ending up with an EPS file. There are a number of ...
0
votes
4answers
142 views

How to install pp (PAR Packager)?

I have to create an exe from a Perl script. I installed ActivePerl-5.14.2.1402-MSWin32-x86-295342.msi How do I install pp?
0
votes
1answer
127 views

SAP Netweaver Application Server: how can I make developing experience comfortable?

I'm developing a web application (J2EE based) on SAP Web Application Server. I have 2 answer: 1) I have to deploy PAR file every time I want to test my JSPDynPage or portal component on this remote ...
0
votes
0answers
118 views

PAR2 lib for Java

I am searching for a PAR2 library to be used in a custom Java application. It seems the only lib available on sourceforge (JPar2) is in planning status since 2008, no update since then. Any of guys ...
0
votes
1answer
259 views

Superimpose pairs plot based on condition

*Edit:*I am sorry, but the situation could be a little bit more complex than I have shown. However, both of your scripts work, althouth the first might be not so clear for large dataset due to point ...
-1
votes
1answer
88 views

Perl hide code by compiling the script [closed]

Possible Duplicate: How can I obfuscate my Perl script to make it difficult to reverse engineer? I'm trying to run a perl script that holds my email password and I wanted to secure that ...