Re: [SLUG] Crossword Compiler, I think finis.

2007-10-11 Thread wbennett
Again, many thanks to those who sent suggestions for a crossword compiler that would work under Linux. I'm somewhat bemused. My original search was done via Dogpile, a meta-search engine that found only arccc, the one with iffy source code. I've since abandoned Dogpile. Regards, Bill Bennett.

Re: [SLUG] CentOS

2007-10-11 Thread Blindraven
Hey! Thanks for the offer but I've also managed to get the DVD :) On 10/11/07, Morgan Storey [EMAIL PROTECTED] wrote: I am pretty sure I have Centos 5 dvd somewhere, I can burn you a copy if you would like. On 10/9/07, Antonio Candito [EMAIL PROTECTED] wrote: Ok, following up with

[SLUG] webrowsers and jre plugin

2007-10-11 Thread leei
Hi all, Thanks for all your help thus far. I am using Fedora 7 and I have Java working as lime wire is working but Java apps will not work in Firfox 2.*** and in Oprah web browsers. How do I get Java working with my web browsers. Thanks, Lee --- South

[SLUG] Aust Govt Netalert - Not for Linux

2007-10-11 Thread bill
Just received the Aust Govt booklet Netalert- protecting Australian Families OnLine. Checked out their comparison table of internet filters. (http://www.netalert.gov.au/filters/Compare_internet_content_filters.html#Comparisontable) Where The Australian Government has undertaken a detailed

Re: [SLUG] Aust Govt Netalert - Not for Linux

2007-10-11 Thread Blindraven
or maybe Linux users are considered intelligent enough not to need Govt assistance? Thats initiative, were talking about the govt here. On 10/11/07, bill [EMAIL PROTECTED] wrote: Just received the Aust Govt booklet Netalert- protecting Australian Families OnLine. Checked out their

Re: [SLUG] Perl IO::Socket question

2007-10-11 Thread Amos Shapira
On 11/10/2007, Shane Anderson [EMAIL PROTECTED] wrote: Hi, I don't believe it's IO buffering as $recv prints out fine if I don't do a chomp();, but I'll give it a shot. If the socket is in line buffering then maybe the newline at the end of $recv causes the buffer to be flushed. Try:

Re: [SLUG] webrowsers and jre plugin

2007-10-11 Thread David P
You should already have the java browser plugin if you installed the JRE, it's just a matter of pointing firefox to it, like with a symlink. Something like: ln -s $JRE_HOME/plugin/i386/ns7/libjavaplugin_oji.so /usr/lib/mozilla/plugins/libjavaplugin_oji.so If the $JRE_HOME variable doesn't exist

Re: [SLUG] Perl IO::Socket question

2007-10-11 Thread Shane Anderson
Thanks for the buffering explanation, but unfortunately it's still not working. On 11/10/2007, Amos Shapira [EMAIL PROTECTED] wrote: On 11/10/2007, Shane Anderson [EMAIL PROTECTED] wrote: Hi, I don't believe it's IO buffering as $recv prints out fine if I don't do a chomp();, but

Re: [SLUG] Perl IO::Socket question

2007-10-11 Thread Scott Ragen
$client-recv($recv, 128); chomp($recv); if (exists($commands{$recv})) { $client-send(Works! Received: $recv); } else { $client-send(Doesn't work! We received this: $recv); } } The code above doesn't print out anything for $recv, however if I remove

Re: [SLUG] webrowsers and jre plugin

2007-10-11 Thread Heracles
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 If you are using Opera as a browser you need to let it know where the java plugin is. Go to tools/preferences the press the advanced tab and click content. Here you click the plug-in options button. Then click change path then add. You can now browse

Re: [SLUG] Perl IO::Socket question

2007-10-11 Thread Shane Anderson
Hi, I've removed the if statement that checks the hash so now the code looks like this: while (my ($client, $client_address) = $server-accept()) { $client-autoflush(1); my ($port, $packed_ip) = sockaddr_in($client_address); my $client_ip = inet_ntoa($packed_ip); my $stamp =

Re: [SLUG] Perl IO::Socket question

2007-10-11 Thread Scott Ragen
Shane Anderson [EMAIL PROTECTED] wrote on 12/10/2007 09:45:02 AM: Hi, I've removed the if statement that checks the hash so now the code looks like this: while (my ($client, $client_address) = $server-accept()) { $client-autoflush(1); my ($port, $packed_ip) =

Re: [SLUG] Perl IO::Socket question

2007-10-11 Thread Shane Anderson
You're a champ Scott, works great now :) [EMAIL PROTECTED]:~$ telnet localhost Trying 127.0.0.1... Connected to localhost. Escape character is '^]'. hello Doesn't work! - hello - The command should appear before this.Connectionclosed by foreign host. Thanks, Shane On 12/10/2007, Scott