<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.linuxquestions.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Housetier</id>
	<title>LQWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.linuxquestions.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Housetier"/>
	<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/wiki/Special:Contributions/Housetier"/>
	<updated>2026-04-11T01:16:01Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.37.0</generator>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=23556</id>
		<title>XChat</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=23556"/>
		<updated>2005-04-12T02:00:36Z</updated>

		<summary type="html">&lt;p&gt;Housetier: instructions for setting up systray&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''X-Chat''' is an [[Internet Relay Chat]] (IRC) client for [[UNIX]] operating systems. X-Chat runs on most [[BSD]] and [[POSIX]] compliant operating systems, and works on [[Linux]]. A [[Windows]] client also exists as do several [[MacOS]] ports. A prominent fork for MacOS is [http://xchataqua.sourceforge.net/ X-Chat Aqua]. All versions support many [[scripting]] capabilities.&lt;br /&gt;
&lt;br /&gt;
== Basic Operation ==&lt;br /&gt;
The easiest way of connecting to a server is through the server list. X-Chat comes with a list of servers. One of the best servers related to [[Free]]/[[Open Source]] Software is irc.freenode.net[http://freenode.net].&lt;br /&gt;
&lt;br /&gt;
To connect, simply enter your desired nick and username, select a network and hit connect.&lt;br /&gt;
&lt;br /&gt;
Type '/join #xchat' to join the XChat channel, or try the name of whatever project you are interested in. [[Debian]], [[SuSE]], LTSP, [[KDE]] and [[Xine]] all have channels.&lt;br /&gt;
&lt;br /&gt;
==Scripting Xchat==&lt;br /&gt;
There are several ways of [[script]]ing in xchat. &lt;br /&gt;
&lt;br /&gt;
===Perl Scripts===&lt;br /&gt;
Most of the scripts seem to be written in [[Perl]]. Perl scripts need the Perl plugin. &lt;br /&gt;
So just put your perl.so where xchat can find it, then put your perl scripts in ~/.xchat2/ and everything should be fine :).&lt;br /&gt;
&lt;br /&gt;
Errors might occur when the plugin's version doesnt match the version of xchat.&lt;br /&gt;
&lt;br /&gt;
===TCL Scripts===&lt;br /&gt;
There are several [[Tcl]] scripts for xchat. The procedure is the same as for perl scripts: tcl.so where xchat can find it, .tcl scripts in ~/.xchat2/ and there you go. :)&lt;br /&gt;
&lt;br /&gt;
===Python Scripts===&lt;br /&gt;
Some people prefer [[python]] over perl, and many a great battles have been fought over this matter. Have xchat find the python.so, put your python script in... you guessed right! ...in ~/.xchat2/, done.&lt;br /&gt;
&lt;br /&gt;
The python xchat api doc[http://moin.conectiva.com.br/XchatPython] and some [[XchatPyScriptSamples]]&lt;br /&gt;
&lt;br /&gt;
===Ruby Scripts===&lt;br /&gt;
[[Ruby]] has gained a lot of popularity lately and there now is a [http://xchat-ruby.sourceforge.net/ ruby plugin] for xchat. You should know the deal by now... :)&lt;br /&gt;
&lt;br /&gt;
===Simple Scripts===&lt;br /&gt;
Using a language plugin you can have all the power of your preferred programming/scripting language, at the cost of having to load yet another binary. &lt;br /&gt;
&lt;br /&gt;
Then one can use scripts that do not require a plugin at all. Of course these scripts have a very limited functionality, however, they do get simple things done very easily. Functionality is limited to irc commands plus user commands plus commands introduced by [[XchatPlugins]]. &lt;br /&gt;
&lt;br /&gt;
A script of this kind will contain one command per line, without the leading &amp;quot;/&amp;quot; (or whatever you set input_command_char to). Also comments are not possible.&lt;br /&gt;
&lt;br /&gt;
For example: &amp;lt;pre&amp;gt;&lt;br /&gt;
msg nickserv identify secretpass&lt;br /&gt;
join #foo,#bar&lt;br /&gt;
join #fool foolkey&lt;br /&gt;
msg guarding-bot opme anothersecretpass&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Save this in a file and use &amp;lt;b&amp;gt;load -e &amp;lt;full path to file&amp;gt;&amp;lt;/b&amp;gt; as connection command in the server list to have xchat execute the script after connecting to that server.&lt;br /&gt;
&lt;br /&gt;
Also note that with recent versions of xchat you won't need to identify to nickserv like this anymore, the server list now has a nickserv password field.&lt;br /&gt;
&lt;br /&gt;
== Selecting an encoding ==&lt;br /&gt;
If you're using a language other than English, you might want to have another look at the server list before you connect. XChat supports a number of character sets and [[encoding]]s, and although the default, [[UTF-8]], is a very good encoding for multilingual text. But not all IRC clients support it and for the characters that are send to appear correctly on the other people's IRC clients, they have to set the exact same encoding in their client.&lt;br /&gt;
&lt;br /&gt;
To select another text encoding, simply do the following:&lt;br /&gt;
* Open the server list&lt;br /&gt;
* Check the box labeled 'Edit mode'&lt;br /&gt;
* Find the dropdown menu labeled 'Character Set'&lt;br /&gt;
* Select your encoding of choice, e.g. ISO-8859-1.&lt;br /&gt;
&lt;br /&gt;
To change your encoding while you're connected to a server, use the /charset command followed by your encoding of choice.&lt;br /&gt;
&lt;br /&gt;
Note on IRC and character encodings:&lt;br /&gt;
There is no guarantee the characters outside ASCII will work. It depends on the IRC server software (most don't do any character encoding conversion and just send the data as-is), and the other users' IRC clients (most clients use WINDOWS-1252, so characters not in ASCII will show up garbled in their client) .&lt;br /&gt;
&lt;br /&gt;
== DCC file sends ==&lt;br /&gt;
XChat can send and receive two types of [[DCC]]: Active mode and passive mode. Generally, active mode should be used, because it works with almost all clients, but if you're behind a very restrictive firewall, you could have to resort to using passive mode.&lt;br /&gt;
&lt;br /&gt;
Active mode can be used in the following way:&lt;br /&gt;
&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Passive mode is activated like this:&lt;br /&gt;
&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Options ==&lt;br /&gt;
The options in XChat are scattered about the interface a bit. While the options related to connecting are found in the server list and most other options are found under Settings&amp;amp;#8594;Preferences, some options are also available from the 'IRC' or 'Server' menus, or by right-clicking on a channel window. Additionally, all options should be accessible by typing '/set'.&lt;br /&gt;
&lt;br /&gt;
== Plugin Tweaks ==&lt;br /&gt;
Most plugins work as expected once they are loaded, others need a little tweak. These tweaks are described here.&lt;br /&gt;
&lt;br /&gt;
===Linux Systray Plugin===&lt;br /&gt;
So you downloaded and extracted it, then loaded the .so --- but why doesn't it display any icons? As described in its README you need to set up the icon path, that is the path to the images directory. &amp;quot;images&amp;quot; is to be taken literally in this case. &lt;br /&gt;
&lt;br /&gt;
Look for a directory named &amp;quot;images&amp;quot; which contains these three subdirectories: &amp;quot;GTKtray&amp;quot;, &amp;quot;Menu&amp;quot; and &amp;quot;Win32&amp;quot;. Right-click on the invisible icon in the system tray (notification area for gnome users), go to that setup thing and fill in the path up to and including the &amp;quot;images&amp;quot; directory we found above. Do '''NOT''' point it to GTKtray or so, this won't work; just &amp;quot;images&amp;quot; is fine. After saving your changes you need to restart xchat. &lt;br /&gt;
&lt;br /&gt;
That's it - it works now!&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://www.xchat.org Xchat homepage]&lt;br /&gt;
* [http://www.irchelp.org/ irchelp.org]&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User:Housetier&amp;diff=24153</id>
		<title>User:Housetier</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User:Housetier&amp;diff=24153"/>
		<updated>2005-03-31T01:27:06Z</updated>

		<summary type="html">&lt;p&gt;Housetier: remove reference to okkernoot&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Hi!=&lt;br /&gt;
&lt;br /&gt;
I am '''housetier''' and I am [http://stan.kicks-ass.net/~housetier/nrrd.de/index.html a nerd].&lt;br /&gt;
&lt;br /&gt;
Here's a (shortened, incomplete, inaccurate, maybe even unusable) list of [[Open_Source]] I use, so if you happen to have a question feel free to ask me:&lt;br /&gt;
&lt;br /&gt;
* [[X-Chat|xchat]]&lt;br /&gt;
* [[vim]]&lt;br /&gt;
* [[Firefox]]&lt;br /&gt;
* [[ROX]]&lt;br /&gt;
* [[Debian]]&lt;br /&gt;
* [[Mircryption]]&lt;br /&gt;
* [[Beep_media_player|Beep Media Player]]&lt;br /&gt;
* [[scrot]]&lt;br /&gt;
* [[MPlayer]]&lt;br /&gt;
&lt;br /&gt;
(more to come)&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=15743</id>
		<title>XChat</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=15743"/>
		<updated>2005-03-17T14:51:26Z</updated>

		<summary type="html">&lt;p&gt;Housetier: this page no longer is a stub page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''X-Chat''' is an [[Internet Relay Chat]] (IRC) client for [[UNIX]] operating systems. X-Chat runs on most [[BSD]] and [[POSIX]] compliant operating systems, and works on [[Linux]]. A [[Windows]] client also exists as do several [[MacOS]] ports. A prominent fork for MacOS is [http://xchataqua.sourceforge.net/ X-Chat Aqua]. All versions support many [[scripting]] capabilities.&lt;br /&gt;
&lt;br /&gt;
== Basic Operation ==&lt;br /&gt;
The easiest way of connecting to a server is through the server list. X-Chat comes with a list of servers. One of the best servers related to [[Free]]/[[Open Source]] Software is irc.freenode.net[http://freenode.net].&lt;br /&gt;
&lt;br /&gt;
To connect, simply enter your desired nick and username, select a network and hit connect.&lt;br /&gt;
&lt;br /&gt;
Type '/join #xchat' to join the XChat channel, or try the name of whatever project you are interested in. [[Debian]], [[SuSE]], LTSP, [[KDE]] and [[Xine]] all have channels.&lt;br /&gt;
&lt;br /&gt;
==Scripting Xchat==&lt;br /&gt;
There are several ways of [[script]]ing in xchat. &lt;br /&gt;
&lt;br /&gt;
===Perl Scripts===&lt;br /&gt;
Most of the scripts seem to be written in [[Perl]]. Perl scripts need the Perl plugin. &lt;br /&gt;
So just put your perl.so where xchat can find it, then put your perl scripts in ~/.xchat2/ and everything should be fine :).&lt;br /&gt;
&lt;br /&gt;
Errors might occur when the plugin's version doesnt match the version of xchat.&lt;br /&gt;
&lt;br /&gt;
===TCL Scripts===&lt;br /&gt;
There are several [[Tcl]] scripts for xchat. The procedure is the same as for perl scripts: tcl.so where xchat can find it, .tcl scripts in ~/.xchat2/ and there you go. :)&lt;br /&gt;
&lt;br /&gt;
===Python Scripts===&lt;br /&gt;
Some people prefer [[python]] over perl, and many a great battles have been fought over this matter. Have xchat find the python.so, put your python script in... you guessed right! ...in ~/.xchat2/, done.&lt;br /&gt;
&lt;br /&gt;
The python xchat api doc[http://moin.conectiva.com.br/XchatPython] and some [[XchatPyScriptSamples]]&lt;br /&gt;
&lt;br /&gt;
===Ruby Scripts===&lt;br /&gt;
[[Ruby]] has gained a lot of popularity lately and there now is a [http://xchat-ruby.sourceforge.net/ ruby plugin] for xchat. You should know the deal by now... :)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
(Note: [[Housetier|I]] haven't been able to make use of the plugin yet; I managed to load it but my scripts won't run. I am still looking into this as of now)&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Simple Scripts===&lt;br /&gt;
Using a language plugin you can have all the power of your preferred programming/scripting language, at the cost of having to load yet another binary. &lt;br /&gt;
&lt;br /&gt;
Then one can use scripts that do not require a plugin at all. Of course these scripts have a very limited functionality, however, they do get simple things done very easily. Functionality is limited to irc commands plus user commands plus commands introduced by [[XchatPlugins]]. &lt;br /&gt;
&lt;br /&gt;
A script of this kind will contain one command per line, without the leading &amp;quot;/&amp;quot; (or whatever you set input_command_char to). Also comments are not possible.&lt;br /&gt;
&lt;br /&gt;
For example: &amp;lt;pre&amp;gt;&lt;br /&gt;
msg nickserv identify secretpass&lt;br /&gt;
join #foo,#bar&lt;br /&gt;
join #fool foolkey&lt;br /&gt;
msg guarding-bot opme anothersecretpass&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Save this in a file and use &amp;lt;b&amp;gt;load -e &amp;lt;full path to file&amp;gt;&amp;lt;/b&amp;gt; as connection command in the server list to have xchat execute the script after connecting to that server.&lt;br /&gt;
&lt;br /&gt;
Also note that with recent versions of xchat you won't need to identify to nickserv like this anymore, the server list now has a nickserv password field.&lt;br /&gt;
&lt;br /&gt;
== Selecting an encoding ==&lt;br /&gt;
If you're using a language other than English, you might want to have another look at the server list before you connect. XChat supports a number of character sets and [[encoding]]s, and although the default, [[UTF-8]], is a very good encoding for multilingual text. But not all IRC clients support it and for the characters that are send to appear correctly on the other people's IRC clients, they have to set the exact same encoding in their client.&lt;br /&gt;
&lt;br /&gt;
To select another text encoding, simply do the following:&lt;br /&gt;
* Open the server list&lt;br /&gt;
* Check the box labeled 'Edit mode'&lt;br /&gt;
* Find the dropdown menu labeled 'Character Set'&lt;br /&gt;
* Select your encoding of choice, e.g. ISO-8859-1.&lt;br /&gt;
&lt;br /&gt;
To change your encoding while you're connected to a server, use the /charset command followed by your encoding of choice.&lt;br /&gt;
&lt;br /&gt;
Note on IRC and character encodings:&lt;br /&gt;
There is no guarantee the characters outside ASCII will work. It depends on the IRC server software (most don't do any character encoding conversion and just send the data as-is), and the other users' IRC clients (most clients use WINDOWS-1252, so characters not in ASCII will show up garbled in their client) .&lt;br /&gt;
&lt;br /&gt;
== DCC file sends ==&lt;br /&gt;
XChat can send and receive two types of [[DCC]]: Active mode and passive mode. Generally, active mode should be used, because it works with almost all clients, but if you're behind a very restrictive firewall, you could have to resort to using passive mode.&lt;br /&gt;
&lt;br /&gt;
Active mode can be used in the following way:&lt;br /&gt;
&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Passive mode is activated like this:&lt;br /&gt;
&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Options ==&lt;br /&gt;
The options in XChat are scattered about the interface a bit. While the options related to connecting are found in the server list and most other options are found under Settings&amp;amp;#8594;Preferences, some options are also available from the 'IRC' or 'Server' menus, or by right-clicking on a channel window. Additionally, all options should be accessible by typing '/set'.&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://www.xchat.org Xchat homepage]&lt;br /&gt;
* [http://www.irchelp.org/ irchelp.org]&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=15378</id>
		<title>XChat</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=15378"/>
		<updated>2005-03-17T14:46:16Z</updated>

		<summary type="html">&lt;p&gt;Housetier: command_char -&amp;gt; input_command_char&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''X-Chat''' is an [[Internet Relay Chat]] (IRC) client for [[UNIX]] operating systems. X-Chat runs on most [[BSD]] and [[POSIX]] compliant operating systems, and works on [[Linux]]. A [[Windows]] client also exists as do several [[MacOS]] ports. A prominent fork for MacOS is [http://xchataqua.sourceforge.net/ X-Chat Aqua]. All versions support many [[scripting]] capabilities.&lt;br /&gt;
&lt;br /&gt;
== Basic Operation ==&lt;br /&gt;
The easiest way of connecting to a server is through the server list. X-Chat comes with a list of servers. One of the best servers related to [[Free]]/[[Open Source]] Software is irc.freenode.net[http://freenode.net].&lt;br /&gt;
&lt;br /&gt;
To connect, simply enter your desired nick and username, select a network and hit connect.&lt;br /&gt;
&lt;br /&gt;
Type '/join #xchat' to join the XChat channel, or try the name of whatever project you are interested in. [[Debian]], [[SuSE]], LTSP, [[KDE]] and [[Xine]] all have channels.&lt;br /&gt;
&lt;br /&gt;
==Scripting Xchat==&lt;br /&gt;
There are several ways of [[script]]ing in xchat. &lt;br /&gt;
&lt;br /&gt;
===Perl Scripts===&lt;br /&gt;
Most of the scripts seem to be written in [[Perl]]. Perl scripts need the Perl plugin. &lt;br /&gt;
So just put your perl.so where xchat can find it, then put your perl scripts in ~/.xchat2/ and everything should be fine :).&lt;br /&gt;
&lt;br /&gt;
Errors might occur when the plugin's version doesnt match the version of xchat.&lt;br /&gt;
&lt;br /&gt;
===TCL Scripts===&lt;br /&gt;
There are several [[Tcl]] scripts for xchat. The procedure is the same as for perl scripts: tcl.so where xchat can find it, .tcl scripts in ~/.xchat2/ and there you go. :)&lt;br /&gt;
&lt;br /&gt;
===Python Scripts===&lt;br /&gt;
Some people prefer [[python]] over perl, and many a great battles have been fought over this matter. Have xchat find the python.so, put your python script in... you guessed right! ...in ~/.xchat2/, done.&lt;br /&gt;
&lt;br /&gt;
The python xchat api doc[http://moin.conectiva.com.br/XchatPython] and some [[XchatPyScriptSamples]]&lt;br /&gt;
&lt;br /&gt;
===Ruby Scripts===&lt;br /&gt;
[[Ruby]] has gained a lot of popularity lately and there now is a [http://xchat-ruby.sourceforge.net/ ruby plugin] for xchat. You should know the deal by now... :)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
(Note: [[Housetier|I]] haven't been able to make use of the plugin yet; I managed to load it but my scripts won't run. I am still looking into this as of now)&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Simple Scripts===&lt;br /&gt;
Using a language plugin you can have all the power of your preferred programming/scripting language, at the cost of having to load yet another binary. &lt;br /&gt;
&lt;br /&gt;
Then one can use scripts that do not require a plugin at all. Of course these scripts have a very limited functionality, however, they do get simple things done very easily. Functionality is limited to irc commands plus user commands plus commands introduced by [[XchatPlugins]]. &lt;br /&gt;
&lt;br /&gt;
A script of this kind will contain one command per line, without the leading &amp;quot;/&amp;quot; (or whatever you set input_command_char to). Also comments are not possible.&lt;br /&gt;
&lt;br /&gt;
For example: &amp;lt;pre&amp;gt;&lt;br /&gt;
msg nickserv identify secretpass&lt;br /&gt;
join #foo,#bar&lt;br /&gt;
join #fool foolkey&lt;br /&gt;
msg guarding-bot opme anothersecretpass&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Save this in a file and use &amp;lt;b&amp;gt;load -e &amp;lt;full path to file&amp;gt;&amp;lt;/b&amp;gt; as connection command in the server list to have xchat execute the script after connecting to that server.&lt;br /&gt;
&lt;br /&gt;
Also note that with recent versions of xchat you won't need to identify to nickserv like this anymore, the server list now has a nickserv password field.&lt;br /&gt;
&lt;br /&gt;
== Selecting an encoding ==&lt;br /&gt;
If you're using a language other than English, you might want to have another look at the server list before you connect. XChat supports a number of character sets and [[encoding]]s, and although the default, [[UTF-8]], is a very good encoding for multilingual text. But not all IRC clients support it and for the characters that are send to appear correctly on the other people's IRC clients, they have to set the exact same encoding in their client.&lt;br /&gt;
&lt;br /&gt;
To select another text encoding, simply do the following:&lt;br /&gt;
* Open the server list&lt;br /&gt;
* Check the box labeled 'Edit mode'&lt;br /&gt;
* Find the dropdown menu labeled 'Character Set'&lt;br /&gt;
* Select your encoding of choice, e.g. ISO-8859-1.&lt;br /&gt;
&lt;br /&gt;
To change your encoding while you're connected to a server, use the /charset command followed by your encoding of choice.&lt;br /&gt;
&lt;br /&gt;
Note on IRC and character encodings:&lt;br /&gt;
There is no guarantee the characters outside ASCII will work. It depends on the IRC server software (most don't do any character encoding conversion and just send the data as-is), and the other users' IRC clients (most clients use WINDOWS-1252, so characters not in ASCII will show up garbled in their client) .&lt;br /&gt;
&lt;br /&gt;
== DCC file sends ==&lt;br /&gt;
XChat can send and receive two types of [[DCC]]: Active mode and passive mode. Generally, active mode should be used, because it works with almost all clients, but if you're behind a very restrictive firewall, you could have to resort to using passive mode.&lt;br /&gt;
&lt;br /&gt;
Active mode can be used in the following way:&lt;br /&gt;
&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Passive mode is activated like this:&lt;br /&gt;
&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Options ==&lt;br /&gt;
The options in XChat are scattered about the interface a bit. While the options related to connecting are found in the server list and most other options are found under Settings&amp;amp;#8594;Preferences, some options are also available from the 'IRC' or 'Server' menus, or by right-clicking on a channel window. Additionally, all options should be accessible by typing '/set'.&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://www.xchat.org Xchat homepage]&lt;br /&gt;
* [http://www.irchelp.org/ irchelp.org]&lt;br /&gt;
&lt;br /&gt;
{{stub}}&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=15377</id>
		<title>XChat</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=15377"/>
		<updated>2005-02-21T22:52:28Z</updated>

		<summary type="html">&lt;p&gt;Housetier: /* Simple Scripts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''X-Chat''' is an [[Internet Relay Chat]] (IRC) client for [[UNIX]] operating systems. X-Chat runs on most [[BSD]] and [[POSIX]] compliant operating systems, and works on [[Linux]]. A [[Windows]] client also exists as do several [[MacOS]] ports. A prominent fork for MacOS is [http://xchataqua.sourceforge.net/ X-Chat Aqua]. All versions support many [[scripting]] capabilities.&lt;br /&gt;
&lt;br /&gt;
== Basic Operation ==&lt;br /&gt;
The easiest way of connecting to a server is through the server list. X-Chat comes with a list of servers. One of the best servers related to [[Free]]/[[Open Source]] Software is irc.freenode.net[http://freenode.net].&lt;br /&gt;
&lt;br /&gt;
To connect, simply enter your desired nick and username, select a network and hit connect.&lt;br /&gt;
&lt;br /&gt;
Type '/join #xchat' to join the XChat channel, or try the name of whatever project you are interested in. [[Debian]], [[SuSE]], LTSP, [[KDE]] and [[Xine]] all have channels.&lt;br /&gt;
&lt;br /&gt;
==Scripting Xchat==&lt;br /&gt;
There are several ways of [[script]]ing in xchat. &lt;br /&gt;
&lt;br /&gt;
===Perl Scripts===&lt;br /&gt;
Most of the scripts seem to be written in [[Perl]]. Perl scripts need the Perl plugin. &lt;br /&gt;
So just put your perl.so where xchat can find it, then put your perl scripts in ~/.xchat2/ and everything should be fine :).&lt;br /&gt;
&lt;br /&gt;
Errors might occur when the plugin's version doesnt match the version of xchat.&lt;br /&gt;
&lt;br /&gt;
===TCL Scripts===&lt;br /&gt;
There are several [[Tcl]] scripts for xchat. The procedure is the same as for perl scripts: tcl.so where xchat can find it, .tcl scripts in ~/.xchat2/ and there you go. :)&lt;br /&gt;
&lt;br /&gt;
===Python Scripts===&lt;br /&gt;
Some people prefer [[python]] over perl, and many a great battles have been fought over this matter. Have xchat find the python.so, put your python script in... you guessed right! ...in ~/.xchat2/, done.&lt;br /&gt;
&lt;br /&gt;
The python xchat api doc[http://moin.conectiva.com.br/XchatPython] and some [[XchatPyScriptSamples]]&lt;br /&gt;
&lt;br /&gt;
===Ruby Scripts===&lt;br /&gt;
[[Ruby]] has gained a lot of popularity lately and there now is a [http://xchat-ruby.sourceforge.net/ ruby plugin] for xchat. You should know the deal by now... :)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
(Note: [[Housetier|I]] haven't been able to make use of the plugin yet; I managed to load it but my scripts won't run. I am still looking into this as of now)&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Simple Scripts===&lt;br /&gt;
Using a language plugin you can have all the power of your preferred programming/scripting language, at the cost of having to load yet another binary. &lt;br /&gt;
&lt;br /&gt;
Then one can use scripts that do not require a plugin at all. Of course these scripts have a very limited functionality, however, they do get simple things done very easily. Functionality is limited to irc commands plus user commands plus commands introduced by [[XchatPlugins]]. &lt;br /&gt;
&lt;br /&gt;
A script of this kind will contain one command per line, without the leading &amp;quot;/&amp;quot; (or whatever you set command_char to). Also comments are not possible.&lt;br /&gt;
&lt;br /&gt;
For example: &amp;lt;pre&amp;gt;&lt;br /&gt;
msg nickserv identify secretpass&lt;br /&gt;
join #foo,#bar&lt;br /&gt;
join #fool foolkey&lt;br /&gt;
msg guarding-bot opme anothersecretpass&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Save this in a file and use &amp;lt;b&amp;gt;load -e &amp;lt;full path to file&amp;gt;&amp;lt;/b&amp;gt; as connection command in the server list to have xchat execute the script after connecting to that server.&lt;br /&gt;
&lt;br /&gt;
Also note that with recent versions of xchat you won't need to identify to nickserv like this anymore, the server list now has a nickserv password field.&lt;br /&gt;
&lt;br /&gt;
== Selecting an encoding ==&lt;br /&gt;
If you're using a language other than English, you might want to have another look at the server list before you connect. XChat supports a number of character sets and [[encoding]]s, and although the default, [[UTF-8]], is a very good encoding for multilingual text. But not all IRC clients support it and for the characters that are send to appear correctly on the other people's IRC clients, they have to set the exact same encoding in their client.&lt;br /&gt;
&lt;br /&gt;
To select another text encoding, simply do the following:&lt;br /&gt;
* Open the server list&lt;br /&gt;
* Check the box labeled 'Edit mode'&lt;br /&gt;
* Find the dropdown menu labeled 'Character Set'&lt;br /&gt;
* Select your encoding of choice, e.g. ISO-8859-1.&lt;br /&gt;
&lt;br /&gt;
To change your encoding while you're connected to a server, use the /charset command followed by your encoding of choice.&lt;br /&gt;
&lt;br /&gt;
Note on IRC and character encodings:&lt;br /&gt;
There is no guarantee the characters outside ASCII will work. It depends on the IRC server software (most don't do any character encoding conversion and just send the data as-is), and the other users' IRC clients (most clients use WINDOWS-1252, so characters not in ASCII will show up garbled in their client) .&lt;br /&gt;
&lt;br /&gt;
== DCC file sends ==&lt;br /&gt;
XChat can send and receive two types of [[DCC]]: Active mode and passive mode. Generally, active mode should be used, because it works with almost all clients, but if you're behind a very restrictive firewall, you could have to resort to using passive mode.&lt;br /&gt;
&lt;br /&gt;
Active mode can be used in the following way:&lt;br /&gt;
&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Passive mode is activated like this:&lt;br /&gt;
&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Options ==&lt;br /&gt;
The options in XChat are scattered about the interface a bit. While the options related to connecting are found in the server list and most other options are found under Settings&amp;amp;#8594;Preferences, some options are also available from the 'IRC' or 'Server' menus, or by right-clicking on a channel window. Additionally, all options should be accessible by typing '/set'.&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://www.xchat.org Xchat homepage]&lt;br /&gt;
* [http://www.irchelp.org/ irchelp.org]&lt;br /&gt;
&lt;br /&gt;
{{stub}}&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=14808</id>
		<title>XChat</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=14808"/>
		<updated>2004-12-03T23:13:56Z</updated>

		<summary type="html">&lt;p&gt;Housetier: clarification of when the connection command is executed&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''X-Chat''' is an [[Internet Relay Chat]] (IRC) client for [[UNIX]] operating systems. X-Chat runs on most [[BSD]] and [[POSIX]] compliant operating systems, and works on [[Linux]]. A [[Windows]] client also exists as do several [[MacOS]] ports. A prominent fork for MacOS is [http://xchataqua.sourceforge.net/ X-Chat Aqua]. All versions support many [[scripting]] capabilities.&lt;br /&gt;
&lt;br /&gt;
== Basic Operation ==&lt;br /&gt;
The easiest way of connecting to a server is through the server list. X-Chat comes with a list of servers. One of the best servers related to [[Free]]/[[Open Source]] Software is irc.freenode.net[http://freenode.net].&lt;br /&gt;
&lt;br /&gt;
To connect, simply enter your desired nick and username, select a network and hit connect.&lt;br /&gt;
&lt;br /&gt;
Type '/join #xchat' to join the XChat channel, or try the name of whatever project you are interested in. [[Debian]], [[SuSE]], LTSP, [[KDE]] and [[Xine]] all have channels.&lt;br /&gt;
&lt;br /&gt;
==Scripting Xchat==&lt;br /&gt;
There are several ways of [[script]]ing in xchat. &lt;br /&gt;
&lt;br /&gt;
===Perl Scripts===&lt;br /&gt;
Most of the scripts seem to be written in [[Perl]]. Perl scripts need the Perl plugin. &lt;br /&gt;
So just put your perl.so where xchat can find it, then put your perl scripts in ~/.xchat2/ and everything should be fine :).&lt;br /&gt;
&lt;br /&gt;
Errors might occur when the plugin's version doesnt match the version of xchat.&lt;br /&gt;
&lt;br /&gt;
===TCL Scripts===&lt;br /&gt;
There are several [[Tcl]] scripts for xchat. The procedure is the same as for perl scripts: tcl.so where xchat can find it, .tcl scripts in ~/.xchat2/ and there you go. :)&lt;br /&gt;
&lt;br /&gt;
===Python Scripts===&lt;br /&gt;
Some people prefer [[python]] over perl, and many a great battles have been fought over this matter. Have xchat find the python.so, put your python script in... you guessed right! ...in ~/.xchat2/, done.&lt;br /&gt;
&lt;br /&gt;
===Ruby Scripts===&lt;br /&gt;
[[Ruby]] has gained a lot of popularity lately and there now is a [http://xchat-ruby.sourceforge.net/ ruby plugin] for xchat. You should know the deal by now... :)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
(Note: [[Housetier|I]] haven't been able to make use of the plugin yet; I managed to load it but my scripts won't run. I am still looking into this as of now)&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Simple Scripts===&lt;br /&gt;
Using a language plugin you can have all the power of your preferred programming/scripting language, at the cost of having to load yet another binary. &lt;br /&gt;
&lt;br /&gt;
Then one can use scripts that do not require a plugin at all. Of course these scripts have a very limited functionality, however, they do get simple things done very easily. Functionality is limited to irc commands plus user commands plus commands introduced by [[XchatPlugins]]. &lt;br /&gt;
&lt;br /&gt;
A script of this kind will contain one command per line, without the leading &amp;quot;/&amp;quot; (or whatever you set command_char to). Also comments are not possible.&lt;br /&gt;
&lt;br /&gt;
For example: &amp;lt;pre&amp;gt;&lt;br /&gt;
msg nickserv identify secretpass&lt;br /&gt;
join #foo,#bar&lt;br /&gt;
join #fool foolkey&lt;br /&gt;
msg guarding-bot opme anothersecretpass&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Save this in a file and use &amp;lt;b&amp;gt;load -e &amp;lt;full path to file&amp;gt;&amp;lt;/b&amp;gt; as connection command in the server list to have xchat execute the script after connecting to that server.&lt;br /&gt;
&lt;br /&gt;
== Selecting an encoding ==&lt;br /&gt;
If you're using a language other than English, you might want to have another look at the server list before you connect. XChat supports a number of character sets and [[encoding]]s, and although the default, [[UTF-8]], is a very good encoding for multilingual text. But not all IRC clients support it and for the characters that are send to appear correctly on the other people's IRC clients, they have to set the exact same encoding in their client.&lt;br /&gt;
&lt;br /&gt;
To select another text encoding, simply do the following:&lt;br /&gt;
* Open the server list&lt;br /&gt;
* Check the box labeled 'Edit mode'&lt;br /&gt;
* Find the dropdown menu labeled 'Character Set'&lt;br /&gt;
* Select your encoding of choice, e.g. ISO-8859-1.&lt;br /&gt;
&lt;br /&gt;
To change your encoding while you're connected to a server, use the /charset command followed by your encoding of choice.&lt;br /&gt;
&lt;br /&gt;
Note on IRC and character encodings:&lt;br /&gt;
There is no guarantee the characters outside ASCII will work. It depends on the IRC server software (most don't do any character encoding conversion and just send the data as-is), and the other users' IRC clients (most clients use WINDOWS-1252, so characters not in ASCII will show up garbled in their client) .&lt;br /&gt;
&lt;br /&gt;
== DCC file sends ==&lt;br /&gt;
XChat can send and receive two types of [[DCC]]: Active mode and passive mode. Generally, active mode should be used, because it works with almost all clients, but if you're behind a very restrictive firewall, you could have to resort to using passive mode.&lt;br /&gt;
&lt;br /&gt;
Active mode can be used in the following way:&lt;br /&gt;
&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Passive mode is activated like this:&lt;br /&gt;
&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Options ==&lt;br /&gt;
The options in XChat are scattered about the interface a bit. While the options related to connecting are found in the server list and most other options are found under Settings&amp;amp;#8594;Preferences, some options are also available from the 'IRC' or 'Server' menus, or by right-clicking on a channel window. Additionally, all options should be accessible by typing '/set'.&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://www.xchat.org Xchat homepage]&lt;br /&gt;
* [http://www.irchelp.org/ irchelp.org]&lt;br /&gt;
&lt;br /&gt;
{{stub}}&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=12770</id>
		<title>XChat</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=12770"/>
		<updated>2004-09-07T13:39:01Z</updated>

		<summary type="html">&lt;p&gt;Housetier: fixed formatting&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''X-Chat''' is an [[Internet Relay Chat]] (IRC) client for [[UNIX]] operating systems. X-Chat runs on most [[BSD]] and [[POSIX]] compliant operating systems, and works on [[Linux]]. A [[Windows]] client also exists as do several [[MacOS]] ports. A prominent fork for MacOS is [http://xchataqua.sourceforge.net/ X-Chat Aqua]. All versions support many [[scripting]] capabilities.&lt;br /&gt;
&lt;br /&gt;
== Basic Operation ==&lt;br /&gt;
The easiest way of connecting to a server is through the server list. X-Chat comes with a list of servers. One of the best servers related to [[Free]]/[[Open Source]] Software is irc.freenode.net[http://freenode.net].&lt;br /&gt;
&lt;br /&gt;
To connect, simply enter your desired nick and username, select a network and hit connect.&lt;br /&gt;
&lt;br /&gt;
Type '/join #xchat' to join the XChat channel, or try the name of whatever project you are interested in. [[Debian]], [[SuSE]], LTSP, [[KDE]] and [[Xine]] all have channels.&lt;br /&gt;
&lt;br /&gt;
==Scripting Xchat==&lt;br /&gt;
There are several ways of [[script]]ing in xchat. &lt;br /&gt;
&lt;br /&gt;
===Perl Scripts===&lt;br /&gt;
Most of the scripts seem to be written in [[Perl]]. Perl scripts need the Perl plugin. &lt;br /&gt;
So just put your perl.so where xchat can find it, then put your perl scripts in ~/.xchat2/ and everything should be fine :).&lt;br /&gt;
&lt;br /&gt;
Errors might occur when the plugin's version doesnt match the version of xchat.&lt;br /&gt;
&lt;br /&gt;
===TCL Scripts===&lt;br /&gt;
There are several [[Tcl]] scripts for xchat. The procedure is the same as for perl scripts: tcl.so where xchat can find it, .tcl scripts in ~/.xchat2/ and there you go. :)&lt;br /&gt;
&lt;br /&gt;
===Python Scripts===&lt;br /&gt;
Some people prefer [[python]] over perl, and many a great battles have been fought over this matter. Have xchat find the python.so, put your python script in... you guessed right! ...in ~/.xchat2/, done.&lt;br /&gt;
&lt;br /&gt;
===Ruby Scripts===&lt;br /&gt;
[[Ruby]] has gained a lot of popularity lately and there now is a [http://xchat-ruby.sourceforge.net/ ruby plugin] for xchat. You should know the deal by now... :)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
(Note: [[Housetier|I]] haven't been able to make use of the plugin yet; I managed to load it but my scripts won't run. I am still looking into this as of now)&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Simple Scripts===&lt;br /&gt;
Using a language plugin you can have all the power of your preferred programming/scripting language, at the cost of having to load yet another binary. &lt;br /&gt;
&lt;br /&gt;
Then one can use scripts that do not require a plugin at all. Of course these scripts have a very limited functionality, however, they do get simple things done very easily. Functionality is limited to irc commands plus user commands plus commands introduced by [[XchatPlugins]]. &lt;br /&gt;
&lt;br /&gt;
A script of this kind will contain one command per line, without the leading &amp;quot;/&amp;quot; (or whatever you set command_char to). Also comments are not possible.&lt;br /&gt;
&lt;br /&gt;
For example: &amp;lt;pre&amp;gt;&lt;br /&gt;
msg nickserv identify secretpass&lt;br /&gt;
join #foo,#bar&lt;br /&gt;
join #fool foolkey&lt;br /&gt;
msg guarding-bot opme anothersecretpass&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Save this in a file and use &amp;lt;b&amp;gt;load -e &amp;lt;full path to file&amp;gt;&amp;lt;/b&amp;gt; as connection command in the server list to have xchat execute the script at startup.&lt;br /&gt;
&lt;br /&gt;
== Selecting an encoding ==&lt;br /&gt;
If you're using a language other than English, you might want to have another look at the server list before you connect. XChat supports a number of character sets and [[encoding]]s, and although the default, [[UTF-8]], is a very good encoding for multilingual text. But not all IRC clients support it and for the characters that are send to appear correctly on the other people's IRC clients, they have to set the exact same encoding in their client.&lt;br /&gt;
&lt;br /&gt;
To select another text encoding, simply do the following:&lt;br /&gt;
* Open the server list&lt;br /&gt;
* Check the box labeled 'Edit mode'&lt;br /&gt;
* Find the dropdown menu labeled 'Character Set'&lt;br /&gt;
* Select your encoding of choice, e.g. ISO-8859-1.&lt;br /&gt;
&lt;br /&gt;
To change your encoding while you're connected to a server, use the /charset command followed by your encoding of choice.&lt;br /&gt;
&lt;br /&gt;
Note on IRC and character encodings:&lt;br /&gt;
There is no guarantee the characters outside ASCII will work. It depends on the IRC server software (most don't do any character encoding conversion and just send the data as-is), and the other users' IRC clients (most clients use WINDOWS-1252, so characters not in ASCII will show up garbled in their client) .&lt;br /&gt;
&lt;br /&gt;
== DCC file sends ==&lt;br /&gt;
XChat can send and receive two types of [[DCC]]: Active mode and passive mode. Generally, active mode should be used, because it works with almost all clients, but if you're behind a very restrictive firewall, you could have to resort to using passive mode.&lt;br /&gt;
&lt;br /&gt;
Active mode can be used in the following way:&lt;br /&gt;
&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Passive mode is activated like this:&lt;br /&gt;
&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Options ==&lt;br /&gt;
The options in XChat are scattered about the interface a bit. While the options related to connecting are found in the server list and most other options are found under Settings&amp;amp;#8594;Preferences, some options are also available from the 'IRC' or 'Server' menus, or by right-clicking on a channel window. Additionally, all options should be accessible by typing '/set'.&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://www.xchat.org Xchat homepage]&lt;br /&gt;
* [http://www.irchelp.org/ irchelp.org]&lt;br /&gt;
&lt;br /&gt;
{{msg:stub}}&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User:Housetier&amp;diff=15606</id>
		<title>User:Housetier</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User:Housetier&amp;diff=15606"/>
		<updated>2004-08-19T20:59:44Z</updated>

		<summary type="html">&lt;p&gt;Housetier: disliking nautilus&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Hi!=&lt;br /&gt;
&lt;br /&gt;
I am '''housetier''' and I am [http://stan.kicks-ass.net/~housetier/nrrd.de/index.html a nerd].&lt;br /&gt;
&lt;br /&gt;
Here's a (shortened, incomplete, inaccurate, maybe even unusable) list of [[Open_Source]] I use, so if you happen to have a question feel free to ask me:&lt;br /&gt;
&lt;br /&gt;
* [[X-Chat|xchat]] and [[xchat-gnome]]&lt;br /&gt;
* [[vim]]&lt;br /&gt;
* [[Firefox]]&lt;br /&gt;
* [[ROX]]&lt;br /&gt;
* [[GNOME]], but NOT nautilus! I don't like it, I don't use it&lt;br /&gt;
* [[Debian]]&lt;br /&gt;
* [[Mircryption]]&lt;br /&gt;
* [[Beep_media_player|Beep Media Player]]&lt;br /&gt;
* [[scrot]]&lt;br /&gt;
* [http://ktd.sytes.net/?q=node/view/8 songer]&lt;br /&gt;
* [[MPlayer]]&lt;br /&gt;
&lt;br /&gt;
(more to come)&lt;br /&gt;
&lt;br /&gt;
Now get your favorite IRC client up and '''/join #breaks''' on '''irc.okkernoot.net''' and look out for '''housetier''' (of course!)&lt;br /&gt;
&lt;br /&gt;
[http://housetier.kicks-ass.net/ Go Here.]&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User:Housetier&amp;diff=11114</id>
		<title>User:Housetier</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User:Housetier&amp;diff=11114"/>
		<updated>2004-08-19T20:54:45Z</updated>

		<summary type="html">&lt;p&gt;Housetier: updated list of progs&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Hi!=&lt;br /&gt;
&lt;br /&gt;
I am '''housetier''' and I am [http://stan.kicks-ass.net/~housetier/nrrd.de/index.html a nerd].&lt;br /&gt;
&lt;br /&gt;
Here's a (shortened, incomplete, inaccurate, maybe even unusable) list of [[Open_Source]] I use, so if you happen to have a question feel free to ask me:&lt;br /&gt;
&lt;br /&gt;
* [[X-Chat|xchat]] and [[xchat-gnome]]&lt;br /&gt;
* [[vim]]&lt;br /&gt;
* [[Firefox]]&lt;br /&gt;
* [[ROX]]&lt;br /&gt;
* [[GNOME]]&lt;br /&gt;
* [[Debian]]&lt;br /&gt;
* [[Mircryption]]&lt;br /&gt;
* [[Beep_media_player|Beep Media Player]]&lt;br /&gt;
* [[scrot]]&lt;br /&gt;
* [http://ktd.sytes.net/?q=node/view/8 songer]&lt;br /&gt;
* [[MPlayer]]&lt;br /&gt;
&lt;br /&gt;
(more to come)&lt;br /&gt;
&lt;br /&gt;
Now get your favorite IRC client up and '''/join #breaks''' on '''irc.okkernoot.net''' and look out for '''housetier''' (of course!)&lt;br /&gt;
&lt;br /&gt;
[http://housetier.kicks-ass.net/ Go Here.]&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User:Housetier&amp;diff=11113</id>
		<title>User:Housetier</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User:Housetier&amp;diff=11113"/>
		<updated>2004-07-29T13:31:36Z</updated>

		<summary type="html">&lt;p&gt;Housetier: =Hi!=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Hi!=&lt;br /&gt;
&lt;br /&gt;
I am '''housetier''' and I am [http://stan.kicks-ass.net/~housetier/nrrd.de/index.html a nerd].&lt;br /&gt;
&lt;br /&gt;
Here's a (shortened, incomplete, inaccurate, maybe even unusable) list of [[Open_Source]] I use, so if you happen to have a question feel free to ask me:&lt;br /&gt;
&lt;br /&gt;
* [[X-Chat|xchat]] and [[xchat-gnome]]&lt;br /&gt;
* [[vim]]&lt;br /&gt;
* [[Firefox]]&lt;br /&gt;
* [[ROX]]&lt;br /&gt;
* [[GNOME]]&lt;br /&gt;
* [[Debian]]&lt;br /&gt;
* [[Mircryption]]&lt;br /&gt;
* [[Beep_media_player|Beep Media Player]]&lt;br /&gt;
* [[scrot]]&lt;br /&gt;
* [[Gaim]]&lt;br /&gt;
* [[Thunderbird]]&lt;br /&gt;
* [http://ktd.sytes.net/?q=node/view/8 songer]&lt;br /&gt;
* [[MPlayer]]&lt;br /&gt;
&lt;br /&gt;
(more to come)&lt;br /&gt;
&lt;br /&gt;
Now get your favorite IRC client up and '''/join #breaks''' on '''irc.okkernoot.net''' and look out for '''housetier''' (of course!)&lt;br /&gt;
&lt;br /&gt;
Have a peaceful day! :)&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=11757</id>
		<title>XChat</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=11757"/>
		<updated>2004-07-22T18:00:23Z</updated>

		<summary type="html">&lt;p&gt;Housetier: formatted the &amp;quot;simple scripts&amp;quot; paragraph differently&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''X-Chat''' is an [[Internet Relay Chat]] (IRC) client for [[UNIX]] operating systems. X-Chat runs on most [[BSD]] and [[POSIX]] compliant operating systems, and works on [[Linux]]. A [[Windows]] client also exists as do several [[MacOS]] ports. A prominent fork for MacOS is [http://xchataqua.sourceforge.net/ X-Chat Aqua]. All versions support many [[scripting]] capabilities.&lt;br /&gt;
&lt;br /&gt;
== Basic Operation ==&lt;br /&gt;
The easiest way of connecting to a server is through the server list. X-Chat comes with a list of servers. One of the best servers related to [[Free]]/[[Open Source]] Software is irc.freenode.net[http://freenode.net].&lt;br /&gt;
&lt;br /&gt;
To connect, simply enter your desired nick and username, select a network and hit connect.&lt;br /&gt;
&lt;br /&gt;
Type '/join #xchat' to join the XChat channel, or try the name of whatever project you are interested in. [[Debian]], [[SuSE]], LTSP, [[KDE]] and [[Xine]] all have channels.&lt;br /&gt;
&lt;br /&gt;
==Scripting Xchat==&lt;br /&gt;
There are several ways of [[script]]ing in xchat. &lt;br /&gt;
&lt;br /&gt;
===Perl Scripts===&lt;br /&gt;
Most of the scripts seem to be written in [[Perl]]. Perl scripts need the Perl plugin. &lt;br /&gt;
So just put your perl.so where xchat can find it, then put your perl scripts in ~/.xchat2/ and everything should be fine :).&lt;br /&gt;
&lt;br /&gt;
Errors might occur when the plugin's version doesnt match the version of xchat.&lt;br /&gt;
&lt;br /&gt;
===TCL Scripts===&lt;br /&gt;
There are several [[Tcl]] scripts for xchat. The procedure is the same as for perl scripts: tcl.so where xchat can find it, .tcl scripts in ~/.xchat2/ and there you go. :)&lt;br /&gt;
&lt;br /&gt;
===Python Scripts===&lt;br /&gt;
Some people prefer [[python]] over perl, and many a great battles have been fought over this matter. Have xchat find the python.so, put your python script in... you guessed right! ...in ~/.xchat2/, done.&lt;br /&gt;
&lt;br /&gt;
===Ruby Scripts===&lt;br /&gt;
[[Ruby]] has gained a lot of popularity lately and there now is a [http://xchat-ruby.sourceforge.net/ ruby plugin] for xchat. You should know the deal by now... :)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
(Note: [[Housetier|I]] haven't been able to make use of the plugin yet; I managed to load it but my scripts won't run. I am still looking into this as of now)&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Simple Scripts===&lt;br /&gt;
Using a language plugin you can have all the power of your preferred programming/scripting language, at the cost of having to load yet another binary. Then one can use scripts that do not require a plugin at all. Of course these scripts have a very limited functionality, however, they do get simple things done very easily. Functionality is limited to irc commands plus user commands plus commands introduced by [[XchatPlugins]]. &lt;br /&gt;
&lt;br /&gt;
A script of this kind will contain one command per line, without the leading &amp;quot;/&amp;quot; (or whatever you set command_char to). Also comments are not possible.&lt;br /&gt;
&lt;br /&gt;
For example: &amp;lt;pre&amp;gt;&lt;br /&gt;
msg nickserv identify secretpass&lt;br /&gt;
join #foo,#bar&lt;br /&gt;
join #fool foolkey&amp;lt;/pre&amp;gt;&lt;br /&gt;
msg guarding-bot opme anothersecretpass&lt;br /&gt;
&lt;br /&gt;
Save this in a file and use &amp;lt;b&amp;gt;load -e &amp;lt;full path to file&amp;gt;&amp;lt;/b&amp;gt; as connection command in the server list to have xchat execute the script at startup.&lt;br /&gt;
&lt;br /&gt;
== Selecting an encoding ==&lt;br /&gt;
If you're using a language other than English, you might want to have another look at the server list before you connect. XChat supports a number of character sets and [[encoding]]s, and although the default, [[UTF-8]], is a very good encoding for multilingual text. But not all IRC clients support it and for the characters that are send to appear correctly on the other people's IRC clients, they have to set the exact same encoding in their client.&lt;br /&gt;
&lt;br /&gt;
To select another text encoding, simply do the following:&lt;br /&gt;
* Open the server list&lt;br /&gt;
* Check the box labeled 'Edit mode'&lt;br /&gt;
* Find the dropdown menu labeled 'Character Set'&lt;br /&gt;
* Select your encoding of choice, e.g. ISO-8859-1.&lt;br /&gt;
&lt;br /&gt;
To change your encoding while you're connected to a server, use the /charset command followed by your encoding of choice.&lt;br /&gt;
&lt;br /&gt;
Note on IRC and character encodings:&lt;br /&gt;
There is no guarantee the characters outside ASCII will work. It depends on the IRC server software (most don't do any character encoding conversion and just send the data as-is), and the other users' IRC clients (most clients use WINDOWS-1252, so characters not in ASCII will show up garbled in their client) .&lt;br /&gt;
&lt;br /&gt;
== DCC file sends ==&lt;br /&gt;
XChat can send and receive two types of [[DCC]]: Active mode and passive mode. Generally, active mode should be used, because it works with almost all clients, but if you're behind a very restrictive firewall, you could have to resort to using passive mode.&lt;br /&gt;
&lt;br /&gt;
Active mode can be used in the following way:&lt;br /&gt;
&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Passive mode is activated like this:&lt;br /&gt;
&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Options ==&lt;br /&gt;
The options in XChat are scattered about the interface a bit. While the options related to connecting are found in the server list and most other options are found under Settings&amp;amp;#8594;Preferences, some options are also available from the 'IRC' or 'Server' menus, or by right-clicking on a channel window. Additionally, all options should be accessible by typing '/set'.&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://www.xchat.org Xchat homepage]&lt;br /&gt;
* [http://www.irchelp.org/ irchelp.org]&lt;br /&gt;
&lt;br /&gt;
{{msg:stub}}&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=10456</id>
		<title>XChat</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=10456"/>
		<updated>2004-07-07T20:27:24Z</updated>

		<summary type="html">&lt;p&gt;Housetier: changed example so it majes more sense&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''X-Chat''' is an [[Internet Relay Chat]] (IRC) client for [[UNIX]] operating systems. X-Chat runs on most [[BSD]] and [[POSIX]] compliant operating systems, and works on [[Linux]]. A [[Windows]] client also exists as do several [[MacOS]] ports. A prominent fork for MacOS is [http://xchataqua.sourceforge.net/ X-Chat Aqua]. All versions support many [[scripting]] capabilities.&lt;br /&gt;
&lt;br /&gt;
== Basic Operation ==&lt;br /&gt;
The easiest way of connecting to a server is through the server list. X-Chat comes with a list of servers. One of the best servers related to [[Free]]/[[Open Source]] Software is irc.freenode.net[http://freenode.net].&lt;br /&gt;
&lt;br /&gt;
To connect, simply enter your desired nick and username, select a network and hit connect.&lt;br /&gt;
&lt;br /&gt;
Type '/join #xchat' to join the XChat channel, or try the name of whatever project you are interested in. [[Debian]], [[SuSE]], LTSP, [[KDE]] and [[Xine]] all have channels.&lt;br /&gt;
&lt;br /&gt;
==Scripting Xchat==&lt;br /&gt;
There are several ways of [[script]]ing in xchat. &lt;br /&gt;
&lt;br /&gt;
===Perl Scripts===&lt;br /&gt;
Most of the scripts seem to be written in [[Perl]]. Perl scripts need the Perl plugin. &lt;br /&gt;
So just put your perl.so where xchat can find it, then put your perl scripts in ~/.xchat2/ and everything should be fine :).&lt;br /&gt;
&lt;br /&gt;
Errors might occur when the plugin's version doesnt match the version of xchat.&lt;br /&gt;
&lt;br /&gt;
===TCL Scripts===&lt;br /&gt;
There are several [[Tcl]] scripts for xchat. The procedure is the same as for perl scripts: tcl.so where xchat can find it, .tcl scripts in ~/.xchat2/ and there you go. :)&lt;br /&gt;
&lt;br /&gt;
===Python Scripts===&lt;br /&gt;
Some people prefer [[python]] over perl, and many a great battles have been fought over this matter. Have xchat find the python.so, put your python script in... you guessed right! ...in ~/.xchat2/, done.&lt;br /&gt;
&lt;br /&gt;
===Ruby Scripts===&lt;br /&gt;
[[Ruby]] has gained a lot of popularity lately and there now is a [http://xchat-ruby.sourceforge.net/ ruby plugin] for xchat. You should know the deal by now... :)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
(Note: [[Housetier|I]] haven't been able to make use of the plugin yet; I managed to load it but my scripts won't run. I am still looking into this as of now)&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Simple Scripts===&lt;br /&gt;
Using a language plugin you can have all the power of your preferred programming/scripting language, at the cost of having to load yet another binary.&lt;br /&gt;
&lt;br /&gt;
Then one can use scripts that do not require a plugin at all. Of course these scripts have a very limited functionality, however, they do get simple things done very easily. Functionality is limited to irc commands plus user commands plus commands introduced by [[XchatPlugins]]. A script of this kind will contain one command per line, without the leading &amp;quot;/&amp;quot; (or whatever you set command_char to). Also comments are not possible.&lt;br /&gt;
&lt;br /&gt;
For example: &amp;lt;pre&amp;gt;&lt;br /&gt;
msg nickserv identify secretpass&lt;br /&gt;
join #foo,#bar&lt;br /&gt;
join #fool foolkey&amp;lt;/pre&amp;gt;&lt;br /&gt;
msg guarding-bot opme anothersecretpass&lt;br /&gt;
&lt;br /&gt;
Save this in a file and use &amp;lt;b&amp;gt;load -e &amp;lt;full path to file&amp;gt;&amp;lt;/b&amp;gt; as connection command in the server list to have xchat execute the script at startup.&lt;br /&gt;
&lt;br /&gt;
== Selecting an encoding ==&lt;br /&gt;
If you're using a language other than English, you might want to have another look at the server list before you connect. XChat supports a number of character sets and [[encoding]]s, and although the default, [[UTF-8]], is a very good encoding for multilingual text. But not all IRC clients support it and for the characters that are send to appear correctly on the other people's IRC clients, they have to set the exact same encoding in their client.&lt;br /&gt;
&lt;br /&gt;
To select another text encoding, simply do the following:&lt;br /&gt;
* Open the server list&lt;br /&gt;
* Check the box labeled 'Edit mode'&lt;br /&gt;
* Find the dropdown menu labeled 'Character Set'&lt;br /&gt;
* Select your encoding of choice, e.g. ISO-8859-1.&lt;br /&gt;
&lt;br /&gt;
To change your encoding while you're connected to a server, use the /charset command followed by your encoding of choice.&lt;br /&gt;
&lt;br /&gt;
Note on IRC and character encodings:&lt;br /&gt;
There is no guarantee the characters outside ASCII will work. It depends on the IRC server software (most don't do any character encoding conversion and just send the data as-is), and the other users' IRC clients (most clients use WINDOWS-1252, so characters not in ASCII will show up garbled in their client) .&lt;br /&gt;
&lt;br /&gt;
== DCC file sends ==&lt;br /&gt;
XChat can send and receive two types of [[DCC]]: Active mode and passive mode. Generally, active mode should be used, because it works with almost all clients, but if you're behind a very restrictive firewall, you could have to resort to using passive mode.&lt;br /&gt;
&lt;br /&gt;
Active mode can be used in the following way:&lt;br /&gt;
&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Passive mode is activated like this:&lt;br /&gt;
&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Options ==&lt;br /&gt;
The options in XChat are scattered about the interface a bit. While the options related to connecting are found in the server list and most other options are found under Settings&amp;amp;#8594;Preferences, some options are also available from the 'IRC' or 'Server' menus, or by right-clicking on a channel window. Additionally, all options should be accessible by typing '/set'.&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://www.xchat.org Xchat homepage]&lt;br /&gt;
* [http://www.irchelp.org/ irchelp.org]&lt;br /&gt;
&lt;br /&gt;
{{msg:stub}}&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=10096</id>
		<title>XChat</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=10096"/>
		<updated>2004-07-07T20:20:56Z</updated>

		<summary type="html">&lt;p&gt;Housetier: added example for a simple script&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''X-Chat''' is an [[Internet Relay Chat]] (IRC) client for [[UNIX]] operating systems. X-Chat runs on most [[BSD]] and [[POSIX]] compliant operating systems, and works on [[Linux]]. A [[Windows]] client also exists as do several [[MacOS]] ports. A prominent fork for MacOS is [http://xchataqua.sourceforge.net/ X-Chat Aqua]. All versions support many [[scripting]] capabilities.&lt;br /&gt;
&lt;br /&gt;
== Basic Operation ==&lt;br /&gt;
The easiest way of connecting to a server is through the server list. X-Chat comes with a list of servers. One of the best servers related to [[Free]]/[[Open Source]] Software is irc.freenode.net[http://freenode.net].&lt;br /&gt;
&lt;br /&gt;
To connect, simply enter your desired nick and username, select a network and hit connect.&lt;br /&gt;
&lt;br /&gt;
Type '/join #xchat' to join the XChat channel, or try the name of whatever project you are interested in. [[Debian]], [[SuSE]], LTSP, [[KDE]] and [[Xine]] all have channels.&lt;br /&gt;
&lt;br /&gt;
==Scripting Xchat==&lt;br /&gt;
There are several ways of [[script]]ing in xchat. &lt;br /&gt;
&lt;br /&gt;
===Perl Scripts===&lt;br /&gt;
Most of the scripts seem to be written in [[Perl]]. Perl scripts need the Perl plugin. &lt;br /&gt;
So just put your perl.so where xchat can find it, then put your perl scripts in ~/.xchat2/ and everything should be fine :).&lt;br /&gt;
&lt;br /&gt;
Errors might occur when the plugin's version doesnt match the version of xchat.&lt;br /&gt;
&lt;br /&gt;
===TCL Scripts===&lt;br /&gt;
There are several [[Tcl]] scripts for xchat. The procedure is the same as for perl scripts: tcl.so where xchat can find it, .tcl scripts in ~/.xchat2/ and there you go. :)&lt;br /&gt;
&lt;br /&gt;
===Python Scripts===&lt;br /&gt;
Some people prefer [[python]] over perl, and many a great battles have been fought over this matter. Have xchat find the python.so, put your python script in... you guessed right! ...in ~/.xchat2/, done.&lt;br /&gt;
&lt;br /&gt;
===Ruby Scripts===&lt;br /&gt;
[[Ruby]] has gained a lot of popularity lately and there now is a [http://xchat-ruby.sourceforge.net/ ruby plugin] for xchat. You should know the deal by now... :)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
(Note: [[Housetier|I]] haven't been able to make use of the plugin yet; I managed to load it but my scripts won't run. I am still looking into this as of now)&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Simple Scripts===&lt;br /&gt;
Using a language plugin you can have all the power of your preferred programming/scripting language, at the cost of having to load yet another binary.&lt;br /&gt;
&lt;br /&gt;
Then one can use scripts that do not require a plugin at all. Of course these scripts have a very limited functionality, however, they do get simple things done very easily. Functionality is limited to irc commands plus user commands plus commands introduced by [[XchatPlugins]]. A script of this kind will contain one command per line, without the leading &amp;quot;/&amp;quot; (or whatever you set command_char to). Also comments are not possible.&lt;br /&gt;
&lt;br /&gt;
For example: &amp;lt;pre&amp;gt;&lt;br /&gt;
msg nickserv identify secretpass&lt;br /&gt;
msg guarding-bot opme anothersecretpass&lt;br /&gt;
join #foo,#bar&lt;br /&gt;
join #fool foolkey&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Save this in a file and use &amp;lt;b&amp;gt;load -e &amp;lt;full path to file&amp;gt;&amp;lt;/b&amp;gt; as connection command in the server list to have xchat execute the script at startup.&lt;br /&gt;
&lt;br /&gt;
== Selecting an encoding ==&lt;br /&gt;
If you're using a language other than English, you might want to have another look at the server list before you connect. XChat supports a number of character sets and [[encoding]]s, and although the default, [[UTF-8]], is a very good encoding for multilingual text. But not all IRC clients support it and for the characters that are send to appear correctly on the other people's IRC clients, they have to set the exact same encoding in their client.&lt;br /&gt;
&lt;br /&gt;
To select another text encoding, simply do the following:&lt;br /&gt;
* Open the server list&lt;br /&gt;
* Check the box labeled 'Edit mode'&lt;br /&gt;
* Find the dropdown menu labeled 'Character Set'&lt;br /&gt;
* Select your encoding of choice, e.g. ISO-8859-1.&lt;br /&gt;
&lt;br /&gt;
To change your encoding while you're connected to a server, use the /charset command followed by your encoding of choice.&lt;br /&gt;
&lt;br /&gt;
Note on IRC and character encodings:&lt;br /&gt;
There is no guarantee the characters outside ASCII will work. It depends on the IRC server software (most don't do any character encoding conversion and just send the data as-is), and the other users' IRC clients (most clients use WINDOWS-1252, so characters not in ASCII will show up garbled in their client) .&lt;br /&gt;
&lt;br /&gt;
== DCC file sends ==&lt;br /&gt;
XChat can send and receive two types of [[DCC]]: Active mode and passive mode. Generally, active mode should be used, because it works with almost all clients, but if you're behind a very restrictive firewall, you could have to resort to using passive mode.&lt;br /&gt;
&lt;br /&gt;
Active mode can be used in the following way:&lt;br /&gt;
&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Passive mode is activated like this:&lt;br /&gt;
&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Options ==&lt;br /&gt;
The options in XChat are scattered about the interface a bit. While the options related to connecting are found in the server list and most other options are found under Settings&amp;amp;#8594;Preferences, some options are also available from the 'IRC' or 'Server' menus, or by right-clicking on a channel window. Additionally, all options should be accessible by typing '/set'.&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://www.xchat.org Xchat homepage]&lt;br /&gt;
* [http://www.irchelp.org/ irchelp.org]&lt;br /&gt;
&lt;br /&gt;
{{msg:stub}}&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User:Housetier&amp;diff=10712</id>
		<title>User:Housetier</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User:Housetier&amp;diff=10712"/>
		<updated>2004-06-21T15:16:19Z</updated>

		<summary type="html">&lt;p&gt;Housetier: =Hi!=&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Hi!=&lt;br /&gt;
&lt;br /&gt;
I am '''housetier''' and I am [http://stan.kicks-ass.net/~housetier/nrrd.de/index.html a nerd].&lt;br /&gt;
&lt;br /&gt;
Here's a (shortened, incomplete, inaccurate, maybe even unusable) list of [[Open_Source]] I use, so if you happen to have a question feel free to ask me:&lt;br /&gt;
&lt;br /&gt;
* [[X-Chat|xchat]] and [[xchat-gnome]]&lt;br /&gt;
* [[vim]]&lt;br /&gt;
* [[Firefox]]&lt;br /&gt;
* [[ROX]]&lt;br /&gt;
* [[GNOME]]&lt;br /&gt;
* [[Debian]]&lt;br /&gt;
* [http://fish.sekure.us fish]&lt;br /&gt;
* [[Beep_media_player|Beep Media Player]]&lt;br /&gt;
* [[scrot]]&lt;br /&gt;
* [[Gaim]]&lt;br /&gt;
* [[Thunderbird]]&lt;br /&gt;
* [http://ktd.sytes.net/?q=node/view/8 songer]&lt;br /&gt;
* [[MPlayer]]&lt;br /&gt;
&lt;br /&gt;
(more to come)&lt;br /&gt;
&lt;br /&gt;
Now get your favorite IRC client up and '''/join #breaks''' on '''irc.highteq.de'''&lt;br /&gt;
&lt;br /&gt;
Have a peaceful day! :)&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User:Housetier&amp;diff=9664</id>
		<title>User:Housetier</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User:Housetier&amp;diff=9664"/>
		<updated>2004-06-11T10:11:45Z</updated>

		<summary type="html">&lt;p&gt;Housetier: updated program list&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Hi!=&lt;br /&gt;
&lt;br /&gt;
I am '''housetier''' and I am [http://nrrd.de a nerd].&lt;br /&gt;
&lt;br /&gt;
Here's a (shortened, incomplete, inaccurate, maybe even unusable) list of [[Open_Source]] I use, so if you happen to have a question feel free to ask me:&lt;br /&gt;
&lt;br /&gt;
* [[X-Chat|xchat]] and [[xchat-gnome]]&lt;br /&gt;
* [[vim]]&lt;br /&gt;
* [[Firefox]]&lt;br /&gt;
* [[ROX]]&lt;br /&gt;
* [[GNOME]]&lt;br /&gt;
* [[Debian]]&lt;br /&gt;
* [http://fish.sekure.us fish]&lt;br /&gt;
* [[Beep_media_player|Beep Media Player]]&lt;br /&gt;
* [[scrot]]&lt;br /&gt;
* [[Gaim]]&lt;br /&gt;
* [[Thunderbird]]&lt;br /&gt;
* [http://ktd.sytes.net/?q=node/view/8 songer]&lt;br /&gt;
* [[MPlayer]]&lt;br /&gt;
&lt;br /&gt;
(more to come)&lt;br /&gt;
&lt;br /&gt;
Now get your favorite IRC client up and '''/join #breaks''' on '''irc.highteq.de'''&lt;br /&gt;
&lt;br /&gt;
Have a peaceful day! :)&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Remote_desktop_connection&amp;diff=9689</id>
		<title>Remote desktop connection</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Remote_desktop_connection&amp;diff=9689"/>
		<updated>2004-05-29T17:18:59Z</updated>

		<summary type="html">&lt;p&gt;Housetier: mentioned putty&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are several techniques which can be used to establish a '''remote desktop connection''' between one computer and another.&lt;br /&gt;
&lt;br /&gt;
[[ssh]] - SSH (secure shell) is one of the best remote login clients and servers, and is supplied with all Linux distributions.  SSH can be used for a terminal or console session (a command prompt) like Telnet, but can also be configured to &amp;quot;tunnel&amp;quot; individual X-Windows applications as well.  This would allow a user to, for example, log in to a remote system and launch a graphical application and have the application appear on the user's system.  In such a scenario, the application would appear but NOT the full desktop.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[XDMCP|Remote X-Windows with XDMCP]] - XDMCP allows remote login and access to an entire [[GUI]] environment through an X display manager such as Gnome's GDM (so long as the option is enabled).&lt;br /&gt;
&lt;br /&gt;
[[VNC]] - VNC is also designed to forward an entire GUI environment.  It is less efficient than X-Windows but the traffic is compressed (for low bandwidth connections), and clients exist for every major [[OS]]. It has a degree of protection for passwords, but the data itself is sent without encryption. It can be made more secure by tunnelling the connection via ssh.&lt;br /&gt;
&lt;br /&gt;
[[Telnet]] - Telnet was one of the earliest attempts at remote administration.  It is now considered inherently insecure (it sends everything in clear text) and largely obsolete, but may have some niche uses on trusted networks.  Telnet provides only a console session with no capability of forwarding X-Windows applications or GUI environments.&lt;br /&gt;
&lt;br /&gt;
[[rlogin]] - rlogin allows remote logins using the [[BSD]] &amp;quot;r&amp;quot; [[protocol]].  The &amp;quot;r&amp;quot; suite of utilities has been rendered obsolete by SSH, and like Telnet, is considered too insecure for regular use.&lt;br /&gt;
&lt;br /&gt;
[[rdesktop]] - RDesktop is a Linux client that can attach to a Windows Server running Terminal Services or to the built-in Remote Desktop capability of Windows XP Pro.  It is ideal for many who prefer to work from a Linux system, but who have an occasional need to access a Windows machine.  RDesktop replicates a full Windows desktop in a window within Linux. -- also capabile of showing just one application&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[X11 forwarding with OpenSSH]] -- can forward your whole desktop, or just the application that you want..  X was built with this functionality in mind.&lt;br /&gt;
&lt;br /&gt;
[[Putty]] has now been ported to [[Linux]] as well.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Networking]]&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Remote_login&amp;diff=13836</id>
		<title>Remote login</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Remote_login&amp;diff=13836"/>
		<updated>2004-05-29T17:17:38Z</updated>

		<summary type="html">&lt;p&gt;Housetier: mentioned telnet&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;How to connect to your computer when you are away from it&lt;br /&gt;
&lt;br /&gt;
== Cli ==&lt;br /&gt;
*[[ssh]] -- version 1 is crackable, use version 2 whenever possible&lt;br /&gt;
*[[rlogin]] -- highly discouraged over the internet&lt;br /&gt;
*[[telnet]] -- see &amp;quot;rlogin&amp;quot;; I use for network &amp;quot;debugging&amp;quot;&lt;br /&gt;
&lt;br /&gt;
== Graphical ==&lt;br /&gt;
[[Remote desktop connection]]&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Vim&amp;diff=22558</id>
		<title>Vim</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Vim&amp;diff=22558"/>
		<updated>2004-05-29T17:14:56Z</updated>

		<summary type="html">&lt;p&gt;Housetier: added reference to the #vim wiki&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''vim''' ('''vi''' i'''m'''proved) is a contemporary version of the classic vi editor, with additional capabilites.&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
All [[UNIX]] machines typically come with the [[vi]] [[Editor]]. However, vi lacks some more contemporary features (for example, syntax highlighting). This is where '''vim''' comes in. If you know how to use vi, you'll find vim to be the same except it has a number of useful features added to make editing easier. If you don't yet know how to use vi or vim, and you didn't come from using [[ed]], you'll find the learning curve quite steep (which means, it might take you a while to learn to achieve maximum proficiency).&lt;br /&gt;
&lt;br /&gt;
==Tips==&lt;br /&gt;
&lt;br /&gt;
===~/.vimrc===&lt;br /&gt;
To make a config file for vim, create a file in your home directory called .vimrc, and fill it with stuff that you'd normally type into vim's &amp;quot;ex&amp;quot; mode. For example, if you regularly do &amp;quot;:syntax on&amp;quot; from inside vim, put &amp;quot;syntax on&amp;quot; (no colon or quotes) on a line by itself in your ~/.vimrc file.&lt;br /&gt;
&lt;br /&gt;
Here's the contents of a useful .vimrc file:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
syntax on&lt;br /&gt;
set number&lt;br /&gt;
set expandtab&lt;br /&gt;
set tabstop=4&lt;br /&gt;
set shiftwidth=4&lt;br /&gt;
set autoindent&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Where:&lt;br /&gt;
* &amp;quot;syntax on&amp;quot; turns on syntax highlighting&lt;br /&gt;
* &amp;quot;set number&amp;quot; turns on line numbers&lt;br /&gt;
* &amp;quot;set expandtab&amp;quot; makes vim insert spaces (instead of tabs) whenever you hit the tab key&lt;br /&gt;
* &amp;quot;set tabstop=4&amp;quot; sets tabs to equal 4 spaces&lt;br /&gt;
* &amp;quot;set shiftwidth=4&amp;quot; makes it so when you use the text shifting command, it shifts over using 4-space indents.&lt;br /&gt;
* &amp;quot;set autoindent&amp;quot; has vim use &amp;quot;smart indenting&amp;quot;, ie. when you are tabbed out to, say, the 8th column, and you type something then hit enter, the cursor is helpfully placed at the 8th column again for you.&lt;br /&gt;
&lt;br /&gt;
(You can shut off line numbering from command mode by typing &amp;lt;tt&amp;gt;:set nonumber&amp;lt;/tt&amp;gt;.)&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
*[http://www.vim.org Vim Homepage]&lt;br /&gt;
*[http://vi-improved.org/wiki/index.php #vim wiki]&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=User:Housetier&amp;diff=9482</id>
		<title>User:Housetier</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=User:Housetier&amp;diff=9482"/>
		<updated>2004-05-29T17:05:44Z</updated>

		<summary type="html">&lt;p&gt;Housetier: made list entries into wiki links and other links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Hi!=&lt;br /&gt;
&lt;br /&gt;
I am '''housetier''' and I am [http://nrrd.de a nerd].&lt;br /&gt;
&lt;br /&gt;
Here's a (shortened, incomplete, inaccurate, maybe even unusable) list of [[Open_Source]] I use, so if you happen to have a question feel free to ask me:&lt;br /&gt;
&lt;br /&gt;
* [[X-Chat|xchat]]&lt;br /&gt;
* [[vim]]&lt;br /&gt;
* [[Firefox]]&lt;br /&gt;
* [[ROX]]&lt;br /&gt;
* [[GNOME]]&lt;br /&gt;
* [[Debian]]&lt;br /&gt;
* [http://fish.sekure.us fish]&lt;br /&gt;
* [[Beep_media_player|Beep Media Player]]&lt;br /&gt;
* scrot&lt;br /&gt;
* [[Gaim]]&lt;br /&gt;
* [[Thunderbird]]&lt;br /&gt;
* [http://ktd.sytes.net/?q=node/view/8 songer]&lt;br /&gt;
* [[MPlayer]]&lt;br /&gt;
* [[BloGTK]]&lt;br /&gt;
&lt;br /&gt;
(more to come)&lt;br /&gt;
&lt;br /&gt;
Now get your favorite IRC client up and '''/join #breaks''' on '''irc.highteq.de'''&lt;br /&gt;
&lt;br /&gt;
Have a peaceful day! :)&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=ROX&amp;diff=9196</id>
		<title>ROX</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=ROX&amp;diff=9196"/>
		<updated>2004-05-29T16:42:25Z</updated>

		<summary type="html">&lt;p&gt;Housetier: initial release, referring to rox' project page on sf.net&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=ROX rox!=&lt;br /&gt;
[http://rox.sf.net ROX] is a slim, highly-configurable desktop environment built around the ROX-filer. It has its own [http://rox.sf.net wiki], no need of repetition...&lt;br /&gt;
&lt;br /&gt;
[http://wiki.linuxquestions.org/wiki/User:Housetier I] like it very much :)&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Desktop_environment&amp;diff=9200</id>
		<title>Desktop environment</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Desktop_environment&amp;diff=9200"/>
		<updated>2004-05-29T16:37:25Z</updated>

		<summary type="html">&lt;p&gt;Housetier: added reference to rox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''desktop environment''' is an integrated collection of programs that usually includes a [[window manager]], a [[file manager]] and other [[GUI]] utilities.&lt;br /&gt;
&lt;br /&gt;
==Specific applications==&lt;br /&gt;
&lt;br /&gt;
* [[CDE]]&lt;br /&gt;
* [[Gnome]]&lt;br /&gt;
* [[KDE]]&lt;br /&gt;
* [[XFce]]&lt;br /&gt;
* [[XPde]]&lt;br /&gt;
* [[ROX]]&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=File_sharing_via_P2P&amp;diff=10210</id>
		<title>File sharing via P2P</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=File_sharing_via_P2P&amp;diff=10210"/>
		<updated>2004-05-29T16:35:06Z</updated>

		<summary type="html">&lt;p&gt;Housetier: mldonkey can &amp;quot;do&amp;quot; BT as well&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;After [[Ebay]], '''file sharing''' seems to be the main point of the [[internet]] - a way to give and receive files between individuals without requiring special servers or other complicated configurations. This is particuarly the case with decentralized [[peer to peer]] [[network]]s where, unlike earlier P2P predecessors such as [[Napster]], no centrally controlled systems are required at all in order to establish a vast network upon which people can share music, video and other data via P2P [[applications]].&lt;br /&gt;
&lt;br /&gt;
==Specific applications==&lt;br /&gt;
&lt;br /&gt;
==== KaZaa ====&lt;br /&gt;
&lt;br /&gt;
*[[giFT]]&lt;br /&gt;
&lt;br /&gt;
==== Gnutella ====&lt;br /&gt;
&lt;br /&gt;
*[[gtk-gnutella]]&lt;br /&gt;
*[[LimeWire]]&lt;br /&gt;
*[[qtella]]&lt;br /&gt;
&lt;br /&gt;
==== eDonkey ====&lt;br /&gt;
&lt;br /&gt;
*[[xmule]]&lt;br /&gt;
*[[eDonkey]] (official client)&lt;br /&gt;
*[[Overnet]] (official client)&lt;br /&gt;
*[[MLDonkey]]&lt;br /&gt;
*[[ShareDaemon]]&lt;br /&gt;
&lt;br /&gt;
==== BitTorrent ====&lt;br /&gt;
&lt;br /&gt;
*[[BitTorrent]] (official client)&lt;br /&gt;
*[[Azureus]]&lt;br /&gt;
*[[MLDonkey]]&lt;br /&gt;
&lt;br /&gt;
==== SoulSeek ====&lt;br /&gt;
&lt;br /&gt;
*[[pysoulseek]]&lt;br /&gt;
&lt;br /&gt;
==== Direct Connect ====&lt;br /&gt;
&lt;br /&gt;
*[[LDCC]]&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Web_browser&amp;diff=10845</id>
		<title>Web browser</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Web_browser&amp;diff=10845"/>
		<updated>2004-05-29T16:33:54Z</updated>

		<summary type="html">&lt;p&gt;Housetier: added reference to links text browser&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''web browser''' is essentially an engine that converts markup (primarily [[HTML]]) into a representation according to the rules of the markup. However, browsers must also handle an array of other demands from an increasingly complex [[web]], which is often done with the help of [[plugins]] such as [[Flash Player(s)]].&lt;br /&gt;
&lt;br /&gt;
For some hints on setting up web browsers, look at [[Browsing tasks]].&lt;br /&gt;
&lt;br /&gt;
==Specific applications==&lt;br /&gt;
The following is a list of web browsers available for Linux:&lt;br /&gt;
* [[Epiphany]]&lt;br /&gt;
* [[Galeon]] :  a web browser for [[Gnome]] based on the [[Gecko]] renderer.&lt;br /&gt;
* [[Konqueror]] : a web browser for [[KDE]].&lt;br /&gt;
* [[Lynx]] : a text-only web browser, suitable for use in a [[terminal]]&lt;br /&gt;
* [[Links]] : another text-only browser, with nice features&lt;br /&gt;
* [[Mozilla]] and the related web browsers:&lt;br /&gt;
** [[Firefox]] : A particularly popular, technologically advanced browser, planned to become the successor to Mozilla&lt;br /&gt;
** [[Netscape]] : The commercially developed predecessor to Mozilla, whose later versions are based on Mozilla itself&lt;br /&gt;
* [[Opera]] : A popular, ad-supported web browser, whose adherents often claim is the fastest browser available&lt;br /&gt;
[[Emacs]], although most commonly known as a text editor, also possesses web browser plugins.&lt;br /&gt;
&lt;br /&gt;
''This article is a [[LinuxQuestions.org_Wiki:stub_articles|stub]] and needs to be finished. [[LinuxQuestions.org_Wiki:plunging_forward|Plunge forward]] and [[LinuxQuestions.org_Wiki:How_to_edit_a_page|help it grow]] !''&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Links&amp;diff=9195</id>
		<title>Links</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Links&amp;diff=9195"/>
		<updated>2004-05-29T16:33:44Z</updated>

		<summary type="html">&lt;p&gt;Housetier: added link to project on sf.net&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Links is a clone/successor to [[Lynx]].  It is a text based browser at its core, but it can also support [[Svgalib]] along with [[libjpg]] and [[libungif]] to provide graphical browsing without using [[X]].&lt;br /&gt;
&lt;br /&gt;
See also: [http://links.sourceforge.net/ Links homepage]&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=Video_player&amp;diff=10019</id>
		<title>Video player</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=Video_player&amp;diff=10019"/>
		<updated>2004-05-29T16:28:11Z</updated>

		<summary type="html">&lt;p&gt;Housetier: added reference to AviPlayer&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A '''video player''' plays audio and video in several formats, such as [[MPEG]], [[DivX]], [[DVD]] or [[VCD]]/[[SVCD]]. It also lets you run videos in full-screen mode.&lt;br /&gt;
&lt;br /&gt;
There is a good article on LinuxQuestions.org on [http://www.linuxquestions.org/questions/answers/28 Playing DVD and videos]. Some DVDs sold are encoded meaning you will not be able to play them out of the box on Linux, but the libdvdcss package will do the trick for you. &lt;br /&gt;
&lt;br /&gt;
Note that [[Installing Software|installing]] free decoding software on your computer is ''illegal'' and ''entirely your own decision''. Fortunately the difficult days for [http://dvd.zgp.org/balloon/ distributing DVD software for Linux] in 2000 are over...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Specific applications==&lt;br /&gt;
&lt;br /&gt;
* [http://www.mplayerhq.hu] [[MPlayer]], an amazing video and DVD player.&lt;br /&gt;
* [http://www.dtek.chalmers.se/groups/dvd/] [[Ogle]], a DVD-only player for Linux and BSD environments.&lt;br /&gt;
* [http://www.hadess.net/totem.php3] [[Totem]], the [[GNOME]] video and DVD player.&lt;br /&gt;
* [http://xinehq.de/] [[Xine]], a multi-format video and DVD player.&lt;br /&gt;
* [http://www.videolan.org/] [[VLC]] Videolan Client, A cross-plaform multimedia player.&lt;br /&gt;
* [[AviPlayer]] plays avi files. I haven't found its homepage yet.&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=9136</id>
		<title>XChat</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=9136"/>
		<updated>2004-05-26T16:32:46Z</updated>

		<summary type="html">&lt;p&gt;Housetier: spelling error corrected&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''X-Chat''' is an [[Internet Relay Chat]] (IRC) client for UNIX operating systems. X-Chat runs on most [[BSD]] and [[POSIX]] compliant operating systems, and works on [[Linux]]. A [[Windows]] client also exists as do several [[MacOS]] ports. A prominent fork for MacOS is [http://xchataqua.sourceforge.net/ X-Chat Aqua]. All versions support many [[scripting]] capabilities.&lt;br /&gt;
&lt;br /&gt;
== Basic Operation ==&lt;br /&gt;
The easiest way of connecting to a server is trhough the server list. X-Chat comes with a list of servers. One of the best servers related to Free/Open Source Software is irc.freenode.net.&lt;br /&gt;
&lt;br /&gt;
To connect, simply enter your desired nick and username, select a network and hit connect.&lt;br /&gt;
&lt;br /&gt;
Type '/join #xchat' to join the XChat channel, or try the name of whatever project you are interested in. SuSe, LTSP, KDE and Xine all have channels.&lt;br /&gt;
&lt;br /&gt;
==Scripting Xchat==&lt;br /&gt;
There are several ways of scripting in xchat. &lt;br /&gt;
&lt;br /&gt;
===Perl Scripts===&lt;br /&gt;
Most of the scripts seem to be written in Perl. Perl scripts need the Perl plugin. &lt;br /&gt;
So just put your perl.so where xchat can find it, then put your perl scripts in ~/.xchat2/ and everything should be fine :).&lt;br /&gt;
&lt;br /&gt;
Errors might occur when the plugin's version doesnt match the version of xchat.&lt;br /&gt;
&lt;br /&gt;
===TCL Scripts===&lt;br /&gt;
I have seen several TCL scripts for xchat. The procedure is the same as for perl scripts: tcl.so where xchat can find it, .tcl scripts in ~/.xchat2/ and there you go. :)&lt;br /&gt;
&lt;br /&gt;
===Python Scripts===&lt;br /&gt;
Some people prefer python over perl, and many a great battles have been fought over this matter. Have xchat find the python.so, put your python script in... you guessed right! ...in ~/.xchat2/, done.&lt;br /&gt;
&lt;br /&gt;
===Ruby Scripts===&lt;br /&gt;
Ruby has gained a lot of popularity latelyand there now is a [http://xchat-ruby.sourceforge.net/ ruby plugin] for xchat. You should know the deal by now... :)&lt;br /&gt;
&lt;br /&gt;
(Note: [[Housetier|I]] haven't been able to make use of the plugin yet; I managed to load it but my scripts won't run. I am still looking into this as of now)&lt;br /&gt;
&lt;br /&gt;
===Simple Scripts===&lt;br /&gt;
Using a language plugin you can have all the power of your preferred programming/scripting language, at the cost of having to load yet another binary.&lt;br /&gt;
&lt;br /&gt;
Then one can use scripts that do not require a plugin at all. Of course these scripts have a very limited functionality, however, they do get simple things done very easily. Functionality is limited to irc commands plus user commands plus commands introduced by [[XchatPlugins]]. A script of this kind will contain one command per line, without the leading &amp;quot;/&amp;quot; (or whatever you set command_char to). Also comments are not possible.&lt;br /&gt;
&lt;br /&gt;
== Selecting an encoding ==&lt;br /&gt;
If you're using a language other than English, you might want to have another look at the server list before you connect. XChat supports a number of character sets and encodings, and although the default, UTF-8, is a very good encoding for multilingual text, not all IRC clients support it. To select another text encoding, simply do the following:&lt;br /&gt;
&lt;br /&gt;
* Open the server list&lt;br /&gt;
* Check the box labeled 'Edit mode'&lt;br /&gt;
* Find the dropdown menu labeled 'Character Set'&lt;br /&gt;
* Select your encoding of choice, e.g. ISO-8859-1.&lt;br /&gt;
&lt;br /&gt;
To change your encoding while you're connected to a server, use the /charset command followed by your encoding of choice.&lt;br /&gt;
&lt;br /&gt;
== DCC file sends ==&lt;br /&gt;
XChat can send and receive two types of DCC: Active mode and passive mode. Generally, active mode should be used, because it works with almost all clients, but if you're behind a very restrictive firewall, you could have to resort to using passive mode.&lt;br /&gt;
&lt;br /&gt;
Active mode can be used in the following way:&lt;br /&gt;
&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Passive mode is activated like this:&lt;br /&gt;
&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Options ==&lt;br /&gt;
The options in XChat are scattered about the interface a bit. While the options related to connecting are found in the server list and most other options are found under Settings&amp;amp;#8594;Preferences, some options are also available from the 'IRC' or 'Server' menus, or by right-clicking on a channel window. Additionally, all options should be accessible by typing '/set'.&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://www.xchat.org Xchat homepage]&lt;br /&gt;
* [http://www.irchelp.org/ irchelp.org]&lt;br /&gt;
&lt;br /&gt;
''This article is a [[LinuxQuestions.org_Wiki:stub_articles|stub]] and needs to be finished. [[LinuxQuestions.org_Wiki:plunging_forward|Plunge forward]] and [[LinuxQuestions.org_Wiki:How_to_edit_a_page|help it grow]]!''&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=XchatPlugins&amp;diff=9130</id>
		<title>XchatPlugins</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=XchatPlugins&amp;diff=9130"/>
		<updated>2004-05-26T16:31:41Z</updated>

		<summary type="html">&lt;p&gt;Housetier: more bold&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Plug into Xchat=&lt;br /&gt;
You probably have heard of the [[XChat#Perl_Scripts|perl]], [[XChat#TCL_Scripts|tcl]], [[XChat#Python_Scripts|python]], and [[XChat#Ruby_Scripts|ruby]] plugins. I like to call those '''language plugins'''.&lt;br /&gt;
&lt;br /&gt;
But there are more than just language plugins available for xchat. There are two '''encryption plugins''' I know of: [http://fish.sekure.us fish] and [http://mircryption.sf.net mircryption]. I tried both and found both to have (dis-)advantages. '''fish''' already can exchange keys, '''mcps''' sometimes is quicker to use. However, you can have a secure conversation between a fish and a mircryption user.&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=XchatPlugins&amp;diff=9128</id>
		<title>XchatPlugins</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=XchatPlugins&amp;diff=9128"/>
		<updated>2004-05-26T16:03:45Z</updated>

		<summary type="html">&lt;p&gt;Housetier: initial release&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Plug into Xchat=&lt;br /&gt;
You probably have heard of the [[XChat#Perl_Scripts|perl]], [[XChat#TCL_Scripts|tcl]], [[XChat#Python_Scripts|python]], and [[XChat#Ruby_Scripts|ruby]] plugins. I like to call those '''language plugins'''.&lt;br /&gt;
&lt;br /&gt;
But there are more than just language plugins available for xchat. There are two encryption plugins I know of: [http://fish.sekure.us fish] and [http://mircryption.sf.net mircryption]. I tried both and found both to have (dis-)advantages. '''fish''' already can exchange keys, '''mcps''' sometimes is quicker to use. However, you can have a secure conversation between a fish and a mircryption user.&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
	<entry>
		<id>https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=9120</id>
		<title>XChat</title>
		<link rel="alternate" type="text/html" href="https://wiki.linuxquestions.org/index.php?title=XChat&amp;diff=9120"/>
		<updated>2004-05-26T15:49:34Z</updated>

		<summary type="html">&lt;p&gt;Housetier: scripting: initial release&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''X-Chat''' is an [[Internet Relay Chat]] (IRC) client for UNIX operating systems. X-Chat runs on most [[BSD]] and [[POSIX]] compliant operating systems, and works on [[Linux]].  A [[Windows]] client also exists. It also supports many [[scripting]] capabilities.&lt;br /&gt;
&lt;br /&gt;
==Scripting Xchat==&lt;br /&gt;
There are several ways of scripting in xchat. &lt;br /&gt;
&lt;br /&gt;
===Perl Scripts===&lt;br /&gt;
Most of the scripts seem to be written in Perl. Perl scripts need the PerlPlugin. &lt;br /&gt;
So just put your perl.so where xchat can find it, then put your perl scripts in ~/.xchat2/ and everything should be fine :).&lt;br /&gt;
&lt;br /&gt;
Errors might occur when the plugin's version doesnt match the version of xchat. &lt;br /&gt;
&lt;br /&gt;
===TCL Scripts===&lt;br /&gt;
I have seen several TCL scripts for xchat. The procedure is the same as for perl scripts: tcl.so where xchat can find it, .tcl scripts in ~/.xchat2/ and there you go. :)&lt;br /&gt;
&lt;br /&gt;
===Python Scripts===&lt;br /&gt;
Some people prefer python over perl, and many a great battles have been fought over this matter. Have xchat find the python.so, put your python script in... you guessed right! ...in ~/.xchat2/, done.&lt;br /&gt;
&lt;br /&gt;
===Ruby Scripts===&lt;br /&gt;
Ruby has gained a lot of popularity latelyand there now is a [http://xchat-ruby.sourceforge.net/ ruby plugin] for xchat. You should know the deal by now... :)&lt;br /&gt;
&lt;br /&gt;
(Note: [[Housetier|I]] haven't been able to make use of the plugin yet; I managed to load it but my scripts won't run. I am still looking into this as of now)&lt;br /&gt;
&lt;br /&gt;
===Simple Scripts===&lt;br /&gt;
Using a language plugin you can have all the power of your preferred programming/scripting language, at the cost of having to load yet another binary.&lt;br /&gt;
&lt;br /&gt;
Then one can use scripts that do not require a plugin at all. Of course these scripts have a very limited functionality, however, they do get simple things done very easily. Functionality is limited to irc commands plus user commands plus commands introduced by [[XchatPlugins]]. A script of this kind will contain one command per line, without the leading &amp;quot;/&amp;quot; (or whatever you set command_char to). Also comments are not possible.&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
I also recommend to read [[XchatPlugins]].&lt;br /&gt;
&lt;br /&gt;
== Basic Operation ==&lt;br /&gt;
The easiest way of connecting to a server is trhough the server list. X-Chat comes with a list of servers. One of the best servers related to Free/Open Source Software is irc.freenode.net.&lt;br /&gt;
&lt;br /&gt;
To connect, simply enter your desired nick and username, select a network and hit connect.&lt;br /&gt;
&lt;br /&gt;
Type '/join #gentoo' to join the gentoo channel, or type #whatever project you are interested in. SuSe, LTSP, KDE and Xine all have channels.&lt;br /&gt;
&lt;br /&gt;
== Selecting an encoding ==&lt;br /&gt;
If you're using a language other than English, you might want to have another look at the server list before you connect. X-Chat supports a number of character sets and encodings, and although the default, UTF-8, is a very good encoding for multilingual text, not all IRC clients support it. To select another text encoding, simply do the following:&lt;br /&gt;
&lt;br /&gt;
* Open the server list&lt;br /&gt;
* Check the box labeled 'Edit mode'&lt;br /&gt;
* Find the dropdown menu labeled 'Character Set'&lt;br /&gt;
* Select your encoding of choice, e.g. ISO-8859-1.&lt;br /&gt;
&lt;br /&gt;
To change your encoding while you're connected to a server, use the /charset command followed by your encoding of choice.&lt;br /&gt;
&lt;br /&gt;
== DCC file sends ==&lt;br /&gt;
X-Chat can send and receive two types of DCC: Active mode and passive mode. Generally, active mode should be used, because it works with almost all clients, but if you're behind a very restrictive firewall, you could have to resort to using passive mode.&lt;br /&gt;
&lt;br /&gt;
Active mode can be used in the following way:&lt;br /&gt;
&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc send &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Passive mode is activated like this:&lt;br /&gt;
&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt;&lt;br /&gt;
* /dcc psend &amp;lt;nick&amp;gt; &amp;lt;file&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://www.xchat.org Xchat homepage]&lt;br /&gt;
* [http://www.irchelp.org/ irchelp.org]&lt;br /&gt;
&lt;br /&gt;
''This article is a [[LinuxQuestions.org_Wiki:stub_articles|stub]] and needs to be finished. [[LinuxQuestions.org_Wiki:plunging_forward|Plunge forward]] and [[LinuxQuestions.org_Wiki:How_to_edit_a_page|help it grow]]!''&lt;/div&gt;</summary>
		<author><name>Housetier</name></author>
	</entry>
</feed>