Forum: Geeks' Lounge May 15th, 2008 |
| Replies: 6 Views: 5,365 What cellphone are you using?
I'm using my K800 on most of my videos and the video isn't that bad though. Maybe it's just the phone.
check this out
http://youtube.com/watch?v=i-ZTRnCE4LM |
Forum: Perl Jul 10th, 2005 |
| Replies: 18 Views: 22,049 Well if you really want to make the output stay on the screen. why not try using \r instead of \n.
On Tk, you can also use that open(STDERR,">>logfile");
and also use this line when executing your... |
Forum: Perl Jul 6th, 2005 |
| Replies: 3 Views: 35,932 I know this is an old thread. Just thought i'd add in another way, hehe!
TMTOWTDI
Anyways
#!/usr/local/bin/perl
use strict;
my $pid;
die "cant fork $!\n" unless defined($pid=fork());
... |
Forum: Perl Jul 2nd, 2005 |
| Replies: 5 Views: 5,503 Actually i did get started on the VB socket right after i posted that message. It's working fine. not that fast as it would be if it was all perl, but it works.
The VB app just handles the socket... |
Forum: Perl Jun 16th, 2005 |
| Replies: 2 Views: 4,648 not really sure what you meant by two columns. Is it seperated by a tab?
a space? Or did you mean 2 rows?
I'll put in an example for both. ;)
###.seperated by a single space.###
#example name... |
Forum: Perl Jun 14th, 2005 |
| Replies: 5 Views: 5,503 well ok. I think i tried POE and select already. And you're right. I might have to go back to the drawing boards with POE. I tried select but its nothing much more different than using fork()... |
Forum: Perl Jun 13th, 2005 |
| Replies: 5 Views: 5,503 ok thanks. I didn't know <> waits for an LF.
But i thought thats what " sysread($incoming,$byte,2)==1) " was supposed to accomplish.
Or does that only work if i use binmode() ?? *never mind i... |
Forum: Viruses, Spyware and other Nasties Jun 13th, 2005 |
| Replies: 7 Views: 14,335 the list is really too long. Just download the whole LMHOST file here
http://www.mvps.org/winhelp2002/ |
Forum: Viruses, Spyware and other Nasties Jun 13th, 2005 |
| Replies: 7 Views: 14,335 BTW, you can also copy paste this to your LMHOST.SAM file.
hosts that houses trojans and hosts that pay people to load popups deserve to be blocked.
:D
Also some of these just re-download if you... |
Forum: Perl Jun 13th, 2005 |
| Replies: 5 Views: 5,503 Hiya everyone. Just thought that maybe someone could help me out on this one.
I'm making a client on perl using IO::Socket and it works for most of my apps.
But i came upon a bit of a challenge... |