Re: Upgrade from Debian 11 to Debian 12 Broke Perl.

2024-03-13 Thread Ruprecht Helms (privat)
. The tarball you will find on https://metacpan.org/pod/warnings::unused Regards, Ruprecht | On 13.03.24 13:00, Ruprecht Helms (privat) wrote: Hi, what is saying the following: perl -v   ?? Maybe the below mentioned version needs an update. In this case do the following: |sudo apt

Re: Upgrade from Debian 11 to Debian 12 Broke Perl.

2024-03-13 Thread Ruprecht Helms (privat)
Hi, what is saying the following: perl -v   ?? Maybe the below mentioned version needs an update. In this case do the following: |sudo apt update ||sudo apt install perl ||sudo apt install perl libdatetime-perl libjson-perl After that have a look at perl-packages you need ||apt-cache

Re: Tool for develop in Perl

2023-10-23 Thread Ruprecht Helms
An Alternative for VIM or Emacs is the Nano-Editor. Maybe the IDE Eclipse is able to assist you in developing perl-code. But like to use Eclipse for PHP-Developing, Handling SQL, ... you have to install a plugin to add this oppertunity. By default Eclipse is a IDE for Java-Developing.

Re: change one line in a large fine

2022-11-20 Thread Ruprecht Helms (privat)
Hi, readline will be your friend. Just have a look in the example mentioned this link: https://www.tutorialspoint.com/perl/perl_readline.htm Regards, Ruprecht Am 20.11.22 um 15:41 schrieb supp...@openmbox.net: May i ask a question about reading file? while(0){ print 'hi' } Will never

Re: How to can develop a program

2022-08-03 Thread Ruprecht Helms (privat)
First you need the roadmap of what you want to do. The other is to read one or both of the mentioned book below. Or book about beginning perl from the Oreily-Distributor. Maybe the book "Effective Perl Programming" from Joseph N. Hall can be an additional option. As mentioned in another mail

Re: How to can develop a program

2022-08-02 Thread Ruprecht Helms (privat)
Hi everybody, Am 02.08.22 um 11:16 schrieb Christian Walde: On Tue, 02 Aug 2022 10:41:36 +0200, Ruprecht Helms (privat) wrote: Am 02.08.22 um 10:07 schrieb Christian Walde: What you're describing is how to make a roadmap for the implementation of a specific program. William asked about

Re: How to can develop a program

2022-08-02 Thread Ruprecht Helms (privat)
for bigger developing-project the best thing is a roadmap, because you have to plan the steps what the thing should do. Start with a sheet of paper and a pencil and after that you can decide what programminglanguage to use and which module you want to start first. Regards, Ruprecht

Re: How to can develop a program

2022-08-01 Thread Ruprecht Helms (privat)
Hi, I know eclipse as a developingtool that is normaly used for Java-development. But this tool also have plugins for developing in PHP, for Android-Programming and maybe for development in perl or in python. Regards, Ruprecht Am 01.08.22 um 13:23 schrieb hw: I have installed eclipse on my

Re: Which distribution of PERL to use

2022-07-09 Thread Ruprecht Helms (privat)
Hi, I think the best way is to have a look in the article in the perl.com-Website. Here are descriptions of the different Perl-Versions running on windows. MacOS and Linux is also mentioned in the article. So feel free what Perl-Version you want to try and test. You will find that you

Re: Which distribution of PERL to use

2022-07-08 Thread Ruprecht Helms (privat)
Hi, Am 08.07.22 um 14:49 schrieb Christian Walde: On Fri, 08 Jul 2022 12:06:07 +0200, Ruprecht Helms (privat) wrote: what I see is that Cygwin enables to run linux on a windows-computer. That is not what it does. I don't have the time to explain it, but i recommend actually reading

Re: Which distribution of PERL to use

2022-07-08 Thread Ruprecht Helms (privat)
Hi, what I see is that Cygwin enables to run linux on a windows-computer. As mentioned the Strawberry-Perl distribution maybe an option for Windows, but I think if want to do more, it is better to change the operating system on your computer to a linux. What distibution - feel free. You can use

Re: virus detection - empty DOC or XLS with a macro

2015-10-20 Thread Ruprecht Helms
Hi, > I still haven't worked out how to check for macros yet but the text has been > sorted I think you can find out how to handle embeded macros is to produce a excelsheet, record a macro and save the whole as a new excelfile. I don't know if the vba-code is stored as a binarypart in the file.

Re: Url written in txtfile

2009-10-05 Thread Ruprecht Helms
Shawn H Corey wrote: Hi, how have I to write the printstatement to write a URL like http://www.example.com within the htmltag (a href=http://www.example.com;Linktext/a) into a textfile. Regards, Ruprecht Helms #!/usr/bin/perl use strict; use warnings; use CGI; print CGI

Re: AW: Url written in txtfile

2009-10-05 Thread Ruprecht Helms
'); you have to write to get an URL like this one: http://www.example.com/../Max_Mustermann_4711.html Such an URL is seo-optimized and that a mod_rewrite-rule produce in the .htaccess-file. Regards, Ruprecht --- Ruprecht Helms IT-Service

reconfigure perlscript for mailing with the MTA postfix

2009-10-05 Thread Ruprecht Helms
the daemon is started, but that is not the command for sending out mails using postfix. #!/usr/bin/perl -w # # Pfad zu sendmail my $mailprog = '/usr/sbin/postfix reload'; Regards, Ruprecht Helms --- Ruprecht Helms IT-Service Softwareentwicklung

Url written in txtfile

2009-10-02 Thread Ruprecht Helms
Hi, how have I to write the printstatement to write a URL like http://www.example.com within the htmltag (a href=http://www.example.com;Linktext/a) into a textfile. Regards, Ruprecht Helms -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h

Re: Url written in txtfile

2009-10-02 Thread Ruprecht Helms
, modified using the mod_rewrite for apache. Regards, Ruprecht Helms -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

variables and sql-statements within perlscripts

2009-09-28 Thread Ruprecht Helms
. Regards, Ruprecht Helms -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/

Re: some errors in databasescript

2009-09-20 Thread Ruprecht Helms
Uri Guttman wrote: RH == Ruprecht Helms rhe...@rheynmail.de writes: RH Possible I have to seperate the script into different scriptfiles for RH better finding. 100 lines is not so large script that it needs breaking up. your issue is getting a better editor that helps you

some errors in databasescript

2009-09-17 Thread Ruprecht Helms
Hi, I've written a little perlscript that should write the output of databasetables into a textfile. But unfortunately I get some syntaxerrors that a least I'm not able to reproduce. syntax error at ./statistik.pl line 73, near } or syntax error at ./statistik.pl line 82, near ) { syntax error

Re: some errors in databasescript

2009-09-17 Thread Ruprecht Helms
) = $sth1-fetchrow_array) { -- You never close this opening curly bracket. That's probably the problem. This fixed the error Missing right cury ... in line 100 Possible I have to seperate the script into different scriptfiles for better finding. Regards, Ruprecht Helms -- To unsubscribe, e-mail

Problem with little ftpscript

2007-10-04 Thread Ruprecht Helms
, Ruprecht Helms Web: http://www.rheyn.de -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: Problem with little ftpscript

2007-10-04 Thread Ruprecht Helms
Hi Jeff Can't locate object method new via package NET::FTP (perhaps you forgot to load NET::FTP?) at ./auftraege_holen.pl line 7. Hi, The correct package name is Net::FTP,see this module on cpan: http://search.cpan.org/~gbarr/libnet-1.22/Net/FTP.pm I just reinstalled the package, but

Re: parsing csv-file for inserting in database

2007-09-19 Thread Ruprecht Helms
) { pint Auftrag $Datenfelder[$i]: $Datensatz[$i]\n; $i++ } } close (Auftrag); print $Anzahl, Datensaetze geschrieben\n; Whats getting wrong? Regards, Ruprecht Helms Web: http://www.rheyn.de -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: parsing csv-file for inserting in database

2007-09-19 Thread Ruprecht Helms
Andrew Curry wrote: open(CSV,Kalkulation_Tauchsportportal.csv) || die CSV-Datei nicht gefunden\; you have \ your Ok I corrected it, now I only have an syntax-error in line 25 (split-command). In addition i am told that the part is not terminated. The actual code is: #!/usr/bin/perl

Re: parsing csv-file for inserting in database

2007-09-19 Thread Ruprecht Helms
Chas Owens wrote: On 9/19/07, Ruprecht Helms [EMAIL PROTECTED] wrote: #!/usr/bin/perl First off, you should use the strict and warnings pragmas. So the first two lines after the $! should be use strict; use warnings; ... I inserted the two commands and get now these errors. Scalar

Re: unable to use perl script with post on university wireless network

2007-09-17 Thread Ruprecht Helms
or the script should do a database-transaction or what should the script do. Regards, Ruprecht Helms - Ruprecht Helms IT-Service Softwaredevelopment Web: http://www.rheyn.de -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

parsing csv-file for inserting in database

2007-09-16 Thread Ruprecht Helms
be nice. Regards, Ruprecht Helms -- Ruprecht Helms IT-Serive Softwaredevelopment Web: http://www.rheyn.de -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/

Re: parsing csv-file for inserting in database

2007-09-16 Thread Ruprecht Helms
Hi Ken, how can I parse a csv-file where the entries are seperated with | . The scripts later should put them into a mysql-database using dbi. if it just splitting: @data = split( /\|/, $line ); I see you are working with array. The using of the for each-loop must be possible for