irc – Übersetzung – Keybot-Wörterbuch

Spacer TTN Translation Network TTN TTN Login Français English Spacer Help
Ausgangssprachen Zielsprachen
Keybot 54 Ergebnisse  www.iad-italia.it
  Emiliano Bruni WebSite ...  
21 Nick => $irc_nick,
23 Port => $irc_port,
  Emiliano Bruni WebSite ...  
6 my $irc_server = 'irc.azzurra.org';
9 my $irc_name = 'Emi, r u there?';
  Emiliano Bruni WebSite ...  
7 my $irc_port = 6667;
10 $find_user = 'emi';
  Emiliano Bruni WebSite ...  
When we are connected to IRC with client a XChat type, we see that, before being able to enter in a channel, the serveur sends us all one series of information. One of the last information is the MOTD that comes finished fromEND OF MOTD.
Dato che, se siamo dentro a questa funzione, ci possiamo tranquillamente considerare connessi al server IRC, passiamo allo step 2 del flusso del nostro programma definito sopra e andiamo ad eseguire il comando ISON (linea 32 ).
  Emiliano Bruni WebSite ...  
You are in Home page » Documentation » IRC_check, an IRC nick finder in PERL.
Sei in Home page » Documentazione » IRC_check, il trova nick per IRC
  Emiliano Bruni WebSite ...  
You are in Home page » Documentation » IRC_check, an IRC nick finder in PERL.
Sei in Home page » Documentazione » IRC_check, il trova nick per IRC
  Emiliano Bruni WebSite ...  
IRC_check, a script to check if a nick is online on IRC.
Dott. Emiliano Bruni, info/at/ebruni_dot_it
  Emiliano Bruni WebSite ...  
The only item we need on computer is a compiler Perl and then Net::IRC module. To install this module you canopen a shell and digits command
che scarica e installa automaticamente il modulo. Oppure è possibile scaricare manualmente il sorgente, decomprimerlo, compilarlo e installarlo con la procedura
  Emiliano Bruni WebSite ...  
IRC_check, a script to check if a nick is online on IRC.
Dott. Emiliano Bruni, info/at/ebruni_dot_it
  Emiliano Bruni WebSite ...  
65 $Data::Dumper::Varname = 'irc_status';
66 open(OUTPUT,">$output");
  Emiliano Bruni WebSite ...  
19 my $irc = new Net::IRC;
21 Nick => $irc_nick,
  Emiliano Bruni WebSite ...  
22 Server => $irc_server,
24 Ircname => $irc_name);
  Emiliano Bruni WebSite ...  
[root@K7 www]# tar zxvf Net-IRC-0.75.tar.gz
[root@K7 www]# perl Makefile.PL
  Emiliano Bruni WebSite ...  
8 my $irc_nick = 'emi_finder';
11 $output = '/www/ebruni.it/www/irc_status.txt';
  Emiliano Bruni WebSite ...  
6 my $irc_server = 'irc.azzurra.org';
9 my $irc_name = 'Emi, r u there?';
  Emiliano Bruni WebSite ...  
[root@K7 www]# cd Net-IRC-0.75
[root@K7 www]# make
  Emiliano Bruni WebSite ...  
29 $irc->start;
30 sub on_connect {
  Emiliano Bruni WebSite ...  
19 my $irc = new Net::IRC;
21 Nick => $irc_nick,
  Emiliano Bruni WebSite ...  
20 my $conn = $irc->newconn(
22 Server => $irc_server,
  Emiliano Bruni WebSite ...  
This would have been a banal solution, but you know, developers must always complicate their life so I asked myself if it were not possible to create something that immediately said to visitors if, in that moment, I was online and on which channel I was present. This is the genesis of this simple script, irc_check.pl and, on my website, in the right, in the section "Chatt with me", you can see the result.
Per interfacciarsi con IRC usualmente sarebbe necessario andarsi a guardare gli RFC del protocollo ossia quei documenti che definiscono gli standard di Internet e, in questo caso, le specifiche con cui un client IRC e un server IRC debbono dialogare. In realtà questo problema è risolto egregiamente dal nostro grande amico: il CPAN.
  Emiliano Bruni WebSite ...  
We are connected to IRC.
31 my $self = shift;