From simon at wretched.demon.co.uk Fri Jul 23 13:12:43 2004 From: simon at wretched.demon.co.uk (Simon Waters) Date: Tue Aug 10 14:28:43 2004 Subject: [DCPM] [Fwd: [linuxjobs] JOB: Perl job available] Message-ID: <1090606209.30660.TMDA@email.demon.co.uk> -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Wonder if this still works? Apologies if you read the other list, or just don't want to know. - -------- Original Message -------- Subject: [linuxjobs] JOB: Perl job available Date: Fri, 23 Jul 2004 12:12:57 +0100 From: Matthew King Reply-To: Linux jobs in the UK To: Greater London Linux Users Group , linuxjobs@mailman.lug.org.uk Starting ASAP, Timeless Group require an advanced Perl programmer to develop a PostgreSQL/Apache based website. Our development environment is Debian GNU/Linux. Although a candidate with Debian experience would be prefered, other *nix experience is welcome. Demonstratable, PERL web-develpment is essential. A good understanding of Apache 2 and PostgreSQL will be a serious advantage. The potential candidate will be responsible for ensuring coding and project deadlines are met in a timely manner and will be working alongside at least one existing developer. Salary dependant upon experience and work ethic. Please contact (off-list) linux@seamlessrecruitment.com Matthew - -- GIT/CM d+(-) s++:- a-->? C++++ UL++++$ P+++>++++ L++>++++ E>++ W--$ N o? K++ w--- O-- M V? PS+>+++ PE-- Y+>++ PGP++@ t+ 5- X- R tv b+++>++++ DI++ D++ G e(*) h!>- r--- y->+++ _______________________________________________ linuxjobs mailing list linuxjobs@mailman.lug.org.uk http://mailman.lug.org.uk/mailman/listinfo/linuxjobs -----BEGIN PGP SIGNATURE----- Comment: Using GnuPG with Debian - http://enigmail.mozdev.org iD8DBQFBAVSAGFXfHI9FVgYRAp7OAJ49b8gMFihhgGckWgr5MmuqoKAsEwCeK15A +nb4wJbmbK963ZspQ66nd2E= =0SxW -----END PGP SIGNATURE----- From linux at codehelp.co.uk Thu Jul 8 16:36:10 2004 From: linux at codehelp.co.uk (Neil Williams) Date: Tue Aug 10 14:29:11 2004 Subject: [DCPM] platform independence and processes Message-ID: <200407082236.18596.linux@codehelp.co.uk> I'm using this code in a perl script to track rogue processes that just hang (due to errors in a Perl module, yes, it's Net::Z3950 again!) It runs well on GNU/Linux - what are the likely problems, if any, of using these calls on other platforms? The code is called each time the script starts, typically that will be via cron or some other scheduling tool for the appropriate OS. # kill old instances of this script that might # have crashed or hung. chdir(); if( -r 'fallbackisbn.pid' ) { open(PID,"fallbackisbn.pid"); my $oldpid = ; kill 'TERM', $oldpid; } if(!(open(PID,">fallbackisbn.pid"))) { print STDERR 'Unable to open file in home directory, exiting.\n'; exit(5); } print PID $$; close(PID); is kill a system call wrapper that is available only on Linux? Will other platforms barff or just ignore the code? -- Neil Williams ============= http://www.codehelp.co.uk/ http://www.dclug.org.uk/ http://www.isbn.org.uk/ http://sourceforge.net/projects/isbnsearch/ http://www.biglumber.com/x/web?qs=0x8801094A28BCB3E3 -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: signature Url : http://mail.pm.org/pipermail/devoncornwall-pm/attachments/20040708/e9489362/attachment.bin