Short survey concerning the use of software engineering in the field of High Performance Computing

2010-08-31 Thread Markus Schmidberger
Dear Colleagues, this is a short survey (21 questions that take about 10 minutes to answer) in context of the research work for my PhD thesis and the Munich Center of Advanced Computing (Project B2). It would be very helpful, if you will take the time to answer my questions concerning the use

Make substitution output depend on buffer state

2009-01-18 Thread Markus
$3?$3." ":"").($4?$4." ":"")/e; Does anybody have an idea/hint/suggestion how to accomplish this without using the /e modifier, ie. with regex syntax only? Thanks in advance, Markus -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

LLama and camels books

2005-10-13 Thread Dion Markus
Hi all I am totaly new to Perl and programming. I am Dion Markus from the netherlands and i would like to learn perl. I have the llama and camel books but when i reached the second chapter of learning perl i went "insane" (more confused bytheway"). I didnt get the clue of all of i

Re: Dates

2005-01-06 Thread Markus Mayr
might cause errors nowadays. Read "perldoc -f localtime". Your program could be: #!/usr/bin/perl my ($sec, $min, $hour, $day, $month, $year, $weekday, $dayofyear, $isDST) = localtime(time); $year += 1900; print $year, $month, $day; __END__ Markus Mayr -- To unsubscribe, e-mail:

Re: Using variables in replacement in substitutions

2004-11-18 Thread Markus Treinen
s a lot, that worked!! I just didn't know how to interpolate $replace_with at a given time. Again, thanks, you have saved my day :-) Greets, Markus -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

Using variables in replacement in substitutions

2004-11-18 Thread Markus Treinen
appreciate any clues to my mystery :-) Thanks, Markus Treinen -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

Re: xml problem

2001-06-19 Thread Markus Peter
about XML syntax, so your input file should rather be valid XML, and not just text with some tags somewhere. -- Markus Peter - SPiN AG [EMAIL PROTECTED]

Re: ICQ Trouble

2001-06-19 Thread Markus Peter
ly should work that way - maybe ICQ filters the text out due to some other missing header? Did you try setting Type to a more exact MIME type like e.g. text/plain; charset=iso-8859-1; yet? Can you tell us the _exact_ code you use to send the message? -- Markus Peter - SPiN AG [EMAIL PROTECTED]

Re: CGI parser and stuff

2001-06-10 Thread Markus Peter
flag for warnings, so that you avoid undeclared variables. Also avoid passing unchecked input to the system or using unchecked input for filenames. There's a feature available, called tainting, which will help you locating such misbehaviour. Use the -T switch for that. And read the perlsec manpage for further information. -- Markus Peter - SPiN AG [EMAIL PROTECTED]

Re: Cannot detect environment variables

2001-06-10 Thread Markus Peter
because MYVARIABLE is not yet an environment variable, but a bash-internal variable. That's the purpose of the "export" command in bash - to export variables into the environment :-) If you did: export MYVARIABLE=astring ... it would have worked. -- Markus Peter - SPiN AG [EMAIL PROTECTED]

Re: Method interface vs Function Interface

2001-06-09 Thread Markus Peter
ed "symbol table", which then of course means consuming more memory. So it's basically suggesting you either use the object oriented interface - if available - ( Foo->foo() ) or you use fully qualified function names ( Foo::foo() ). Also, as a rule of thumb, to avoid importing functions, you can use require instead of use as this usually even avoids importing default exports. -- Markus Peter - SPiN AG [EMAIL PROTECTED]

Re: graphing modules

2001-06-08 Thread Markus Peter
ping information into it, so I cannot say anything about its usability. -- Markus Peter - SPiN AG [EMAIL PROTECTED]

Re: Doubt in understanding

2001-06-08 Thread Markus Peter
perl executables when they are installed. On some systems, perl scripts _might_ be evaluated by sh derivatives, and if that's the case, that line will try to pass control from the sh interpreter to the perl interpreter. -- Markus Peter - SPiN AG [EMAIL PROTECTED]

Re: GUI Packages

2001-06-08 Thread Markus Peter
.gz and A/AW/AWIN/PerlQt-1.06.tar.gz If you prefer console-based GUIs, have a look at Term::Stool::Widget -- Markus Peter - SPiN AG [EMAIL PROTECTED]

Re: Accessing printer functions

2001-06-07 Thread Markus Peter
nces in the past with this. The basic problem here is that you always need a programmer to change the basic templates. -- Markus Peter - SPiN AG [EMAIL PROTECTED]