<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>FoOlRulez &#187; Scripts</title>
	<atom:link href="https://foolrulez.org/blog/category/posts/scripts/feed/" rel="self" type="application/rss+xml" />
	<link>https://foolrulez.org/blog</link>
	<description>We translate it because we want to read it!</description>
	<lastBuildDate>Wed, 04 Apr 2018 02:48:43 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.2</generator>
		<item>
		<title>Back up like a FoOl</title>
		<link>https://foolrulez.org/blog/2011/09/backup-like-a-fool/</link>
		<comments>https://foolrulez.org/blog/2011/09/backup-like-a-fool/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 13:21:53 +0000</pubDate>
		<dc:creator>woxxy</dc:creator>
				<category><![CDATA[FoOls/Randomness.]]></category>
		<category><![CDATA[FoOlSlide]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://foolrulez.org/blog/?p=6269</guid>
		<description><![CDATA[Backup, you fools!]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.pixiv.net/member_illust.php?mode=medium&amp;illust_id=20655862" target="_blank">Image</a> by <a href="http://www.pixiv.net/member.php?id=321155" target="_blank">潤咲まぐろ</a></p>
<p>One thing that always owns scanlators is not having backups of their server data.</p>
<p>Each year I hear of about half-a-dozen groups losing all their data over faulty disks, bans or simple mistakes, and I&#8217;m sure even more groups I don&#8217;t know of are affected as well. Here are some suggestions to make your backups (almost) automatic.</p>
<h3>Rule 0: Keep your data in a place where backup is possible</h3>
<p>It might sound silly, but it&#8217;s the number one cause for scanlation group death. Picture this: a group&#8217;s site is a free forum. They can&#8217;t back up their data because the provider doesn&#8217;t allow that. Their site is suddenly closed for linking to (supposedly) copyrighted material, and the group slowly dissolved. It happens more than you&#8217;d think.</p>
<p>When choosing a site for your team&#8217;s forums and updates, first check if you can export data and import it to other systems. You should have access to the databases and the server hard disk. You must be able to extract at least the singular databases and all the FTP data.</p>
<h3>Backup everything in your WWW folder (to your own hard drive)</h3>
<p>A scanlation group usually has less than 8gb of data saved on-server. That&#8217;s a quite a large group already, as not even FoOlRulez has that much data, even though we have double copies of our 400 releases in addition to all our raw and worked material in PSD or hi-res.</p>
<p>The data in the WWW folder on-server doesn&#8217;t change often. It&#8217;s mainly reinstallable software &#8211; WordPress, your forum, FoOlSlide. What you have there are the images uploaded for blogposts or chapters uploaded for your online readers. You therefore don&#8217;t need to back this data up frequently. Monthly or twice a month is enough to cover you, but make sure it happens.</p>
<h4>Lame choice: download via FTP each time</h4>
<p>A choice for those who don&#8217;t have command line support.</p>
<p>Just select everything via FTP and start downloading. You can leave out less important things. 8Gb isn&#8217;t really that large: the problem is more that there are many small files to download, which can slow down the process.</p>
<p>If you can, first compress the folders into zip files before downloading. You can probably do this through your control panel. Compressed files are faster: not because they are smaller, but because downloading one large file is faster than downloading many small ones.</p>
<p>Once you have a copy of the data, you can selectively back up folders you know have changed.</p>
<h4>Awesome choice: rsync</h4>
<p>A choice for those who do have command line support.</p>
<p>Rsync is an application that synchronizes folders through computers without having to download files twice. It&#8217;s installed by default in your Linux server, as well as on Mac OSX. It uses the SSH &#8220;command line protocol&#8221; to sync files, which means it&#8217;s extremely secure, even when used in unprotected networks.</p>
<p>Here are installation instructions for Windows: <a href="http://rsync.net/resources/howto/windows_rsync.html">http://rsync.net/resources/howto/windows_rsync.html</a></p>
<p>To sync, we use this command from time to time (on our own PC, not on the server&#8217;s command line):</p>
<p><code>rsync -avz --delete -e ssh root@foolrulez.org:/var/www/ /Users/woxxy/foolrulezwww/</code></p>
<p>This tells rsync to use SSH to connect to our foolrulez.org server as root. It tells it to compress the data before downloading it, and to put it in a &#8220;foolrulezwww&#8221; folder on my laptop. If it finds that some files have disappeared from the server, it also deletes them from my hard disk.</p>
<p>You can watch the magic happening or simply leave it alone. Do this every few days. You might even keep two versions of your site on your computer: a weekly version and a monthly version. If possible, back up your computer&#8217;s hard disk (with the site backup on it).</p>
<h3>Save your MySQL database&#8230; six times.</h3>
<p>You can lose your installation, your files, all your scans&#8230; big deal. These are things you can get back from the Internet. For once aggregators provide something useful for us: remote, automatic backing up of files! In the end, losing the files on a site basically means you waste time retrieving and reuploading.</p>
<p>The real core of your backups is the MySQL database. MySQL contains all your hard work: your blogposts, your forum and working data of everything in your server. It&#8217;s also extremely delicate. Made a bad update? Had an installation go wrong? Did your server crash? Bam, everything in your database is gone.</p>
<p>Seriously, don&#8217;t fuck with databases. Back. Them. Up. Now.</p>
<h4>Lame choice: backup manually via browser</h4>
<p>A choice for those who don&#8217;t have command line.</p>
<p>There&#8217;s not much to say: go to your admin panel, and use whatever export systems you have available. Have a monthly and weekly backup. Also keep the previous month&#8217;s data, as well as the previous week&#8217;s. Redundancy is better than total loss.</p>
<h4>Less lame choice: manual backup via command line</h4>
<p>You can just save a dump of the database via SSH. The command line to use is:</p>
<p><code>mysqldump --user=root --password=rootpassword --all-databases &gt; ~/all-databases.sql</code></p>
<p>This will save all the databases in your server user&#8217;s home folder (like /home/woxxy/). You can then connect with your SFTP/FTP software and download it to your computer. Remember to delete the database backup from the server.</p>
<p>Keep a &#8220;monthly&#8221; backup that you make on the first of the month. Keep a &#8220;weekly&#8221; backup that you make on Sundays. Again, keep a copy of the previous month&#8217;s/week&#8217;s backup.</p>
<h4>Awesome choice: automatic backups to S3</h4>
<p>A choice for those who have command line and like to be awesome.</p>
<p>FoOlRulez has its own script that just does everything automatically. It keeps two monthly backups, two weekly backups, and two daily backups, automatically stored on the extremely secure Amazon S3 service. 99.999999999% durability and 99.99% availability. Enough said.</p>
<p>I have put the script and a short how-to guide in my latest Github repository, so you might as well just read it from there: <a href="https://github.com/woxxy/MySQL-backup-to-Amazon-S3" target="_blank">https://github.com/woxxy/MySQL-backup-to-Amazon-S3</a></p>
<p>The cons: they ask you for credit card info (bet you already use Amazon anyway). The first year is free as long as you have less than 5Gb stored, and, after that, you&#8217;d pay around $0.42 a month if you have 3gb of databases stored (that&#8217;s a lot of database, believe me). If you have a normal-sized database, you&#8217;re likely to spend just $0.05/month. That&#8217;s crazy cheap, considering how secure is the S3 backup. I think it&#8217;s 100% worth it.</p>
<p>Why not Dropbox? Because Dropbox is not the right kind of service for critical data. Its name explains its purpose. Amazon S3 is an enterprise service, and won&#8217;t look into what you host. MySQL databases are extremely precious, as they contain hashes of passwords, so you want them to be stored in as safe a place as possible.</p>
<h3>More</h3>
<p>If you have questions about the code or about ways to back up your server, you can just use <a href="http://ask.foolrulez.com" target="_blank">http://ask.foolrulez.com</a> to send questions our well. We&#8217;re happy to answer.</p>
<p>Additionally, if you want anything added to this article, feel free to ask in the comments section.</p>
]]></content:encoded>
			<wfw:commentRss>https://foolrulez.org/blog/2011/09/backup-like-a-fool/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Tech support limits</title>
		<link>https://foolrulez.org/blog/2011/08/tech-support-limits/</link>
		<comments>https://foolrulez.org/blog/2011/08/tech-support-limits/#comments</comments>
		<pubDate>Sat, 06 Aug 2011 12:12:56 +0000</pubDate>
		<dc:creator>woxxy</dc:creator>
				<category><![CDATA[FoOlSlide]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://foolrulez.org/blog/?p=5938</guid>
		<description><![CDATA[I'm overworked again]]></description>
				<content:encoded><![CDATA[<p>While nobody will see it on the surface, we&#8217;re the tech support of several scanlation groups. Mostly me actually, and that&#8217;s the major issue here: I am just one person</p>
<p>I&#8217;m overworked, to the point I don&#8217;t really edit anything anymore. It&#8217;s very important to help other groups with their server and FoOlSlide, and I want to keep doing this.</p>
<p>Since FoOlSlide became really popular really soon, I have to put limits to whom I give support, and put a stop to giving help to people who don&#8217;t contribute actively to the community.</p>
<p>I <strong>will</strong> give <strong>free</strong> support, given the time, to:</p>
<ul>
<li>active scanlators</li>
<li>mangakas and publishers</li>
<li>web comic artists</li>
</ul>
<p>I <strong>will</strong> give <strong>paid</strong> support, to</p>
<ul>
<li>people who make lots of legal bucks out of FoOlSlide who would also like to contribute to the cause in an open source way</li>
</ul>
<p>I <strong>won&#8217;t</strong> give support of any kind, to:</p>
<ul>
<li>people trying to create manga aggregators</li>
<li>people trying to use FoOlSlide in unconventional ways</li>
<li>people trying to illegally make money out of it</li>
</ul>
<p>It&#8217;s not rules I have to formally abide to, and it&#8217;s still up to me to decide if giving support or not.</p>
<p>Notice that our software doesn&#8217;t come with support included. It&#8217;s just in my interest to support scanlation and whoever wants to share their work. I will also help mangakas and publishers if possible, because we owe them.</p>
<p>Being a developer, anything that goes out of this scope, and is legal, will be naturally dealt with like a freelance job. The features requested will possibly become open source too, like themes included, plugins, and so on (this especially allows easier updating).</p>
<p>I don&#8217;t need to say why I am not going to support people making illegal money with FoOlSlide. Even less I have to explain why I really hate aggregators.</p>
]]></content:encoded>
			<wfw:commentRss>https://foolrulez.org/blog/2011/08/tech-support-limits/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>FoOlRulez.com &lt;tech&gt; begins</title>
		<link>https://foolrulez.org/blog/2011/04/foolrulez-com-tech-begins/</link>
		<comments>https://foolrulez.org/blog/2011/04/foolrulez-com-tech-begins/#comments</comments>
		<pubDate>Fri, 01 Apr 2011 17:44:41 +0000</pubDate>
		<dc:creator>woxxy</dc:creator>
				<category><![CDATA[FoOls/Randomness.]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://foolrulez.org/blog/?p=5629</guid>
		<description><![CDATA[And domains don't even come cheap.]]></description>
				<content:encoded><![CDATA[<p>FoOlRulez is probably (and unreasonably) the most tech-prone group in the whole scanlation community.</p>
<p>To the point FoOlRulez.org became kinda a mess to keep using for our projects, as it&#8217;s not really a proper place where to share code like a tech team.</p>
<h3>FoOlRulez<b>.com: FoOlRulez tech</b></h3>
<p>We&#8217;ve bought a new domain to separate the tech section, and the scans/anime/manga section. We&#8217;ll use the second site less often, as it will be mainly become a hub for downloading the software, plugins, themes and so on.</p>
<p>Remember FoOlSlide, the new version of the now popular manga reader for scanlators? It&#8217;s already open sourced on FoOlRulez.com, though it&#8217;s not yet functional (NOT FUNCTIONAL AT ALL, DON&#8217;T TRY USING IT).</p>
<p>Go over to <a target="_blank" href="http://FoOlRulez.com">FoOlRulez.com</a> to see more.</p>
<p><strong>This also means we&#8217;ll be recruiting programmers. Be ready for this.</strong></p>
]]></content:encoded>
			<wfw:commentRss>https://foolrulez.org/blog/2011/04/foolrulez-com-tech-begins/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>New: FoOlAchievements!</title>
		<link>https://foolrulez.org/blog/2011/04/new-foolachievements/</link>
		<comments>https://foolrulez.org/blog/2011/04/new-foolachievements/#comments</comments>
		<pubDate>Fri, 01 Apr 2011 12:14:32 +0000</pubDate>
		<dc:creator>woxxy</dc:creator>
				<category><![CDATA[FoOls/Randomness.]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://foolrulez.org/blog/?p=5606</guid>
		<description><![CDATA[WAR GAMES.]]></description>
				<content:encoded><![CDATA[<p>FoOlRulez is always prone to do things nobody did before. This is why we&#8217;ve decided to implement a revolutionary function on this site, that I don&#8217;t know why nobody thought about it before.</p>
<h3>Achievements</h3>
<p>That&#8217;s right: FoOlRulez has now achievements! Click around the site, keep visiting, and you&#8217;ll make points.<br />
It&#8217;s obvious what these points could be used for, be it prizes, decisional power, veto power on hentai, admin power for a week, control on scanlation for a day, raging flames in blog for a year and so on!</p>
<p>Now GO! When there will be enough players, a table will appear, telling us who&#8217;s winning!<br />
And notice: achievements are over 50, and are constantly updated and added. The amount of points you can get is not related to how difficult is to get to the achievement.</p>
]]></content:encoded>
			<wfw:commentRss>https://foolrulez.org/blog/2011/04/new-foolachievements/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>FoOlRulez version 14!</title>
		<link>https://foolrulez.org/blog/2011/02/foolrulez-version-14/</link>
		<comments>https://foolrulez.org/blog/2011/02/foolrulez-version-14/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 16:59:06 +0000</pubDate>
		<dc:creator>woxxy</dc:creator>
				<category><![CDATA[FoOls/Randomness.]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://foolrulez.org/blog/?p=5336</guid>
		<description><![CDATA[I used to call the version number whenever I "cleaned up" the guild. Now it's about site revamps.]]></description>
				<content:encoded><![CDATA[<p>Here we go with the new theme. A buttton of new code. It&#8217;s freshly made, and <s>probably full of bugs</s> certainly full of bugs.<br />
Tell me here in case there&#8217;s something that doesn&#8217;t work at all.</p>
<p>I have rewritten the blog theme from scratch, remade the forum theme, remade the manga reader theme.  I still have to revamp the downloads section. I&#8217;ll do it tomorrow, or never&#8230;</p>
<p>Note: this code can&#8217;t be exported, it&#8217;s deeply integrated with our framework, so don&#8217;t ask for our theme :|</p>
]]></content:encoded>
			<wfw:commentRss>https://foolrulez.org/blog/2011/02/foolrulez-version-14/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
		<item>
		<title>Maria presents FoOlReader.</title>
		<link>https://foolrulez.org/blog/2010/12/maria-presents-foolreader/</link>
		<comments>https://foolrulez.org/blog/2010/12/maria-presents-foolreader/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 17:01:19 +0000</pubDate>
		<dc:creator>woxxy</dc:creator>
				<category><![CDATA[FoOlReader]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://foolrulez.org/blog/?p=4992</guid>
		<description><![CDATA[Because a loli can do it better than 100 men.]]></description>
				<content:encoded><![CDATA[<p>Hello, I&#8217;m FoOlRulez&#8217; co-leader, Maria Allenti Corradini, the 14 years old blonde who assisted in the coding of this script: FoOlReader.</p>
<p>If you&#8217;re not in the right mood to read a little story, just go to the end of the post.</p>
<p>Back when I was more loli than I am now, I tsundere&#8217;d all the time when I tried to read my manga. All the groups who were delivering the high quality versions didn&#8217;t have a reader at all, and I, like the greatest majority of the readers, just went to the next manga aggregator site, just to read it, despite of the lower quality, and tons of ads, some of which <em>spoke</em>, scaring me all the time. Very soon, despite my young age of 11, I grew a bad eye-cancer, a disease that is very diffused between scanlators. Luckily, The Doctor cured it.</p>
<p style="text-align: center;"><a href="http://foolrulez.org/blog/wp-content/uploads/2010/12/2.png"><img class="size-medium wp-image-5001  aligncenter" title="2" src="http://foolrulez.org/blog/wp-content/uploads/2010/12/2.png" alt="" /></a></p>
<p>Thank God there&#8217;s nanomachines! I couldn&#8217;t have my &#8220;naisu boddi&#8221; violated by needles and horrible stuff like that. At that point though, I was totally over my limit, and went in my Onii-chan&#8217;s room and screamed in his face: «Get me a freaking group so we can get the stuff rolling will you?!»<br />
With a smug face, he answered: «Here. Go from these guys, they&#8217;re stupid enough to code with a kid like you.»</p>
<p>And so I went out and bought FoOlRulez stocks. After I got majorty, I got the project rolling. Bam, badam, gave a random name like FoOlReader. Nobody cared anyway. One year later, all was done. And now it was running for quite a while, with an amount of satisfied customer in the order of</p>
<p style="text-align: center;"><a href="http://foolrulez.org/blog/wp-content/uploads/2010/12/3.png"><img class="size-full wp-image-5002 aligncenter" title="3" src="http://foolrulez.org/blog/wp-content/uploads/2010/12/3.png" alt="" width="697" height="126" /></a></p>
<p>Gentlemen, this is FoOlReader, the best web-based manga reader to date.</p>
<p>Why is it the best? Well let&#8217;s see&#8230;</p>
<ul>
<li>It doesn&#8217;t need a reload of the whole page to change image.</li>
<li>Because of this, it uses less processor.</li>
<li>It uses (still) no database, so it works on any server.</li>
<li>It makes it kinda easier to keep your projects listed, with thumbnails and descriptions.</li>
<li>It supports pagespreads automatically.</li>
<li>It helps the search engines to find your manga.</li>
<li>It helps you gathering followers (forum, twitter, facebook&#8230;)</li>
<li>It doesn&#8217;t make people run to other, low quality, slow readers.</li>
<li>It has integrated advertising functions, that reload each time the image changes.</li>
<li>It uses a ton of JavaScript.</li>
<li>It just looks cool.</li>
<li>It allows themes and plugins.</li>
<li>Works on mobile.</li>
<li>Much more that would just make this post look even uglier!</li>
</ul>
<p>Want to try it? Just <a href="http://foolrulez.org/manga">jump over to our manga reader</a>.</p>
<p>Here&#8217;s not the place where I should get technical, so <a href="http://foolrulez.org/manga/readme.html" target="_blank">I will just redirect you to the readme in our server</a>, so you understand what do you need (basically, the most simple server will do!).</p>
<p>The next thing you will want? The download. Just go in the usual <a href="http://foolrulez.org/manga/bin/download.php" target="_blank">download section for the manga</a>, or on IRC, and download it. You will find the readme.html in the ZIP too, just to be sure.</p>
<p>Want some help, fast? Just jump on the IRC and hope I am online.</p>
<p>Want a custom version, a theme or anything that would take me quite some hours? Well, in the interest of FoOlRulez, I can work for you. Be ready with a donation, though!</p>
<p>What if you like it, but your favorite group doesn&#8217;t have it? Go and tell &#8216;em.</p>
]]></content:encoded>
			<wfw:commentRss>https://foolrulez.org/blog/2010/12/maria-presents-foolreader/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
		<item>
		<title>What is FoOlReader?</title>
		<link>https://foolrulez.org/blog/2010/11/foolreader/</link>
		<comments>https://foolrulez.org/blog/2010/11/foolreader/#comments</comments>
		<pubDate>Sun, 28 Nov 2010 15:32:55 +0000</pubDate>
		<dc:creator>woxxy</dc:creator>
				<category><![CDATA[Anime/Manga]]></category>
		<category><![CDATA[FoOls/Randomness.]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://foolrulez.org/blog/?p=4974</guid>
		<description><![CDATA[About our all new open-source manga-reader!]]></description>
				<content:encoded><![CDATA[<p><big>FoOlReader is published already! <a href="http://foolrulez.org/blog/2010/12/maria-presents-foolreader/">Go to the post about it.</a></big></p>
<p>It&#8217;s a very weird situation, the one that comes with our community: we&#8217;re the ones releasing our translations, but <strong>we give the least liked way to consume a manga to our readers, so that everyone just jumps to their favorite manga-reader</strong>. I can understand the love for IRC, and we even built from scratch our own special tsundere BOT Tanline/Curves with our own protocol, but, being real, most people like reading in their browser. And, truth stands, there&#8217;s not many groups with their own cool manga reader.</p>
<p><strong>FoOlReader</strong> is an <strong>open-source</strong> project that we work on at FoOlRulez, with some partner groups, as <a href="http://redhawkscans.com">RedHawksScans</a> and <a href="http://sc-scans.com/">SC-Scans</a>, testing different versions and themes and giving us suggestions. Since it&#8217;s open-source, we&#8217;ll release the code when it&#8217;s baked, and issue updates for new features.</p>
<p style="text-align: center;"><a href="http://foolrulez.org/blog/wp-content/uploads/2010/11/Schermata-2010-11-28-a-16.30.45.png"><img class="alignnone size-full wp-image-4978" title="Schermata 2010-11-28 a 16.30.45" src="http://foolrulez.org/blog/wp-content/uploads/2010/11/Schermata-2010-11-28-a-16.30.45.png" alt="" width="198" height="98" /></a></p>
<p>It&#8217;s a whole different manga reader system, extremely easy to install, with in mind people who aren&#8217;t familiar with code, but also with enough tools to make programmers happy. How does it work? You just paste the folder anywhere on your server, and put the manga in it. Could it be any easier?</p>
<p>FoOlReader&#8217;s interface is not meant for &#8220;commercial&#8221; manga readers like MangaFox, but for scanlation groups. That&#8217;s why there&#8217;s less interest in making money, and more interest in making the reader feel at ease.</p>
<p>Current features:<br />
-image preloading (you can select how many)<br />
-easing effects<br />
-themes<br />
-plugins<br />
-simple ads insertion<br />
-shows synopsis, image and last chapter available of every manga in index<br />
-needs no database<br />
-Facebook/Twitter integrations<br />
-works also without JavaScript<br />
-works even on cellphones!</p>
<p>Features currently being implemented:<br />
-manual and precise zooming for any page (not only spreads)<br />
-uploading<br />
-automatic update</p>
<p>Future features:<br />
-graphic stats<br />
-download system<br />
-bookmarking<br />
-network between FoOlReaders to share bookmarks (?!)</p>
<p>Right now it&#8217;s not available for download, because I have to set precise standards for the updating system. Considering the very positive reaction of the people to the reader, I expect a lot of teams at least trying it, and, knowing how good it is in the eyes of people, I&#8217;d expect a little revolution.</p>
<p>You can use the most recent stable version in <a href="http://foolrulez.org/manga">our manga reader</a> or <a href="http://manga.redhawkscans.com/">Redhawk&#8217;s manga reader</a>. If you can come up with any suggestion, I&#8217;ll welcome them.</p>
]]></content:encoded>
			<wfw:commentRss>https://foolrulez.org/blog/2010/11/foolreader/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>Sora no Otoshimono 40 (and new, freshly coded IRC bot)</title>
		<link>https://foolrulez.org/blog/2010/07/sora-no-otoshimono-40-and-new-freshly-coded-irc-bot/</link>
		<comments>https://foolrulez.org/blog/2010/07/sora-no-otoshimono-40-and-new-freshly-coded-irc-bot/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 12:23:27 +0000</pubDate>
		<dc:creator>woxxy</dc:creator>
				<category><![CDATA[FoOls/Randomness.]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Sora no Otoshimono]]></category>

		<guid isPermaLink="false">http://foolrulez.org/blog/?p=4477</guid>
		<description><![CDATA[read it easy]]></description>
				<content:encoded><![CDATA[<p>No, we didn&#8217;t really go yukkuri on this.</p>
<p>There&#8217;s as usual a lot going on at fools.</p>
<p>Ok, first news, <strong>we&#8217;ll take up Seitokai Yakuindomo</strong> 4koma manga, with all its sex references. But this is just news, wait for facts. The decision should be final though, and the release come quite soon, as in 24-48 hours.</p>
<p>Second: I wasted 1 hour from the release to draw the <strong>yukkuri</strong>. So make sure you praise me.</p>
<p>Third, and surely more massive, it took a load of work by guorbatschow. We&#8217;re (guorbatschow is) working on <strong>Curves, a new bot framework written in Java</strong>, which means Tanline, our <a href="http://foolrulez.org/novels/index.php?title=Nights,_REDUX_-_Chapter_1">gangsta-moe black haired twintailed bot</a> is now also going to give you the downloads, beside being almost living on artificial intelligence. If things go well, Curves will become an Open Source project that you will be able to use yourself.</p>
<p><strong>Fourth, we have Sora no Otoshimono 40!</strong></p>
<p><strong>Please, if you can waste 40 seconds more of your life, go on IRC to try downloading from the new bot. Use the command &#8220;!get sora 40&#8243; or &#8220;!download sora no otoshimono 40&#8243; or any command <a href="http://www.foolrulez.org/tanline/help.php">in this page</a>. And please, <span style="color: #ff0000;">report in this thread if things didn&#8217;t go well</span>.</strong></p>
<p>Sora no Otoshimono 40:<br />
<a href="http://www.foolrulez.org/manga/bin/download.php">DDL&amp;IRC</a> | <a href="http://foolrulez.org/manga/index.php?manga=Sora%20no%20Otoshimono&amp;chapter=chapter%2040">Read it</a></p>
<p>If the new bot doesn&#8217;t work, just use &#8220;/msg fool xdcc send 290&#8243; to use the old bot.</p>
]]></content:encoded>
			<wfw:commentRss>https://foolrulez.org/blog/2010/07/sora-no-otoshimono-40-and-new-freshly-coded-irc-bot/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>FoOlRulez manga reader works on iPad!</title>
		<link>https://foolrulez.org/blog/2010/04/foolrulez-manga-reader-works-on-ipad/</link>
		<comments>https://foolrulez.org/blog/2010/04/foolrulez-manga-reader-works-on-ipad/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 01:25:39 +0000</pubDate>
		<dc:creator>woxxy</dc:creator>
				<category><![CDATA[Apple and Mac]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[manga]]></category>
		<category><![CDATA[manga reader]]></category>

		<guid isPermaLink="false">http://foolrulez.org/blog/?p=4149</guid>
		<description><![CDATA[Our fine tech works with 600 dollars bloated browser tablets!]]></description>
				<content:encoded><![CDATA[<p>What did you expect, for our high level internet department to fail delivering manga on some device? Hell no, our reader works on iPad too!</p>
<p>Proof!</p>
<p>Credit to: <a href="http://www.flickr.com/photos/bonedaddy/" target="_blank">valkr1e</a> from the IRC channel</p>
<p style="text-align: center;"><a href="http://foolrulez.org/blog/wp-content/uploads/2010/04/4508911413_5f4d04a1eb_b.jpg"><img class="size-full wp-image-4150 aligncenter" title="4508911413_5f4d04a1eb_b" src="http://foolrulez.org/blog/wp-content/uploads/2010/04/4508911413_5f4d04a1eb_b.jpg" alt="" width="912" height="1024" /></a></p>
]]></content:encoded>
			<wfw:commentRss>https://foolrulez.org/blog/2010/04/foolrulez-manga-reader-works-on-ipad/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>The Dollars Twitter webclient.</title>
		<link>https://foolrulez.org/blog/2010/04/the-dollars-twitter-webclient/</link>
		<comments>https://foolrulez.org/blog/2010/04/the-dollars-twitter-webclient/#comments</comments>
		<pubDate>Sat, 03 Apr 2010 16:27:25 +0000</pubDate>
		<dc:creator>woxxy</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://foolrulez.org/blog/?p=4112</guid>
		<description><![CDATA[An almost perfect replica of the original!]]></description>
				<content:encoded><![CDATA[<p>Have you watched Durarara? There&#8217;s this chat system in it that made huge galore.</p>
<p>I decided that it&#8217;s worthy some working, and <a href="http://foolrulez.org/dollars" target="_blank">here</a> it is, a fully CSS3 Durarara &#8220;The Dollars&#8221; twitter client working via browser.</p>
<div id="attachment_4113" class="wp-caption aligncenter" style="width: 683px"><a href="http://foolrulez.org/blog/wp-content/uploads/2010/04/Schermata-2010-04-03-a-18.20.30.png"><img class="size-full wp-image-4113" title="Schermata 2010-04-03 a 18.20.30" src="http://foolrulez.org/blog/wp-content/uploads/2010/04/Schermata-2010-04-03-a-18.20.30.png" alt="" width="673" height="666" /></a><p class="wp-caption-text">AWESOME CLIENT.</p></div>
<p>It&#8217;s as similar as I could make it in a short timespan to the original one. It was a real pain to build it in truth, but the result is definitely amazing.</p>
<p>You can go using it directly <a href="http://foolrulez.org/dollars" target="_blank">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://foolrulez.org/blog/2010/04/the-dollars-twitter-webclient/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
