Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/usr/bin/perl -w
use strict;
use IO::Socket::INET;
my $socket=new IO::Socket::INET->new(PeerPort=>1234,
Proto=>'udp',
PeerAddr=>'localhost');
while(1){$socket->send("this is a test")}