<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>ascii &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://wordpress.com/tag/ascii/</link>
	<description>Feed of posts on WordPress.com tagged "ascii"</description>
	<pubDate>Sun, 27 Jul 2008 09:50:49 +0000</pubDate>

	<generator>http://wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Soporte para MathML]]></title>
<link>http://drini.wordpress.com/?p=58</link>
<pubDate>Thu, 24 Jul 2008 18:35:52 +0000</pubDate>
<dc:creator>drini</dc:creator>
<guid>http://drini.wordpress.com/?p=58</guid>
<description><![CDATA[Tengo una wiki personal en mi unidad USB. Pero el soporte de matemáticas de mediawiki depende de oc]]></description>
<content:encoded><![CDATA[<p>Tengo una wiki personal en mi unidad USB. Pero el soporte de matemáticas de mediawiki depende de ocaml, imagemagick, texvc, etc. Una alternativa simple es la extensión <a href="http://www.mediawiki.org/wiki/Extension:ASCIIMath4Wiki" target="_blank">ASCIIMath4Wiki</a>, que usa <a href="http://www1.chapman.edu/~jipsen/mathml/asciimath.html" target="_blank">MathML</a> para crear las formulas.</p>
[caption id="attachment_59" align="aligncenter" width="1024" caption="mathml en firefox"]<a href="http://drini.files.wordpress.com/2008/07/mathml1.png"><img class="size-full wp-image-59" src="http://drini.wordpress.com/files/2008/07/mathml1.png" alt="mathml en firefox" width="1024" height="558" /></a>[/caption]
<p>El problema... Internet Explorer no soporta MathML y firefox necesita unas fuentes extras para mostrar correctamente ciertas expresiones (como radicales). La solución viene en dos pasos</p>
<ul>
<li><a href="http://www.mozilla.org/projects/mathml/fonts/" target="_blank">Instalar las fuentes STIX</a>, lo cual resuelve el problema en los navegadores Mozilla (así por ejemplo sqrt(2/x)  ya no se mostrará erróneamente como sqrt(2)/x  al no ser extensible el símbolo de radical)</li>
<li><a href="http://www.dessci.com/en/products/mathplayer/download.htm" target="_blank">Instalar MathPlayer</a>, lo cual permite que Internet Explorer entienda el Doctype apropiado para soporte MathML.</li>
</ul>
<p>El resultado (en Internet Explorer):</p>
[caption id="attachment_61" align="aligncenter" width="997" caption="MathML en internet explorer"]<a href="http://drini.files.wordpress.com/2008/07/mathml2.png"><img class="size-full wp-image-61" src="http://drini.wordpress.com/files/2008/07/mathml2.png" alt="MathML en internet explorer" width="997" height="567" /></a>[/caption]
<p>El estándar MathML debería ser más utilizado, pero para ello es necesario que el soporte para ambos se extienda más por lo que ya saben... a instalar las fuentes stix y el mathplayer.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Starwars, Word For Word]]></title>
<link>http://mostinterestingstuff.wordpress.com/?p=3</link>
<pubDate>Wed, 23 Jul 2008 07:15:30 +0000</pubDate>
<dc:creator>J D</dc:creator>
<guid>http://mostinterestingstuff.wordpress.com/?p=3</guid>
<description><![CDATA[Or should we say letter by letter. Or number by number. Or those symbols on top of the letters that ]]></description>
<content:encoded><![CDATA[<p>Or should we say letter by letter. Or number by number. Or those symbols on top of the letters that someone decided to make them stand for characters that censor a vulgar word. I mean, how is #*@$ supposed to be demeaning in anyway? It's like saying, "I $*#&#38; your mom last night." "You what my mom?" See, you can't tell what I meant. Those characters could've stood for several different words. I could have said "I paid your mom last night" for a debt that I owed to her a few from stealing from you. You don't know me! Stick to English people. Leave the *$()# for the aliens in this Starwars movie. This isn't just a typical Starwars movie though. It's animated purely with ASCII code, or whatever the hell you call it. Anyways, enjoy.</p>
<p><a href="http://www.asciimation.co.nz/">Starwars Animated Text</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[ASCII/String Fun With JavaScript]]></title>
<link>http://machinesdontcare.wordpress.com/?p=579</link>
<pubDate>Tue, 22 Jul 2008 20:45:26 +0000</pubDate>
<dc:creator>toneburst</dc:creator>
<guid>http://machinesdontcare.wordpress.com/?p=579</guid>
<description><![CDATA[Prompted by a request to investigate animated text effects for VDMX, I decided to dust off a few lit]]></description>
<content:encoded><![CDATA[<p>Prompted by a request to investigate animated text effects for VDMX, I decided to dust off a few little techniques from my mispent early 20s as a Director/Lingo enthusiast. Notice the word 'enthusiast'; I never got particularly good at it, though I narrowly-missed getting a job as a fulltime Lingo coder, back when CDRom was still a novel idea.</p>
<p>I digress though: what we have here is a collection of basic string and ASCII effects, wrapped up in a simple demo QTZ. I'm not going to say too much about about how they work, because the code in each JavaScript module is pretty well-commented. It's pretty simple stuff really, but might look nice combined with some animation.</p>
<p>Here's some sample code. This is for a simple scroller, that moves the text along to the left, wrapping characters back to the end of the string when they fall 'off the beginning' (as it were).<br />
[code language='javascript']/*<br />
Shifts string left according to Offset value and<br />
wraps characters.<br />
With thanks to Memo<br />
*/</p>
<p>function (__string outputString) main (__string inputString, __number Offset)<br />
{<br />
	// Initialise vars<br />
	var result = new Object();<br />
	var outString = "";</p>
<p>	if(!_testMode) {<br />
		// Get length of input string<br />
		var chars = inputString.length;<br />
		// Get step size so that Offset values from 0 > 1 cycle through<br />
		// all characters in string once<br />
		var step = Offset * chars;<br />
		step = (step == chars) ? 0 : step;</p>
<p>		// Loop through string<br />
		for (i = 0; i < chars; i++) {<br />
			// Variable for index to read from inputString<br />
			var charIndex = i + step;<br />
			// Wrap string index<br />
			charIndex = (charIndex > chars) ? charIndex - chars : charIndex;<br />
			// Accumulate outString by reading from inputString at charIndex<br />
			outString += inputString.charAt(charIndex);<br />
		}<br />
	}</p>
<p>	// Set output string<br />
	result.outputString = outString;<br />
	// Output<br />
	return result;<br />
}[/code]</p>
<p>Note:<br />
Only the FX in the second half of the list use both input strings.<br />
The Mix Range control only works for the <em>String Randomise Range</em> and <em>2-String Wipe Range</em> effects.</p>
<p>QTZ <em>tb JS-ASCII Demo 1.0.3</em> 'in the widget'.</p>
<p><strong>EDIT:</strong><br />
New version uploaded. There are lots more things that could be done with this basic technique, but I'm going to leave it for the moment, so I can concentrate on other things. This final (for now) version (1.0.3) fixes a bug with the previous upload, and adds structure output ports to all the JS patches, which could be piped into an Iterator, if you wanted to individually animate the characters.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Conferencing Means Video]]></title>
<link>http://clancycross.wordpress.com/?p=111</link>
<pubDate>Tue, 22 Jul 2008 05:39:56 +0000</pubDate>
<dc:creator>clancycross</dc:creator>
<guid>http://clancycross.wordpress.com/?p=111</guid>
<description><![CDATA[Today&#8217;s Americans have spent most or all of their lives in the digital age.  So, its not surpr]]></description>
<content:encoded><![CDATA[<p>Today's Americans have spent most or all of their lives in the digital age.  So, its not surprising when the vanity plate on someone's sports car reads "ASCII 27" (<a href="http://web.cs.mun.ca/~michael/c/ascii-table.html" target="_blank">look it up here</a>) or another gives his age in hexadecimal (32<sub>16</sub> doesn't sound as old as "50").</p>
<blockquote><p><em><span style="color:#800000;">"There are only 10 kinds of people in the world: Those who understand binary, and those who don't."</span></em><span style="color:#800000;"> -- Unknown</span></p></blockquote>
<p>Granted, you are probably part of the geek sector if you think like this.  But, we have all been impacted by digital technology and it shows by the way we talk, the tools we use and the toys we play with.</p>
<p><strong>The 1980's</strong></p>
<p>I began my career in 1981 as a software developer working on a teleconferencing project at the University of Dayton Research Institute for the U.S. Air Force.  The system included large screen projection, a dual screen lectern with a "soft keyboard" and digitizing surface for electronic handwriting and control of the pointer. Images were called slides.  They could be either color business charts or digitized black and white camera images (aka freeze frame.) Separate software existed for creating the business slides, capturing and processing the B/W images, and for presenting the slides (like PowerPoint). All of the application software was homegrown by our research staff as well as the multipoint network controller.</p>
<p>The audio portion of the conference used a secure government conferencing bridge.  Hardcopy came in three forms: B/W thermal copies, 35mm color slides and 8x10 Polaroid prints. By 1985 we had customized and installed 5 complete multimedia and conferencing systems for the USAF, including the Logistic Command's command post.</p>
<p>Limited bandwidth, computing speed and memory prohibited full-motion video at that time. Our system provided control of the electronic slides, electronic pointer and real-time handwriting over a 4800 BPS connection. The computing platform consisted of PDP-11 class hardware running RT-11 and RSX-11 operating systems. In the 1980's, this was <em>bleeding edge stuff!</em></p>
<p><strong>The 1990's<br />
</strong><br />
While I had moved on to other software projects and without my permission, the teleconferencing industry continued to move forward.  I was drawn back into the communications arena when UDRI deployed our first email system.   Not long afterwards a colleague introduced me to the WorldWide Web. I immediately started creating Websites by hand coding HTML.  The Web remained my professional passion for the remainder of my career as a research scientist.</p>
<p>In between Web projects I found time to tinker with Webcams, Webinars, and various other communications tools.  Sometime around 1998 I participated in a point-to-point video conference at Wright-Patterson AFB and a demonstration by TeleSuite near Dayton, OH.  These were partly responsible for drawing me back to  the teleconferencing industry.</p>
<p><strong>2000 and Beyond</strong></p>
<p>More computing speed and memory is available in today’s run-of-the-mill laptop computer than a whole rack full of those PDP-11’s.  The combination of cheap computing power, widespread access to residential broadband and the viability of Voice Over IP (VoIP), set the table for what we all heard about in the 1960’s, what I flirted with in the 1980’s and what a few experienced in the late 1990’s – video conferencing.  In fact, today it is available and affordable for anyone, anywhere there is a broadband connection -- worldwide. I believe before long, the term "video conferencing" will be shortened to "conferencing" to eliminate redundancy.</p>
<p>Movies and television programs had shown us for years what to expect.  Even so, people seem to have been caught off guard by this technology.  It’s amusing to watch people experience their first video call.  Like puppies, kids are curious and fearless -- they can’t wait to sink their teeth into new stuff.  Adults are more like cats.  They tend to sneak up on the phone so they can see, but not be seen. But after a minute or two, some are waving, smiling, making faces, doing gestures and thoroughly enjoying the experience just like the pups, I mean the kids.  I never get tired of watching this scene.</p>
<p>I think any company that is considering an investment in video conferencing would be wise to get started with video phones.  The model I own is portable and hides in the corner of a suitcase.  It's easy to setup and use and very inexpensive.  When needed, it interfaces easily to other equipment like DVD players, video cameras, external sound systems, large screen televisions, and more.  It even acts like a regular phone when calling someone without video.  Video phones are an excellent training tool for other video experiences like broadcast quality video conferencing.</p>
<p>Sooner than expected, some companies will recognize the benefits of acquiring a customized, acoustically engineered video conference room with special lighting, multiple cameras, a control room and more.  This does not make those video phones obsolete.  Their benefits remain the same.</p>
<p><strong>Portability</strong> -- Take video phones on the road; loan video phones to key clients that do not have a video conferencing capability.</p>
<p><strong>Training</strong> -- Video phones are great for acclimating people to video calling.</p>
<p><strong>Low Cost</strong> -- Because not every video conference needs full-blown conference room treatment, video phones make video calling affordable company-wide.</p>
<p>Video conferencing has finally arrived.  <a href="http://www.globalinx.com/?bNew=True&#38;strRIN=L252085" target="_blank">Get started</a>, have fun and gain a competitive edge.</p>
<p>God bless,</p>
<p>-- CC</p>
<p class="MsoNormal" style="text-align:center;"><span style="font-size:xx-small;">©</span><span style="font-family:Arial;"><span style="font-size:xx-small;"> Copyright July 2008, Clancy Cross. All rights reserved.<br />
Read more “Clancy’s Quotes” at: <a title="Clancy's Quotes" href="../2008/07/05/">ClancyCross.WordPress.com</a></span></span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[＃1．これは?　ちょっと変だね]]></title>
<link>http://gaijinnokagakusha.wordpress.com/?p=21</link>
<pubDate>Fri, 18 Jul 2008 03:59:07 +0000</pubDate>
<dc:creator>Derek Thomas</dc:creator>
<guid>http://gaijinnokagakusha.wordpress.com/?p=21</guid>
<description><![CDATA[これ、やさしいと思うけど。さあ、何を考えている？

MMMMMMMMMMMMMMMMMMMMMMMWNN]]></description>
<content:encoded><![CDATA[<p>これ、やさしいと思うけど。さあ、何を考えている？</p>
<div class="asciiImage">
<pre>MMMMMMMMMMMMMMMMMMMMMMMWNNXK0000KKNNWMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMWNKOkxdollllccllllooxkOKNWMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMNKkdlcccccccccccccccccccccclok0NMMMMMMMMMMMMMM
MMMMMMMMMMMWKkocccccccccccccccccccccccccccccclx0NMMMMMMMMMMM
MMMMMMMMMNOoccccccccccccccccccccccccccccccccccccoONMMMMMMMMM
MMMMMMMNOocccccccccccccccccccccccccccccccccccccccclkNMMMMMMM
MMMMMMKoccccccccccccccccccccccccccccccccccccccccccccl0WMMMMM
MMMMMKdooooooooooooooooooooooooooooooooooooooooooooood0WMMMM
MNXXXKKKKKKKKKKKKKKKKKKKKKXWWWXWWWXKKKKKKKKKKKKKKKKKKKKXXXXW
WxllllllllllllllllllllldkKX0koldk0X0kolclllllllllllllllllloN
WxcccccccccccccccccldOKX0xlcccccclox0X0xocccccccccccccccccoN
Wxccccccccccccccox0KKOdlcccccccccccccox0KKkolcccccccccccccoN
WkollllllllolokKNKkdlllllllllllllollllllox0NXOollllllllllldN
WXKKKKKKKKKKXWNXK0KNXKKKKKNXKKK0XNX0KK0XNK0KXXWXKKKKKKKKK0KW
WOxolcccccccxNxcccoXKlcccdWOccccxWkclccONocccoNKlcccccccoxkN
MXKxcccccccckNxccclXKlcccdWOccccxWkccccONocccoNKlccccccco0KW
WxllcccccccckNxccclXKccccdWOccccxWkccccONocccoNKlccccccclloN
WxllcccccccckNxccclXKlcccdWOccccxWkccccONocccoNKlccccccclloN
WkO0occccccckNxccclXKlcccdWOccccxWkccccONocccoNKlcccccclk0xN
WxodlccccccckNxccclXKlcccdWOccccxWkccccONocccoNKlccccccloddN
WxcccllccccckNxccclXKlcccdWOccccxWkccccONocccoNKlcccccccccoN
WxccokklcccckNxccclXKlcccdWOccccxWkclccONocccoNKlccclxOdlcoN
WxccokxlcccckNxccclXKlcccdWOccccxWkclccONocccoNKlcccldkdlcoN
WxcccccccllckNxccclXKccccdWOccccxWkccccONocccoNKllllccccccoN
Wxccccclo00oxNxccclXKlcccdWOcllcxWkccccONocccoNKoOKdlcccccoN
MXKKKKKKKXXKXWXKKKKNNKK0KKWNKK0KXWXKKKKNWKKKKKWNKXXKKK0K0KKW
WOddddddddddOW00XkddddddddddddddddddddddddxKKOWXxdddddddddxN
WxcccccccccckNxxkoccllxdlccccllccccldxllcclxxdNKlcccccccccoN
WxllllllllllkNxcllllloOOolllo0KdllllO0dlllllloNKlllllllllloN
WX0000000000XWK00000000000000XXK0000000000000KWNK000000000KW</pre>
</div>
<p><a href="http://asciiconvert.com/" target="_blank">ASCIIconvert.com</a>で作った。使ってみて！</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[What is that? #2]]></title>
<link>http://sciencetraveler.wordpress.com/?p=218</link>
<pubDate>Thu, 17 Jul 2008 17:25:27 +0000</pubDate>
<dc:creator>Derek Thomas</dc:creator>
<guid>http://sciencetraveler.wordpress.com/?p=218</guid>
<description><![CDATA[OK OK, I bet this is pretty easy, but using a pretty nifty ASCII Converter, I made the following ima]]></description>
<content:encoded><![CDATA[<p>OK OK, I bet this is pretty easy, but using a pretty nifty ASCII Converter, I made the following image. What are your guesses?</p>
<div class='asciiImage'>
<pre>MMMMMMMMMMMMMMMMMMMMMMMWNNXK0000KKNNWMMMMMMMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMMMMWNKOkxdollllccllllooxkOKNWMMMMMMMMMMMMMMMMM
MMMMMMMMMMMMMMNKkdlcccccccccccccccccccccclok0NMMMMMMMMMMMMMM
MMMMMMMMMMMWKkocccccccccccccccccccccccccccccclx0NMMMMMMMMMMM
MMMMMMMMMNOoccccccccccccccccccccccccccccccccccccoONMMMMMMMMM
MMMMMMMNOocccccccccccccccccccccccccccccccccccccccclkNMMMMMMM
MMMMMMKoccccccccccccccccccccccccccccccccccccccccccccl0WMMMMM
MMMMMKdooooooooooooooooooooooooooooooooooooooooooooood0WMMMM
MNXXXKKKKKKKKKKKKKKKKKKKKKXWWWXWWWXKKKKKKKKKKKKKKKKKKKKXXXXW
WxllllllllllllllllllllldkKX0koldk0X0kolclllllllllllllllllloN
WxcccccccccccccccccldOKX0xlcccccclox0X0xocccccccccccccccccoN
Wxccccccccccccccox0KKOdlcccccccccccccox0KKkolcccccccccccccoN
WkollllllllolokKNKkdlllllllllllllollllllox0NXOollllllllllldN
WXKKKKKKKKKKXWNXK0KNXKKKKKNXKKK0XNX0KK0XNK0KXXWXKKKKKKKKK0KW
WOxolcccccccxNxcccoXKlcccdWOccccxWkclccONocccoNKlcccccccoxkN
MXKxcccccccckNxccclXKlcccdWOccccxWkccccONocccoNKlccccccco0KW
WxllcccccccckNxccclXKccccdWOccccxWkccccONocccoNKlccccccclloN
WxllcccccccckNxccclXKlcccdWOccccxWkccccONocccoNKlccccccclloN
WkO0occccccckNxccclXKlcccdWOccccxWkccccONocccoNKlcccccclk0xN
WxodlccccccckNxccclXKlcccdWOccccxWkccccONocccoNKlccccccloddN
WxcccllccccckNxccclXKlcccdWOccccxWkccccONocccoNKlcccccccccoN
WxccokklcccckNxccclXKlcccdWOccccxWkclccONocccoNKlccclxOdlcoN
WxccokxlcccckNxccclXKlcccdWOccccxWkclccONocccoNKlcccldkdlcoN
WxcccccccllckNxccclXKccccdWOccccxWkccccONocccoNKllllccccccoN
Wxccccclo00oxNxccclXKlcccdWOcllcxWkccccONocccoNKoOKdlcccccoN
MXKKKKKKKXXKXWXKKKKNNKK0KKWNKK0KXWXKKKKNWKKKKKWNKXXKKK0K0KKW
WOddddddddddOW00XkddddddddddddddddddddddddxKKOWXxdddddddddxN
WxcccccccccckNxxkoccllxdlccccllccccldxllcclxxdNKlcccccccccoN
WxllllllllllkNxcllllloOOolllo0KdllllO0dlllllloNKlllllllllloN
WX0000000000XWK00000000000000XXK0000000000000KWNK000000000KW
</pre>
</div>
<p>image created via <a href="http://asciiconvert.com/" target="_blank">ASCIIconvert.com</a></p>
<p>********</p>
<p><a href="http://sciencetraveler.wordpress.com/2008/03/06/was-ist-das-1/#more-20" target="_blank">What is that #1</a> answers....<br />
That's right, mom and dad, you are the lucky winners today. Ya, so you were the only two who even attempted ...</pre>
<ol>
<li>
<pre>Massive 5 in buttons for a bathroom light (you said toilet ... close enough)</pre>
</li>
<li>
<pre>The red plugs were actually the surge protected buttons ... but meh</pre>
</li>
</ol>
<h2>Jonny, tell them what they won, just for playing...</h2>
<h4>That's right, *WINK*. Our consolation prize is ... this handy dandy highlighter. Come on down and pick it up!</h4>
<p><img class="alignnone size-medium wp-image-220" src="http://sciencetraveler.wordpress.com/files/2008/07/highlighter-yellow.jpg?w=300" alt="" width="108" height="108" /></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[هنرهایی با کد اسکی کاراکترها]]></title>
<link>http://gilak.wordpress.com/?p=21</link>
<pubDate>Sun, 13 Jul 2008 15:12:41 +0000</pubDate>
<dc:creator>gilak</dc:creator>
<guid>http://gilak.wordpress.com/?p=21</guid>
<description><![CDATA[
اسکیوماتیک یک نمونه جالب عینی شدن هنر بازی با کاراکتره]]></description>
<content:encoded><![CDATA[<p style="text-align:center;"><img class="alignnone" src="http://www.mozila.pl/blog/wp-content/uploads/2007/03/Firefox_ascii_2.jpg" alt="" width="444" height="382" /></p>
<p style="text-align:right;"><a href="http://www.typorganism.com/asciiomatic/">اسکیوماتیک</a> یک نمونه جالب عینی شدن <a href="http://en.wikipedia.org/wiki/ASCII_art">هنر بازی با کاراکترهای اسکی برای درست کردن تصویرهای دلخواه</a> هستش. برخلاف بیشتر ابزارهای بازی با کد های اسکی و درواقع هنرهای اسکی که صرفا شما می تونین با استفاده از کدهای اسکی <a href="http://en.wikipedia.org/wiki/Typography">تایپوگرافی</a> کنین یا اینکه از یک سری طرح های پیش ساخته استفاده کنین این ابزار که بر پایه فلش هستش شما رو قادر می کنه که تصاویر رو خودتون بهش وارد کنین تا هنر اسکی اش ازش آماده بشه</p>
<p style="text-align:right;">دو تا خاصیت جدید هم توی این سایت دیدم که یکی استفاده از مربع های رنگی بودش که شما می تونین تصویر خروجی رو به صورت مجموعه ای از مربع های رنگی بگیرین که بینشون فاصله های کوچکی هستش و دوم اینکه می تونین مجموعه اسکی خروجی تونو بصورت رنگی بگیرین</p>
<p style="text-align:right;">از اونجا که از این هنرهای اسکی می شه به عنوان <a href="http://en.wikipedia.org/wiki/Avatar_(virtual_reality)">آواتار</a> توی فاروم ها و شبکه های اجتماعی استفاده کرد به نظر می رسه هر جا که بشه آواتار رو با یک ادیتور ویزویگ به مقصد وارد کرد می شه با استفاده از هنرهای اسکی <a href="http://www.typorganism.com/asciiomatic/">همین سایت</a> باهاش آواتارهای متنی خیلی جالبی رو تعریف کرد</p>
<p style="text-align:right;">فقط یادتون باشه هرچقدر عرض فایلی که داره به کد اسکی تبدیل می شه کمتر باشه امید می ره که کمتر قالبش بشکنه بخاطر کمبود عرض صفحه و <a href="http://en.wikipedia.org/wiki/Word_wrap">ورد رپ</a></p>
<p style="text-align:right;">ضمنا تا زمانی که خروجی اچ تی ام ال نگرفتین امکان کپی و پیست کدهای اسکی وجود نخواهند داشت</p>
<p style="text-align:right;">امیدوارم که <a href="http://www.typorganism.com/asciiomatic/">این سایت</a> مورد پسندتون قرار بگیره</p>
<p style="text-align:right;">آدرس دقیق</p>
<p style="text-align:left;"><a href="http://www.typorganism.com/asciiomatic/">http://www.typorganism.com/asciiomatic/</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Marvels of technology]]></title>
<link>http://morvis13.wordpress.com/?p=8</link>
<pubDate>Sat, 12 Jul 2008 10:45:52 +0000</pubDate>
<dc:creator>Morvis13</dc:creator>
<guid>http://morvis13.wordpress.com/?p=8</guid>
<description><![CDATA[So here I am typing on a mobile handheld more powerful then my first computer 20 years ago and think]]></description>
<content:encoded><![CDATA[<p>So here I am typing on a mobile handheld more powerful then my first computer 20 years ago and thinking. "We sure do take advantage of our technology and how many actually stop to understand how it works?" Again I'll be generalizing but if you need more leave a comment for further topics.</p>
<p>Really as I press a key it connects a switch that sends off an electrical signal to tiny piece of sand. Ok its a very sophisticated silicon chip but in essence that alone is prolly deeper then some have gone. I know my mother would never get that far.</p>
<p>The processor then does some magic in storing the keystroke in a buffer and echos the typed character out to the screen. Did I forget to mention the character isn't actually stored as we see it? The switch is an electric signal of on and off the computer sees as zeros and ones. This set of numbers represents the character from the ascii table my computers happens to have set as its code page. This gets really deep if you dig into unicode but in not going there today.</p>
<p>Instead I was thinking of texting on mobiles and the message magically appears on a friends mobile. This process is just as forgotten as the unicode table is for my mother.</p>
<p>So what happens when I hit send? Well really the whole thing started off when you turned your phone on. The first thing the radio does is send a signal out on all the bands it knows of. The phone announces "Here I am!" And hopefully a cell tower picks it up and passes the message to a base station.</p>
<p>The station then says "I hears you and these are all the cell towers around you. Send me your info"<br />
The cell sends its identification and this is verified thru the network with the carrier that you get the bill from.</p>
<p>Now let's actually send a sentence of data. If its short it will actually fit in one data packet. The packet is an envelop with the address of the destination and source. It has error checking added in and away it goes.</p>
<p>Now for longer stuff like this post it will be broken up into many many packets and each one will be enumerated (given a number). They race through the network and do not have to follow the same path. One packer goes from cell tower 1 to base station 1 to switch 1 to data line 1 to router 1 to any number of routers to a destination. There are almost endless paths and we could add in microwave towers, optical switches, satellites and all kinds of crazy stuff.</p>
<p>Since we are transmitting through the air a lot can happen. We can bounce signal's off walls, off clouds, cars, trains, airplanes and even dust. Packets get corrupted on the way and the computers need to know how to reassemble the information. That's where the enumeration and error checking comes in. It is best I'd the error can be corrected and you'd be surprised at some of the routines that can be used to do this. Usually the destination will ask to retransmit at least one packet and that one piece gets sent</p>
<p>Other radio signals also get in the way. We actually share the same bandwidth with tens of thousands of people every second. The carrier will set up several channels in the band and they are time division up to send and receive at certain intervals. At any time you could be switching channels slowing down or speeding up your signal to be synchronized in the air.</p>
<p>Now since we are mobile add in the complexity of moving between cell towers and adding different paths. Doppler effects and general relativity adjustments for satellite communications it is a wonder anything gets communicated at all.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Some works of the week...]]></title>
<link>http://c4rin3.wordpress.com/?p=63</link>
<pubDate>Thu, 10 Jul 2008 18:25:45 +0000</pubDate>
<dc:creator>c4rin3</dc:creator>
<guid>http://c4rin3.wordpress.com/?p=63</guid>
<description><![CDATA[



]]></description>
<content:encoded><![CDATA[<p><img class="alignnone" src="http://fc05.deviantart.com/fs32/f/2008/193/6/5/Ascii_project_THX1138_01_by_c4rin3.jpg" alt="" width="500" height="353" /></p>
<p><img class="alignnone" src="http://fc05.deviantart.com/fs32/f/2008/193/6/5/Ascii_project_ExistenZ_01_by_c4rin3.jpg" alt="" width="500" height="353" /></p>
<p><img class="alignnone" src="http://fc04.deviantart.com/fs32/f/2008/192/b/0/Ascii_project_Scanners_by_c4rin3.jpg" alt="" width="500" height="353" /></p>
<p><img class="alignnone" src="http://fc01.deviantart.com/fs31/f/2008/190/8/9/Ascii_project_Strange_day_01_by_c4rin3.jpg" alt="" width="500" height="353" /></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Mais Star Wars]]></title>
<link>http://nerdmodeon.wordpress.com/?p=570</link>
<pubDate>Thu, 10 Jul 2008 17:29:01 +0000</pubDate>
<dc:creator>Silent B</dc:creator>
<guid>http://nerdmodeon.wordpress.com/?p=570</guid>
<description><![CDATA[Já saíram coisas sobre Star Wars em todos os fomatos concebíveis, certo? ERRADO, nerd!
Clicando a]]></description>
<content:encoded><![CDATA[<p style="text-align:justify;">Já saíram coisas sobre Star Wars em todos os fomatos concebíveis, certo? ERRADO, nerd!</p>
<p style="text-align:justify;">Clicando <a href="http://www.asciimation.co.nz/"><strong>aqui</strong></a> você pode ver o Episódio IV - Uma Nova Esperança totalmente refeito em codificação ASCII - é, naquele esquema de desenhos com símbolos do windows. É o filme <strong>inteiro</strong> reencenado por letras e símbolos!</p>
<p style="text-align:justify;">Em alguns momentos é um pouco tosco, mas tem algumas passagens que merecem o crédito. Tudo em flash, com um player simples e leve. Dá uma olhada!</p>
<p style="text-align:justify;">Agora, se você quer algo mais "sofisticado", clique <a href="http://www.dailymotion.com/video/x5rctg_mandalorian-dance_fun" target="_blank"><strong>aqui</strong></a> e veja o Boba Fett dançando o tema de <strong>Flashdance</strong> :D</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Mi foto en arte ASCII]]></title>
<link>http://chitiore.wordpress.com/?p=667</link>
<pubDate>Thu, 10 Jul 2008 04:24:41 +0000</pubDate>
<dc:creator>chitiore</dc:creator>
<guid>http://chitiore.wordpress.com/?p=667</guid>
<description><![CDATA[El código ASCII es un grupo de caracteres basado en el alfabeto latino. Fue creado en 1963 como evo]]></description>
<content:encoded><![CDATA[<p style="text-align:justify;"><a href="http://chitiore.wordpress.com/2008/07/09/retrato-asci/"><img class="size-full wp-image-669 alignleft" src="http://chitiore.wordpress.com/files/2008/07/yo-ascii-small.jpg" alt="" width="108" height="142" /></a>El <a href="http://es.wikipedia.org/wiki/Ascii">código ASCII</a> es un grupo de caracteres basado en el alfabeto latino. Fue creado en 1963 como evolución de los códigos utilizados en la <a href="http://es.wikipedia.org/wiki/Telegraf%C3%ADa">telegrafía</a> y actualmente se usa como el conjunto de caracteres funcionales en las computadoras. Es decir, cada carácter (letra, numero, signo de puntuación, etc) es representado por un número en el código ASCII.</p>
<p style="text-align:justify;">Por ejemplo, el carácter <em><strong>ñ</strong></em> representa el numero 164 en el código <a href="http://www.asciitable.com/">ASCII para Windows</a> (por eso cuando uno teclea ALT+164 se despliega ese carácter).</p>
<p style="text-align:justify;">Pero bueno, este post no es sobre clases de informática, así que continuemos. Muchas personas creativas han desarrollado el <a href="http://es.wikipedia.org/wiki/Arte_ASCII"><em><strong>arte ASCII</strong></em></a>, que no es mas que crear <a href="http://chitiore.files.wordpress.com/2008/07/gato.jpg">imágenes</a>, <a href="http://www.asciimation.co.nz/">animaciones</a> y otras obras de arte utilizando solamente caracteres del mencionado código. Ya que los caracteres del código tienen diferentes formas y tamaños, al agruparlos adecuadamente se pueden simular lineas, círculos, contornos e incluso profundidades y sombras. Es realmente sorprendente!</p>
<p style="text-align:justify;"><!--more--></p>
<p style="text-align:justify;">Navegando en Internet encontré una página donde uno puede subir una foto para que un mecanismo la convierta en arte ASCII. Me imagino que el proceso para lograrlo consiste en analizar el color de los pixels, y luego sustituirlos con un carácter que tenga el tamaño adecuado para representarlos. Posteriormente, se le aplica el color adecuado.</p>
<p style="text-align:justify;">El asunto es que subí mi foto y obtuve el siguiente resultado:</p>
<p style="text-align:center;"><strong>Foto Original</strong></p>
<p style="text-align:left;"><a href="http://chitiore.files.wordpress.com/2008/07/personalphoto.jpg"><img class="size-medium wp-image-670 aligncenter" src="http://chitiore.wordpress.com/files/2008/07/personalphoto.jpg?w=206" alt="" width="285" height="369" /></a></p>
<p style="text-align:center;"><span style="color:#ffffff;">-</span></p>
<p style="text-align:center;"><strong>Foto en arte ASCII:<br />
</strong></p>
<p style="text-align:left;"><a href="http://chitiore.files.wordpress.com/2008/07/yo-ascii-big.jpg"><img class="size-full wp-image-669 aligncenter" src="http://chitiore.wordpress.com/files/2008/07/yo-ascii-small.jpg" alt="" width="290" height="381" /></a></p>
<p style="text-align:center;"><span style="font-size:xx-small;">(click sobre la imagen para ampliarla)</span></p>
<p style="text-align:left;"><span style="color:#ffffff;">-</span></p>
<p style="text-align:left;">¿Nítido verdad? La página se llama <strong>Asciiconvert</strong> y su uso es totalmente gratis. Dejo el link para que lo prueben y por supuesto, dejen su <a href="http://chitiore.wordpress.com/2008/07/09/retrato-asci/#comment">comentario</a>:</p>
<div class="topBanner"><a href="http://asciiconvert.com/"></a></div>
<p style="text-align:center;"><a href="http://asciiconvert.com/" target="_blank"><img style="border:medium none;" src="http://images.asciiconvert.com/gfx/asciilogo-grey.png" alt="ascii convert logo" /></a></p>
<p style="text-align:justify;">___________________________________________________________</p>
<p style="text-align:justify;"><strong>Te gustó lo que leiste? Vota por este post haciendo click <a href="http://bitacoras.com/votar/anotacion/externo/favicon/chitiore.wordpress.com/2008/07/09/mi-foto-en-arte-ascii" target="_blank">aqui.</a></strong></p>
<p>___________________________________________________________</p>
<p><strong>Temas relacionados:</strong></p>
<ul>
<li>
<a title="Si yo fuera caricatura…" rel="bookmark" href="../2008/04/17/si-yo-fuera-caricatura/">Si yo fuera caricatura…</a></h2>
</li>
<li><a title="El final del Internet" rel="bookmark" href="../2008/06/19/el-final-del-internet/">El final del Internet</a></li>
<li><a title="Enlace Permanente a Cuando castigan a un programador" rel="bookmark" href="../2008/06/13/cuando-castigan-a-un-programador/">Cuando castigan a un programador</a></li>
</ul>
<p style="text-align:left;">
]]></content:encoded>
</item>
<item>
<title><![CDATA[Poze facute din caractere ASCII]]></title>
<link>http://own89attitude.wordpress.com/?p=46</link>
<pubDate>Tue, 08 Jul 2008 20:38:39 +0000</pubDate>
<dc:creator>parazitu</dc:creator>
<guid>http://own89attitude.wordpress.com/?p=46</guid>
<description><![CDATA[Am ramas placut surprins sa aflu ca una din artele moderne este creare de poze din caracterele ASCII]]></description>
<content:encoded><![CDATA[<p>Am ramas placut surprins sa aflu ca una din artele moderne este creare de poze din caracterele ASCII. <strong>ASCII</strong> (cu pronunţia aproximativă 'e-schi) este acronimul pentru  <em><strong>A</strong>merican <strong>S</strong>tandard <strong>C</strong>ode for <strong>I</strong>nformation  <strong>I</strong>nterchange</em>, ceea ce înseamnă "Codul Standard American pentru  Schimbul de Informaţii". ASCII reprezintă un sistem de codificare a caracterelor  bazat pe alfabetul englez. Codurile ASCII reprezintă caractere text pentru  calculatoare, echipamente de comunicaţie şi echipamente care lucrează cu text.  Marea parte a codificărilor moderne, care asigură reprezentarea a şi mai multor  caractere, se bazează pe ASCII, mai pe intelesul tuturor toate literele alfabetului englez plus caracterele speciale.</p>
<p>Ei bine cu ajutoru acestor caracterii acesti artisti moderni, dau nastere la niste poze nemaipomenite. Puteti vedea clasamentul celor mai reusite poze si pozele in sine <a href="//www.plugin.ro/articol/Software/2355/Super-poze-facute-din-caractere-ASCII.html"><strong> aici</strong></a> .<br />
Sursa <a href="http://www.plugin.ro">www.plugin.ro</a>,<a href="http://wikipedia.org">wikipedia.org</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Hidden Gemz: Ascii From Tha Vault #001]]></title>
<link>http://asciigod.wordpress.com/?p=64</link>
<pubDate>Tue, 08 Jul 2008 07:50:05 +0000</pubDate>
<dc:creator>asciigod</dc:creator>
<guid>http://asciigod.wordpress.com/?p=64</guid>
<description><![CDATA[I had completely forgotten about this ascii. Found it while randomly surfing the interweb. Thanks to]]></description>
<content:encoded><![CDATA[<p>I had completely forgotten about this ascii. Found it while randomly surfing the interweb. Thanks to Lord Scarlet for his <a title="16Colorz" href="http://www.sixteencolors.net" target="_blank">16 colors </a>site, where this was hosted.</p>
<p>This is what I'll call a "Mega-Joint". Strangely, the time stamp on 16 Colors points this towards being drawn in 2001, which makes sense with some of the imagery in the ascii (WTC Towers, terrorists, burning flags - Canadian ascii sceners were a notoriously jealous bunch). At this time, the ascii scene was already bemoaning the fact that it was "dead". Yet here we see the output of five artists as we drew simultaneously in Pablodraw. Try getting something like that going these days.</p>
<p>For the record, and to answer the questions posed in the impromptu "chat area" at the bottom of the canvas, <em>i</em> drew the dicks. You're welcome.</p>
[wp_caption id="attachment_65" align="aligncenter" width="640" caption="This is how we chill"]<a href="http://asciigod.files.wordpress.com/2008/07/we-p2qfxans.png"><img class="size-full wp-image-65" src="http://asciigod.wordpress.com/files/2008/07/we-p2qfxans.png" alt="This is how we chill" width="640" height="3712" /></a>[/wp_caption]
]]></content:encoded>
</item>
<item>
<title><![CDATA[Ascii to image]]></title>
<link>http://max1.wordpress.com/?p=37</link>
<pubDate>Thu, 03 Jul 2008 20:46:12 +0000</pubDate>
<dc:creator>m4xi</dc:creator>
<guid>http://max1.wordpress.com/?p=37</guid>
<description><![CDATA[Buat yang seneng install program
pasti sering menemukan gambar Ascii
yang ada di read me panduan cra]]></description>
<content:encoded><![CDATA[<p>Buat yang seneng install program<br />
pasti sering menemukan gambar Ascii<br />
yang ada di read me panduan cra**k programnya.</p>
<p>Nah biasanya di bagian header terdapat gambar-gambar yang unik,<br />
yang tersusun dari huruf Ascii.<br />
Sebenarnya gambar itu nggak di buat manual lho.</p>
<p>Tapi, menggunakan software<br />
untuk Pic dibawah ini saya menggunakan Ascii Generator.<br />
Ukuran file relatif kecil kok, 136 kb.<br />
tapi beberapa memerlukan .NET framework 2.0.<br />
<!--more--><br />
Berikut salah satu hasil gambar dengan Ascii Generator,</p>
<p><img class="alignnone" src="http://i283.photobucket.com/albums/kk317/NEOSAURUS/ASCII-maximo.gif" alt="" /></p>
<p>Untuk downloadnya disini:<br />
<a href="http://gudangupload.com/filelink.php?filecode=83409b744044f5fa8e836e5468370ec2" target="_blank">DOwnload Ascgen</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Website bagus!!]]></title>
<link>http://antonie.wordpress.com/?p=126</link>
<pubDate>Tue, 01 Jul 2008 07:35:53 +0000</pubDate>
<dc:creator>antonie</dc:creator>
<guid>http://antonie.wordpress.com/?p=126</guid>
<description><![CDATA[Hari ini kutemukan sebuah website bagus yang mengilhami topik skripsi mahasiswa TI, sebuah website y]]></description>
<content:encoded><![CDATA[<p>Hari ini kutemukan sebuah website bagus yang mengilhami topik skripsi mahasiswa TI, sebuah website yang mampu mengubah gambar ke teks dengan pola yang sama dengan gambarnya, tapi berisikan tulisan dengan huruf-huruf seperti yang kita inputkan... dan hebatnya lagi hasil akhirnya adalah gambar lagi...</p>
<p>Jadi menurut saya, ada 2 macam proses yang dilakukan:<br />
1.  Gambar ke teks untuk dibentuk pola gambar dengan isi teks yang sesuai inputan<br />
2.  Dari teks tersebut ke gambar lagi dengan ukuran tertentu.</p>
<p>Algoritma nya mirip dengan ASCIIArt hanya saja kali ini teksnya berwarna, dan kemudian tentu ada edge detection dan berbagai algoritma citra lain.  Lalu pengubahan dari pola teks ke gambar lagi...</p>
<p>Ada yang berminat?? silahkan kunjungi <a href="http://textorizer.whatfettle.com/" target="_blank">http://textorizer.whatfettle.com/</a></p>
<p>Contoh gambar hasil:<br />
<img src="http://textorizer.whatfettle.com/?image=http%3A%2F%2Fwww.flickr.com%2Fimages%2Fflickr_logo_beta.gif&#38;text=antonie&#38;nstrokes=350&#38;threshold=100&#38;width=400&#38;height=200" alt="Textorizer" /></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[I look awesome in...]]></title>
<link>http://tehjournalist.wordpress.com/?p=23</link>
<pubDate>Sun, 29 Jun 2008 11:53:25 +0000</pubDate>
<dc:creator>jfxlive</dc:creator>
<guid>http://tehjournalist.wordpress.com/?p=23</guid>
<description><![CDATA[ASCII? No.

Can&#8217;t get much better than that. 
]]></description>
<content:encoded><![CDATA[<p>ASCII? No.<br />
<a href="http://tehjournalist.files.wordpress.com/2008/06/ascii.jpg"><img src="http://tehjournalist.wordpress.com/files/2008/06/ascii.jpg" alt="Me in ASCII" width="270" height="337" class="aligncenter size-full wp-image-22" /></a></p>
<p>Can't get much better than that. :)</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Tabela ASCII]]></title>
<link>http://adscesumar2008.wordpress.com/?p=54</link>
<pubDate>Sat, 28 Jun 2008 16:33:05 +0000</pubDate>
<dc:creator>xxshengxx</dc:creator>
<guid>http://adscesumar2008.wordpress.com/?p=54</guid>
<description><![CDATA[Olá pessoal.
To trazendo aqui para vocês um arquivo de grande ajuda. Para ser mais claro, o arquiv]]></description>
<content:encoded><![CDATA[<p style="text-align:justify;">Olá pessoal.</p>
<p>To trazendo aqui para vocês um arquivo de grande ajuda. Para ser mais claro, o arquivo contém os valores em DEC, HEX e OCTAL da tabela ASCII, uma pequena solução para os problemas com acentos e coisas do gênero. Aqui alguns exemplos.</p>
<p><strong><span style="color:#ff0000;">-&#62; </span></strong>printf (“ENDERE%cO”, 199); // 199 == Ç</p>
<p><strong><span style="color:#ff0000;">-&#62; </span></strong>printf (“%c muito dif%ccil n%co saber nada”, 201, 237, 227); // 201 == É &#124; 237 == í &#124; 227 == ã</p>
<p><span style="color:#ff0000;"><strong>-&#62;</strong></span> <a href="http://mihd.net/9xdueoq" target="_self">CLIQUE AQUI</a> e faça o download do arquivo.</p>
<p>Bom é isso, espero ter ajudado a galera interessada. Até a próxima oportunidade.</p>
<p>Fui...</p>
<p style="text-align:center;"><img class="aligncenter" src="http://img501.imageshack.us/img501/1306/20ky6.png" alt="" /></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Customizzare il terminale di OS X]]></title>
<link>http://coobox.wordpress.com/?p=622</link>
<pubDate>Thu, 26 Jun 2008 07:15:39 +0000</pubDate>
<dc:creator>Coobox</dc:creator>
<guid>http://coobox.wordpress.com/?p=622</guid>
<description><![CDATA[
Mac OS X come Linux è un OS Unix based quindi da qualche parte avrà il suo MOTD (Motiv of the day]]></description>
<content:encoded><![CDATA[<p><img src="http://img82.imageshack.us/img82/6981/cooboxterminalsb3.jpg"/></p>
<p>Mac OS X come Linux è un OS Unix based quindi da qualche parte avrà il suo MOTD (Motiv of the day).</p>
<p>Infatti è in /etc/motd , di default è vuoto.</p>
<p>Per prima cosa creiamoci la nostra insegna ascii su questo sito <a href="http://ascii.mastervb.net/">qui</a> e poi procediamo alla modifica del file come segue:</p>
<p>Lanciate il terminale di OSX e digitate:</p>
<p><code>sudo nano /etc/motd</code></p>
<p>Copiate e incollate il testo ascii generato una volta icollato fate un <em>ctrl+o </em>seguito da <em>invio</em> per salvare e <em>ctrl+x per</em> uscire.</p>
<p>Chiudete e rilanciare il terminale e il gioco è fatto.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Convertir imagen a HTML | ASCII | MATRIX]]></title>
<link>http://superarteh.wordpress.com/2008/06/25/30/</link>
<pubDate>Wed, 25 Jun 2008 15:21:16 +0000</pubDate>
<dc:creator>superarteh</dc:creator>
<guid>http://superarteh.wordpress.com/2008/06/25/30/</guid>
<description><![CDATA[

Text-Image es una página web que genera imágenes de texto con las fotografías de tu ordenador. ]]></description>
<content:encoded><![CDATA[<p><IMG SRC="http://www.superarteh.com/wordpress/post/blog/diseno/utilidades/diseno_utilidades_0001.gif"></p>
<p><FONT FACE="arial, helvetica" COLOR="#afafb4"></p>
<p><B><A HREF="http://www.text-image.com" TARGET="_blank">Text-Image</A></B> es una página web que genera imágenes de texto con las fotografías de tu ordenador. Tiene 3 conversores (html, ascii y efecto "matrix"), mediante los formularios de cada uno puedes subir la imagen que quieras y elegir entre las diferentes opciones que ofrece, como los caracteres y la cantidad de ellos a utilizar, gama cromática, color de fondo... y descargar el código una vez finalizado.</p>
<p>Lo más parecido en software libre que he descubierto es <FONT COLOR="#0066cc"><B><A HREF="http://asciimilator.softonic.com" TARGET="_blank">Asciimilator 1.0</A></B></FONT>, para los que prefieran instalar un programa antes que convertir las imágenes a través de una web, ya que nunca se sabe cuando dejará de existir y nos ahorramos el subir las imágenes a su servidor, aunque solo funciona con imágenes en *.bmp.</p>
<p></FONT></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Ascii Art Studio 2.1.1]]></title>
<link>http://thenightwhisper.wordpress.com/?p=38</link>
<pubDate>Sat, 21 Jun 2008 22:50:10 +0000</pubDate>
<dc:creator>thenightwhisper</dc:creator>
<guid>http://thenightwhisper.wordpress.com/?p=38</guid>
<description><![CDATA[Aquí les traigo este pequeño programa que les facilitara mucho las cosas a la hora de hacer una im]]></description>
<content:encoded><![CDATA[<p>Aquí les traigo este pequeño programa que les facilitara mucho las cosas a la hora de hacer una imagen con caracteres. Se llama "ascii art studio", y con este programa podrán crear imagenes como esta:</p>
<p><strong>(click en la imagen para agrandar)</strong></p>
<p><a title="ascii art" href="http://www.fileden.com/files/2008/6/2/1942173/ascii%20art.jpg" target="_blank"><img class="alignnone" src="http://www.fileden.com/files/2008/6/2/1942173/ascii.jpg" alt="ascii" /></a></p>
<p>Bueno aquí se los dejo sin mas rodeos:</p>
<ul>
<blockquote>
<li>http://www.adrive.com/home/downloadfile/38072469</li>
</blockquote>
</ul>
<p>espero que les sirva de algo! hasta luego!</p>
<p><em><strong>j0n.4x0</strong></em></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Сиське]]></title>
<link>http://sickinthehead.wordpress.com/?p=78</link>
<pubDate>Mon, 16 Jun 2008 23:25:03 +0000</pubDate>
<dc:creator>sickinthehead</dc:creator>
<guid>http://sickinthehead.wordpress.com/?p=78</guid>
<description><![CDATA[    ?.$$$$$"     `L         ;;;;;;;,          .`.`.`.`$;??h,_        `h
     ?$$$$$       ""'       ]]></description>
<content:encoded><![CDATA[<pre><span style="color:#ff6600;">    ?.$$$$$"     `L         ;;;;;;;,          .`.`.`.`$;??h,_        `h
     ?$$$$$       ""'       `;;;;;;;;,         `.`.`.`.hJ"  `"??cc,    $
 ?"???"??"          j'       :;;;;;;;;;;,       .`.`.`.`$               $
 ;;,                 $        :;;;;;;;;;;;,      `.`.`.`.$c,,__          $
 i;;,                 h         `':;;;;;;;;;,      `.`.`.`h    `"         ?c
 `$;;;;,              $r           `:;;;;;;;;,      .`.`.`.$
   J$i;;h             $;             `:;;;;;;;,      `.`.`.`$""=,
 .$$$$h;,            ,C;       .j???c, `;t;;;;,        `.`.`.?c
 $$$$$$h;,           $;,       J;;;;i;L. :?);;,           .`.`.?h,_
 $$$$$$$;           j';        $;;;$h9;L `:?);;,                ,C?h.
 ?$$$$$$;           $;,        `$;?ii$;;h `;L;;,                (C;;?h
  3$$$$?;          J?;,         `h;;;;;;P  :;L;,                `$;;$?L
 .$$$$;;'         ,C;;,           `?CjjF   `;3;,                 $;;?h$
 $$$$;;:          $;;;,                    `;3;                  `h;;;F
 $$$?;;        `.JF;;;,                     ;3;                   `hiF    J"
 $$?;'     .`.`.c$h;;;;,                   ;;f;,                 ,;iF   z" z
 C;;       .`.`JCCC$;;;;;                 ;;$;;;; `;i;,         ;;J"   J' J'
 ;;      .`.` JF;;??$hi;;;;.            .;;$;;;;;, ;?$;;;,    ,;;i$   J'.P
 '      `.`. ,C;;;;,  `"h;;;;;;;;;;;;;;;i$?;;;;;;;, :;?h;;;;;;;;9"?. j','
       .`.` .$;;;;'       "??iijjjjii?""`.`;;;;;;;,  `;;?h;;;;iP   $,'.P
      `.`. ,C;;;,                             `;;;;,  `;;;J""'     `h $
     .`.  ,C;;;;'                               ;;,    ;;;9         $$
    `.`  ,C;;;;f                                `;;,   `;;J  r      `L
   .`   z$;;;;,                                 `;,     ;;9  $       h
       j"`h;;;'                                 `;,     ;;$  `r      3
      j' ,c;;,                                   ;,     ;;$   $      `h
     .P &#60;$;;,                                   `;,    .;;$.  ?.      $</span></pre>
<h4>via <a title="asciipr0n.com" href="http://asciipr0n.com/">asciipr0n.com</a></h4>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Houston Rap (Finally!)]]></title>
<link>http://asciigod.wordpress.com/?p=49</link>
<pubDate>Wed, 11 Jun 2008 09:11:15 +0000</pubDate>
<dc:creator>asciigod</dc:creator>
<guid>http://asciigod.wordpress.com/?p=49</guid>
<description><![CDATA[I&#8217;m wondering what to tag this post. I can actually unironically put &#8220;Houston Rap&#8221;]]></description>
<content:encoded><![CDATA[<p>I'm wondering what to tag this post. I can actually unironically put "Houston Rap" there. And that'd be ok. Although this is really Cali V. Florida rap. Radman and me. Recorded around 2003/04... I forget the exact timeframe (drinky drinky). This isn't the only scene rap out there, but sadly, I think it's probably the best.</p>
<p>Screwed up by my adopted "Internet Son" DJ Singsing. This is his masterpiece before going into the Marines. Good work! Also, his name isn't DJ Singsing. Names have been changed to protect the innocent.</p>
<p>This is also notable (to me) for being my first video production and my first upload to youtube. LOLs all around on this on. :P</p>
<p> </p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/vfkKS_LwbDg'></param><param name='wmode' value='transparent'></param><embed src='http://www.youtube.com/v/vfkKS_LwbDg&rel=0' type='application/x-shockwave-flash' wmode='transparent' width='425' height='350'></embed></object></span></p>
]]></content:encoded>
</item>

</channel>
</rss>
