supernets.org

- https://supernets.org
git clone git://git.acid.vegas/supernets.org.git
Log | Files | Refs | Archive

ascii-ansi-art-flooding.html (9570B)

      1 <!DOCTYPE html>
      2 <html lang="en">
      3 	<head>
      4 		<title>SuperNETs</title>
      5 		<meta charset="UTF-8">
      6 		<meta name="author" content="SuperNETs">
      7 		<meta name="description" content="A secure and anonymous, censorship-free, public environment for communication.">
      8 		<meta name="keywords" content="anonymous, chat, internet, irc, ircd, network, relay, secure, super, nets, supernets, xmpp">
      9 		<meta name="viewport" content="width=device-width, initial-scale=1">
     10 		<link rel="icon" type="image/png" href="../i/favicon.png">
     11 		<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
     12 		<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha256-3edrmyuQ0w65f8gfBsqowzjJe2iM6n0nKciPUp8y+7E=" crossorigin="anonymous"></script>
     13 		<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.1/umd/popper.min.js" integrity="sha256-AoNQZpaRmemSTxMy9xcqXX5VLwI6IMPYugO7bFHOW+U=" crossorigin="anonymous"></script>
     14 		<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
     15 		<link href="../inc/style.css" rel="stylesheet">
     16 	</head>
     17 	<body>
     18 		<div class="container">
     19 			<header class="header clearfix">
     20 				<nav class="navbar navbar-expand-lg navbar-light bg-white">
     21 					<a class="navbar-brand text-muted bolder" href="#">SUPERNETS</a>
     22 					<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
     23 						<span class="navbar-toggler-icon"></span>
     24 					</button>
     25 					<div class="collapse navbar-collapse" id="navbarSupportedContent">
     26 						<ul class="navbar-nav ml-auto">
     27 							<li class="nav-item"><a class="nav-link" href="../index.html">Home</a></li>
     28 							<li class="nav-item"><a class="nav-link" href="../about.html">About</a></li>
     29 							<li class="nav-item"><a class="nav-link" href="../contact.html">Contact</a></li>
     30 							<li class="nav-item"><a class="nav-link" href="../docs.html">Docs</a></li>
     31 							<li class="nav-item dropdown">
     32 								<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Network</a>
     33 								<div class="dropdown-menu" aria-labelledby="navbarDropdown">
     34 									<a class="dropdown-item" href="https://git.supernets.org/">Git</a>
     35 									<a class="dropdown-item" href="../irc.html">IRC</a>
     36 								</div>
     37 							</li>
     38 						</ul>
     39 					</div>
     40 				</nav>
     41 			</header>
     42 			<main role="main">
     43 				<center><h4>ASCII/ANSI Art & Flooding</h4></center>
     44 				<br><p>The term "IRC Art" is used to refer to text based visual art found on IRC. The art found on IRC has evolved past using just ASCII charcters. IRC clients today understand a number of special formatting characters. These characters allow IRC software to send and receive colors and formatting codes such as bold, italics, underline and others. This allows more possibilites now for creating ASCII/ANSI art for IRC. While it is possible to have support for 99 or even 256 colors, most art made for IRC follows the 16 color standard. In order to properly execute playing art in an IRC channel, it is generally agreed that you want to pump the art as quickly as possible. That means, any client or server side throttling can make pumping large art heavily delayed or interrepted. You also want to make sure you have full support for viewing UTF-8 unicode characters.</p>
     45 				<hr>
     46 				<center><h4 id="setup">SETUP OS</h4></center>
     47 				<br><ul>
     48 					<li><code>echo "LANG=en_US.UTF-8" > /etc/locale.conf</code></li>
     49 					<li><code>echo "en_US.UTF-8 UTF-8" > /etc/locale.gen</code></li>
     50 					<li><code>locale-gen</code></li>
     51 				</ul>
     52 				<p>Place the following lines in your ~/.bashrc file:</p>
     53 				<ul>
     54 					<li><code>export LC_ALL=en_US.UTF-8</code></li>
     55 					<li><code>export LANG=en_US.UTF-8</code></li>
     56 					<li><code>export LANGUAGE=en_US.UTF-8</code></li>
     57 				</ul>
     58 				<p>Then run <code>source ~/.bashrc</code> to make the changes take affect.</p>
     59 				<p>If you are using GNU screen, make sure <code>defutf8 on</code> is in your screenrc file.</p>
     60 				<hr>
     61 				<center><h4>SETUP CLIENT</h4></center>
     62 				<br><h5 id="irssi">IRSSI</h5>
     63 				<h6 class="text-muted">UTF-8</h6>
     64 				<ul>
     65 					<li><code>/set term_charset utf-8</code></li>
     66 					<li><code>/set recode_autodetect_utf8 ON</code></li>
     67 					<li><code>/set recode_fallback ISO-8859-15</code></li>
     68 					<li><code>/set recode_out_default_charset ISO-8859-15</code></li>
     69 					<li><code>/set recode_transliterate ON</code></li>
     70 					<li><code>/set recode ON</code></li>
     71 				</ul>
     72 				<h6 class="text-muted">Flooding</h6>
     73 				<ul>
     74 					<li><code>/set cmd_queue_speed 0msec </code> <small><i>(global)</i></small></li>
     75 					<li><code>/set cmds_max_at_once 0</code> <small><i>(global)</i></small></li>
     76 					<li><code>/network add -cmdmax 0 -cmdspeed 0msec &lt;network_name&gt;</code> <small><i>(network specific)</i></small></li>
     77 				</ul>
     78 				<p><b>Note:</b> Change 0 to 10 for safe flood rates on networks like EFNet.</p>
     79 				<br><br><h5 id="xchat">HexChat/xChat</h5>
     80 				<h6 class="text-muted">UTF-8</h6>
     81 				<p>Edit your network and change "Character set" to "UTF-8 (Unicode)" for all of your networks.</p>
     82 				<h6 class="text-muted">Font</h6>
     83 				<p>Navigate to Settings->Preferences->Interface->Text box and set the font to monospace normal size 9.</p>
     84 				<h6 class="text-muted">Colors</h6>
     85 				<p>Locate your colors.conf file in either the AppData <i>(Windows)</i> or ~/.xchat2 <i>(Linux)</i> directory and replace the first 16 lines with the follow:</p>
     86 				<code>color_0 = ffff ffff ffff
     87 				<br>color_1 = 0000 0000 0000
     88 				<br>color_2 = 0000 0000 7f7f
     89 				<br>color_3 = 0000 9393 0000
     90 				<br>color_4 = ffff 0000 0000
     91 				<br>color_5 = 7f7f 0000 0000
     92 				<br>color_6 = 9c9c 0000 9c9c
     93 				<br>color_7 = fcfc 7f7f 0000
     94 				<br>color_8 = ffff ffff 0000
     95 				<br>color_9 = 0101 fcfc 0000
     96 				<br>color_10 = 0000 9393 9393
     97 				<br>color_11 = 0101 ffff ffff
     98 				<br>color_12 = 0000 0000 fcfc
     99 				<br>color_13 = ffff 0000 ffff
    100 				<br>color_14 = 7f7f 7f7f 7f7f
    101 				<br>color_15 = d2d2 d2d2 d2d2</code>
    102 				<br><br><h6 class="text-muted">Flooding</h6>
    103 				<ul>
    104 					<li><code>/set net_throttle 0</code></li>
    105 				</ul>
    106 				<br><br><h5 id="weechat">WeeChat</h5>
    107 				<ul>
    108 					<li><code>/set irc.server_default.anti_flood_prio_high 0</code> <small><i>(global)</i></small></li>
    109 					<li><code>/set irc.server_default.anti_flood_prio_low 0</code> <small><i>(global)</i></small></li>
    110 					<li><code>/set irc.server.&lt;network_name&gt;.anti_flood_prio_high 0</code> <small><i>(network specific)</i></small></li>
    111 					<li><code>/set irc.server.&lt;network_name&gt;.anti_flood_prio_low 0</code> <small><i>(network specific)</i></small></li>
    112 				</ul>
    113 				<p><b>Note:</b> Change 0 to 2 for safe flood rates on networks like EFNet.</p>
    114 				<br><br><h5 id="znc">ZNC</h5>
    115 				<ul>
    116 					<li><code>/msg *controlpanel setnetwork floodburst $me $network 0</code></li>
    117 					<li><code>/msg *controlpanel setnetwork floodrate $me $network 0</code></li>
    118 				</ul>
    119 				<hr>
    120 				<center><h4 id="resources">RESOURCES</h4></center>
    121 				<br><h5>Drawing Tools</h5>
    122 				&bull; <a href="https://git.supernets.org/acidvegas/asciipumper">ASCII Pumper</a> - Old school MS-Paint style drawing tool. <small><i>(Created by Lampiasis)</i></small>
    123 				<br>&bull; <a href="https://git.supernets.org/acidvegas/ircpaint">IRC Paint</a> - Mid school MS-Paint style drawing tool. <small><i>(Created by Pedrobear/wwared)</i></small>
    124 				<br>&bull; <a href="https://github.com/lalbornoz/MiRCARTools">mIRCART Tools</a> - New school MS-Paint style drawing tool. <small><i>(Created by arab/vxp)</i></small>
    125 				<br>&bull; <a href="https://acidvegas.github.io/asciimaker/">ASCII Maker</a> - Draw IRC art straight from your web browser. <small><i>(Created by infid3l)</i></small>
    126 				<br>&bull; <a href="http://picoe.ca/products/pablodraw/">PabloDraw</a> - ANSI art drawing tool.
    127 				<br><br><h5>Art Tools</h5>
    128 				&bull; <a href="https://github.com/tat3r/a2m">A2M</a> - Convert ANSI art to IRC art. <small><i>(Created by tater)</i></small>
    129 				<br>&bull; <a href="https://github.com/wwared/img2term">IMG2Term</a> - Output art to your terminal. <small><i>(Created by Pedrobear/wwared)</i></small>
    130 				<br>&bull; <a href="https://acidvegas.github.io/irc2html/">IRC2HTML</a> - Convert IRC ASCII art to HTML. <small><i>(Created by acidvegas)</i></small>
    131 				<br>&bull; <a href="https://git.supernets.org/acidvegas/scroll">Scroll</a> - Full featured IRC bot to play art. <small><i>(Created by acidvegas)</i></small>
    132 				<br><br><h5>Art Packs</h5>
    133 				&bull; <a href="https://git.supernets.org/acidvegas/ircart">IRCArt</a> - All packs organized into one ultimate pack.
    134 				<br>&bull; <a href="http://wepump.in/mircart/">mIRCART Packs</a> - Art pack made by the #mircart crew on EFNet.
    135 				<br>&bull; <a href="http://wepump.in/ascii/">PP4L Pack</a> - Giant listing of PP4L art from EFNet.
    136 				<br>&bull; <a href="https://github.com/jakkm3n/trollascii">TrollASCII Pack</a> - Giant mess of unorganized art.
    137 				<br>&bull; <a href="https://git.volatile.bz/krustykrab/ascii-art">Volatile Pack</a> -  Art pack containing other packs and some OC.
    138 			</main>
    139 			<footer class="footer">
    140 				<p>&copy; Supernets 2019</p>
    141 			</footer>
    142 		</div>
    143 	</body>
    144 </html>