<?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>Angel's Blog &#187; Everything else</title>
	<atom:link href="http://mindmist.com/blog/category/everything-else/feed/" rel="self" type="application/rss+xml" />
	<link>http://mindmist.com/blog</link>
	<description>Someone right now is looking pretty tired, staring at a laptop trying to get inspired...</description>
	<lastBuildDate>Fri, 11 Sep 2009 12:21:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>FLV steaming &#8211; server/client side</title>
		<link>http://mindmist.com/blog/12/10/2008/flv-steaming-serverclient-side/</link>
		<comments>http://mindmist.com/blog/12/10/2008/flv-steaming-serverclient-side/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 20:49:02 +0000</pubDate>
		<dc:creator>Angel</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Everything else]]></category>
		<category><![CDATA[Linux / Unix]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flv]]></category>
		<category><![CDATA[httpd]]></category>
		<category><![CDATA[jw player for flash]]></category>
		<category><![CDATA[stream]]></category>
		<category><![CDATA[streaming]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://mindmist.com/blog/?p=92</guid>
		<description><![CDATA[This is the shortest how-to ever. You won&#8217;t get any extra info, the idea is to install the whole scheme fast as possible and then spend some time reading docs for each separate module.
This is how to make HTTP FLV streaming using the JW FLV Media Player and the lighttpd web server.
Here we go:
1. Installation
Install [...]]]></description>
			<content:encoded><![CDATA[<p>This is the shortest how-to ever. You won&#8217;t get any extra info, the idea is to install the whole scheme fast as possible and then spend some time reading docs for each separate module.<br />
This is how to make HTTP FLV streaming using the <a href="http://www.jeroenwijering.com/" target="_blank">JW FLV Media Player</a> and the <a href="http://www.lighttpd.net/" target="_blank">lighttpd web server</a>.<br />
Here we go:<br />
<span style="text-decoration: underline;"><strong>1. Installation</strong></span><br />
Install the lighttpd server. I am using Ubuntu, so i will install it via the apt-get package system:</p>
<p><code>sudo apt-get install lighttpd</code></p>
<p><span style="text-decoration: underline;"><strong>2. Configuration</strong></span></p>
<p>The first we have to do is change the default listening port to 81 (optional if you are already using apache on the same host, or whatever you decide to use) and enable the needed for flv streaming modules (<strong>mod_flv_streaming </strong> and <strong>mod_secdownload</strong> ). Edit the following file : /etc/lighttpd/lighttpd.conf and change the server.modules and the server.port parameters:</p>
<div class="geshi no html">
<ol>
<li class="li1">
<div class="de1">server.modules = (
</div>
</li>
<li class="li1">
<div class="de1">&quot;mod_access&quot;,
</div>
</li>
<li class="li1">
<div class="de1">&quot;mod_alias&quot;,
</div>
</li>
<li class="li1">
<div class="de1">&quot;mod_accesslog&quot;,
</div>
</li>
<li class="li1">
<div class="de1">&quot;mod_compress&quot;,
</div>
</li>
<li class="li1">
<div class="de1"># &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;mod_rewrite&quot;,
</div>
</li>
<li class="li1">
<div class="de1"># &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;mod_redirect&quot;,
</div>
</li>
<li class="li1">
<div class="de1"># &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;mod_status&quot;,
</div>
</li>
<li class="li1">
<div class="de1"># &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;mod_evhost&quot;,
</div>
</li>
<li class="li1">
<div class="de1"># &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;mod_usertrack&quot;,
</div>
</li>
<li class="li1">
<div class="de1"># &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;mod_rrdtool&quot;,
</div>
</li>
<li class="li1">
<div class="de1"># &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;mod_webdav&quot;,
</div>
</li>
<li class="li1">
<div class="de1"># &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;mod_expire&quot;,
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &quot;mod_flv_streaming&quot;,
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &quot;mod_secdownload&quot;, ## optional
</div>
</li>
<li class="li1">
<div class="de1"># &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;mod_evasive&quot;
</div>
</li>
<li class="li1">
<div class="de1">)
</div>
</li>
<li class="li1">
<div class="de1">flv-streaming.extensions = ( &quot;.flv&quot;)</div>
</li>
</ol>
</div>
<p>and</p>
<div class="geshi no html">
<ol>
<li class="li1">
<div class="de1">## bind to port (default: 80)
</div>
</li>
<li class="li1">
<div class="de1">server.port = 81</div>
</li>
</ol>
</div>
<p>Then start the lighttpd server ( Ubuntu )</p>
<p><code>sudo /etc/init.d/lighttpd start </code></p>
<p><span style="text-decoration: underline;"><strong>3.1 Converting regulat video clips into .flv</strong></span></p>
<p>Before compiling the ffmpeg binary, you have to download and install some development libraries. Please install liblame-dev and libvorbis-dev and all their dependencies:</p>
<p><code>apt-get install liblame-dev</code></p>
<p><code>apt-get install libvorbis-dev</code></p>
<p>Then go to your favorite source folder and download there the current svn server of ffmpeg</p>
<p><code>cd /usr/local/src/</code></p>
<p>If you don&#8217;t have subversion installed:</p>
<p><code>apt-get install subversion</code></p>
<p>Download the source code:</p>
<p><code>svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg</code></p>
<p>Open the downloaded directory:</p>
<p><code>cd ffmpeg/</code></p>
<p>and compile the ffmpeg binary with the following keys</p>
<div class="code">./configure &#8211;enable-shared &#8211;prefix=/usr &#8211;enable-gpl  &#8211;enable-pthreads &#8211;enable-libmp3lame &#8211;enable-libvorbis</div>
<p><code>make</code></p>
<p>Wait a lot of time &#8230;</p>
<p>and finally install it :</p>
<p><code>make install</code></p>
<p> 2. Converting movies<br />
Lets create two separate folders for &#8220;ready to be streamed movies&#8221; and &#8220;unconverted movies&#8221;</p>
<p><code>mkdir /var/www/movies/</code></p>
<p><code>mkdir /var/www/movies/convert_me/</code></p>
<p><code>mkdir /var/www/movies/flv/</code></p>
<p>Copy a favorite movie or clip in /var/www/movies/convert_me/ and then execute:</p>
<div class="code">ffmpeg -i /var/www/movies/convert_me/myclip.avi -s 320&#215;240 -ar 44100 -r 12 /var/www/movies/flv/myclip.flv</div>
<p><span style="text-decoration: underline;"><strong>3.2 FLV files</strong></span></p>
<p>You have to prepare your flv for streaming. I am not really a video encoding/decoding guru, so i am sharing my solution to the problem, but i am not sure it is the best possible.</p>
<p>Install flvtool2:</p>
<p><code>sudo apt-get install flvtool2</code></p>
<p>Put some flv movie somewhere inside your DocumentRoot folder ( for example /var/www/path/clip.flv) and then use the flvtool2 to generate the needed for the server meta-tags inside your flv video.</p>
<p><code>flvtool2 -U -p /var/www/path/clip.flv</code></p>
<p>Here i am using two keys :<br />
-U <em>Updates FLV with an onMetaTag event</em><br />
-p <em>Preserve mode only updates FLVs that have not been processed before</em><br />
another interesting switch for whole folders will be :<br />
-r <em>Recursion for directory processing</em></p>
<p>As you may notice, the flvtool2 don&#8217;t have so many options at all, so it will be good to make a little more research about the features of this tool.<br />
You can test the generated meta tags using the debug command in flvtool2.</p>
<p><code> flvtool2 -D clip.flv </code></p>
<p>Be prepared for a lot of output&#8230; It looks like this :</p>
<div class="geshi no html">
<ol>
<li class="li1">
<div class="de1">#1 Meta Tag (onMetaData): timestamp 0, size 7910, data size 7899
</div>
</li>
<li class="li1">
<div class="de1">#2 Audio Tag: timestamp 0, size 274, data size 263
</div>
</li>
<li class="li1">
<div class="de1">#3 Audio Tag: timestamp 26, size 274, data size 263
</div>
</li>
<li class="li1">
<div class="de1">#4 Video Tag (Keyframe): timestamp 38, size 39766, data size 39755
</div>
</li>
<li class="li1">
<div class="de1">#5 Audio Tag: timestamp 52, size 274, data size 263
</div>
</li>
<li class="li1">
<div class="de1">#6 Video Tag (Interframe): timestamp 71, size 5289, data size 5278
</div>
</li>
<li class="li1">
<div class="de1">#7 Audio Tag: timestamp 78, size 274, data size 263
</div>
</li>
<li class="li1">
<div class="de1">#8 Audio Tag: timestamp 104, size 274, data size 263
</div>
</li>
<li class="li1">
<div class="de1">#9 Video Tag (Interframe): timestamp 105, size 4334, data size 4323
</div>
</li>
<li class="li1">
<div class="de1">#10 Audio Tag: timestamp 130, size 274, data size 263</div>
</li>
</ol>
</div>
<p>Now your clip.flv is ready to be streamed.</p>
<p><span style="text-decoration: underline;"><strong>4. FLV Client Player</strong></span></p>
<p>Download the JW FLV Media Player from <a href="http://www.jeroenwijering.com/" target="_blank">http://www.jeroenwijering.com/</a> and unpack the archive somewhere in your www directory. Create a html file in the same directory as your player with the following source:</p>
<div class="geshi no html">
<ol>
<li class="li1">
<div class="de1">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
</div>
</li>
<li class="li1">
<div class="de1">&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot;&gt;
</div>
</li>
<li class="li1">
<div class="de1">&lt;head&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;title&gt;JW Player for Flash&lt;/title&gt;
</div>
</li>
<li class="li1">
<div class="de1">&lt;/head&gt;
</div>
</li>
<li class="li1">
<div class="de1">&lt;body&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;div id=&quot;container&quot;&gt;&lt;a href=&quot;http://www.macromedia.com/go/getflashplayer&quot;&gt;Get the Flash Player&lt;/a&gt; to see this player.&lt;/div&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;script type=&quot;text/javascript&quot; src=&quot;swfobject.js&quot;&gt;&lt;/script&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;script type=&quot;text/javascript&quot;&gt;
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; var s1 = new SWFObject(&quot;player.swf&quot;,&quot;ply&quot;,&quot;328&quot;,&quot;200&quot;,&quot;9&quot;,&quot;#FFFFFF&quot;);
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; s1.addParam(&quot;allowfullscreen&quot;,&quot;true&quot;);
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; s1.addParam(&quot;allowscriptaccess&quot;,&quot;always&quot;);
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; s1.addParam(&#39;wmode&#39;,&#39;opaque&#39;);
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; s1.addParam(&#39;flashvars&#39;,&#39;file=http://your_lighttpd_server.com:81/path/clip.flv&amp;streamer=lighttpd&#39;);
</div>
</li>
<li class="li1">
<div class="de1">&nbsp; s1.write(&quot;container&quot;);
</div>
</li>
<li class="li1">
<div class="de1">&nbsp;&lt;/script&gt;
</div>
</li>
<li class="li1">
<div class="de1">&lt;/body&gt;
</div>
</li>
<li class="li1">
<div class="de1">&lt;/html&gt;</div>
</li>
</ol>
</div>
<p>Save it as test_stream.html and open it with your web browser ( http://your_lighttpd_server.com:81/path/mediaplayer/test_stream.html). If your paths are correct you will be able to watch your clip.flv with the flv player.<br />
In this example i am using the same server (lighttpd) for hosting the flv player and the clip, but it is possible another webserver to be used. For example you can host your site on Apache and use lighttpd only for storing the streamed videos!</p>
<p><img class="alignnone size-full wp-image-107" title="flv_player" src="http://mindmist.com/blog/wp-content/uploads/2008/10/flv_player.gif" alt="" width="342" height="212" /></p>
<p><span style="text-decoration: underline;"><strong>5. Some technical information to help you understand the idea</strong></span><br />
Let&#8217;s take more detailed view of the JW Player&#8217;s configuration:</p>
<div class="geshi no javascript">
<ol>
<li class="li1">
<div class="de1">s1.<span class="me1">addParam</span><span class="br0">&#40;</span><span class="st0">&#39;flashvars&#39;</span>,<span class="st0">&#39;file=http://your_lighttpd_server.com:81/path/clip.flv&amp;streamer=lighttpd&#39;</span><span class="br0">&#41;</span>;</div>
</li>
</ol>
</div>
<p>Whe have two parameters:<br />
file = link to the flv file we want to stream<br />
streamer = lighttpd<br />
With the second parameter we are activating the native flv stream support in the lighttpd server. After you start the playback of the video and forward to a spot that has not been downloaded yes, you will notice that another parameter will be passed to the flv file :<br />
start = # of frame to start (here is where the meta tags we generated with flvtool2 are used to index the frames in the flv file). The lighttpd parse all the requests to the flv file and starts the streaming from the requested frame.</p>
<p><img class="alignnone size-full" title="firebug" src="http://mindmist.com/blog/wp-content/uploads/2008/10/flv_stream_firebug.gif"/></p>
<p>That&#8217;s all folks.</p>
<p>For more info, here is where i got the info for this mini-how-to from:</p>
<p><a href="http://www.jeroenwijering.com/?item=JW_FLV_Media_Player" target="_blank">http://www.jeroenwijering.com/?item=JW_FLV_Media_Player</a><br />
<a href="http://www.jeroenwijering.com/?item=HTTP_Video_Streaming" target="_blank">http://www.jeroenwijering.com/?item=HTTP_Video_Streaming</a><br />
<a href="http://www.inlet-media.de/flvtool2" target="_blank">http://www.inlet-media.de/flvtool2</a><br />
<a href="http://blog.lighttpd.net/articles/2006/03/09/flv-streaming-with-lighttpd" target="_blank">http://blog.lighttpd.net/articles/2006/03/09/flv-streaming-with-lighttpd</a></p>
]]></content:encoded>
			<wfw:commentRss>http://mindmist.com/blog/12/10/2008/flv-steaming-serverclient-side/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Важно!</title>
		<link>http://mindmist.com/blog/09/10/2008/important/</link>
		<comments>http://mindmist.com/blog/09/10/2008/important/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 11:03:46 +0000</pubDate>
		<dc:creator>Angel</dc:creator>
				<category><![CDATA[Everything else]]></category>
		<category><![CDATA[host]]></category>
		<category><![CDATA[mindmist]]></category>
		<category><![CDATA[move]]></category>

		<guid isPermaLink="false">http://mindmist.com/blog/?p=80</guid>
		<description><![CDATA[Hola,
Поради ред причини и най-главно SPAM!!! реших да преместя mindmist.com на самостоятелен сървър. През милионите години направих на много хора мейли тук, затова сега ще помоля всеки който има активен мейл и иска да го запази да ми пише на angel[a]mindmist.com за да мога да му прехвърля всички папки, мейли и там още каквито глупости [...]]]></description>
			<content:encoded><![CDATA[<p>Hola,<br />
Поради ред причини и най-главно SPAM!!! реших да преместя mindmist.com на самостоятелен сървър. През милионите години направих на много хора мейли тук, затова сега ще помоля всеки който има активен мейл и иска да го запази да ми пише на angel[a]mindmist.com за да мога да му прехвърля всички папки, мейли и там още каквито глупости е събирал да в кутията си да ми пълни съвръра, на новия хост. <strong>Пак повтавям &#8211; да ми напише мейл, не в skype, icq, sms или телеграма.</strong> Да кажем, че не искам да се ангажирам с конкретна дата, но вече съм взел новата машина и сега остава само да я инсталирам и тествам. За да съм 100% сигурен, че ще намеря време и воля &#8211; нека датата е 1ви Декември 2008 .Нека силата е с вас !</p>
<p><img class="aligncenter" title="server move" src="http://www.joelpm.com/assets/2007/11/16/server_move1_small.jpg" alt="" width="194" height="259" /></p>
<p>&#8211; Ангел</p>
]]></content:encoded>
			<wfw:commentRss>http://mindmist.com/blog/09/10/2008/important/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Host</title>
		<link>http://mindmist.com/blog/28/08/2008/host/</link>
		<comments>http://mindmist.com/blog/28/08/2008/host/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 11:16:44 +0000</pubDate>
		<dc:creator>Angel</dc:creator>
				<category><![CDATA[Everything else]]></category>
		<category><![CDATA[pictures]]></category>

		<guid isPermaLink="false">http://mindmist.com/blog/?p=53</guid>
		<description><![CDATA[Picture of a creature, that i met during my last travel with a bulgarian train. Scary and aggressive one   
]]></description>
			<content:encoded><![CDATA[<p>Picture of a creature, that i met during my last travel with a bulgarian train. Scary and aggressive one <img src='http://mindmist.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<div class="ngg-galleryoverview" id="ngg-gallery-5-53">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-36" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/hosts/dsc09097.jpg" title=" " class="thickbox" rel="set_5"  rel="lightbox[53]">
								<img title="                               " alt="                               " src="http://mindmist.com/blog/wp-content/gallery/hosts/thumbs/thumbs_dsc09097.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-37" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/hosts/dsc09098.jpg" title=" " class="thickbox" rel="set_5"  rel="lightbox[53]">
								<img title="                               " alt="                               " src="http://mindmist.com/blog/wp-content/gallery/hosts/thumbs/thumbs_dsc09098.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-38" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/hosts/dsc09099.jpg" title=" " class="thickbox" rel="set_5"  rel="lightbox[53]">
								<img title="                               " alt="                               " src="http://mindmist.com/blog/wp-content/gallery/hosts/thumbs/thumbs_dsc09099.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-40" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/hosts/dsc09101.jpg" title=" " class="thickbox" rel="set_5"  rel="lightbox[53]">
								<img title="                               " alt="                               " src="http://mindmist.com/blog/wp-content/gallery/hosts/thumbs/thumbs_dsc09101.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

]]></content:encoded>
			<wfw:commentRss>http://mindmist.com/blog/28/08/2008/host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some funny draws that some people made the last month at my place</title>
		<link>http://mindmist.com/blog/10/08/2008/some-funny-draws-that-some-people-made-the-last-mothn-at-my-home/</link>
		<comments>http://mindmist.com/blog/10/08/2008/some-funny-draws-that-some-people-made-the-last-mothn-at-my-home/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 13:05:57 +0000</pubDate>
		<dc:creator>Angel</dc:creator>
				<category><![CDATA[Everything else]]></category>

		<guid isPermaLink="false">http://mindmist.com/blog/?p=49</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<div class="ngg-galleryoverview" id="ngg-gallery-4-49">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-30" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/draws/sylvia.jpg" title="Sylvia" class="thickbox" rel="set_4"  rel="lightbox[49]">
								<img title="sylvia.jpg" alt="sylvia.jpg" src="http://mindmist.com/blog/wp-content/gallery/draws/thumbs/thumbs_sylvia.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-31" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/draws/stefka.jpg" title="Stefka" class="thickbox" rel="set_4"  rel="lightbox[49]">
								<img title="stefka.jpg" alt="stefka.jpg" src="http://mindmist.com/blog/wp-content/gallery/draws/thumbs/thumbs_stefka.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-32" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/draws/ksanti.jpg" title="Ksanti" class="thickbox" rel="set_4"  rel="lightbox[49]">
								<img title="ksanti.jpg" alt="ksanti.jpg" src="http://mindmist.com/blog/wp-content/gallery/draws/thumbs/thumbs_ksanti.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-33" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/draws/angel.jpg" title="Me :)" class="thickbox" rel="set_4"  rel="lightbox[49]">
								<img title="angel.jpg" alt="angel.jpg" src="http://mindmist.com/blog/wp-content/gallery/draws/thumbs/thumbs_angel.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-34" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/draws/angel2.jpg" title="Me again" class="thickbox" rel="set_4"  rel="lightbox[49]">
								<img title="angel2.jpg" alt="angel2.jpg" src="http://mindmist.com/blog/wp-content/gallery/draws/thumbs/thumbs_angel2.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

]]></content:encoded>
			<wfw:commentRss>http://mindmist.com/blog/10/08/2008/some-funny-draws-that-some-people-made-the-last-mothn-at-my-home/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visitor</title>
		<link>http://mindmist.com/blog/29/07/2008/visitor/</link>
		<comments>http://mindmist.com/blog/29/07/2008/visitor/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 22:45:10 +0000</pubDate>
		<dc:creator>Angel</dc:creator>
				<category><![CDATA[Everything else]]></category>

		<guid isPermaLink="false">http://mindmist.com/blog/?p=46</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<div class="ngg-galleryoverview" id="ngg-gallery-2-46">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-19" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/visitors/dsc08869.jpg" title=" " class="thickbox" rel="set_2"  rel="lightbox[46]">
								<img title="                               " alt="                               " src="http://mindmist.com/blog/wp-content/gallery/visitors/thumbs/thumbs_dsc08869.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-18" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/visitors/dsc08870.jpg" title=" " class="thickbox" rel="set_2"  rel="lightbox[46]">
								<img title="                               " alt="                               " src="http://mindmist.com/blog/wp-content/gallery/visitors/thumbs/thumbs_dsc08870.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-20" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/visitors/dsc08868.jpg" title=" " class="thickbox" rel="set_2"  rel="lightbox[46]">
								<img title="                               " alt="                               " src="http://mindmist.com/blog/wp-content/gallery/visitors/thumbs/thumbs_dsc08868.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-21" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/visitors/dsc08867.jpg" title=" " class="thickbox" rel="set_2"  rel="lightbox[46]">
								<img title="                               " alt="                               " src="http://mindmist.com/blog/wp-content/gallery/visitors/thumbs/thumbs_dsc08867.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-22" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/visitors/dsc08866.jpg" title=" " class="thickbox" rel="set_2"  rel="lightbox[46]">
								<img title="                               " alt="                               " src="http://mindmist.com/blog/wp-content/gallery/visitors/thumbs/thumbs_dsc08866.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-23" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/visitors/dsc08865.jpg" title=" " class="thickbox" rel="set_2"  rel="lightbox[46]">
								<img title="                               " alt="                               " src="http://mindmist.com/blog/wp-content/gallery/visitors/thumbs/thumbs_dsc08865.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-24" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/visitors/dsc08863.jpg" title=" " class="thickbox" rel="set_2"  rel="lightbox[46]">
								<img title="                               " alt="                               " src="http://mindmist.com/blog/wp-content/gallery/visitors/thumbs/thumbs_dsc08863.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-25" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/visitors/dsc08858.jpg" title=" " class="thickbox" rel="set_2"  rel="lightbox[46]">
								<img title="                               " alt="                               " src="http://mindmist.com/blog/wp-content/gallery/visitors/thumbs/thumbs_dsc08858.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-26" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/visitors/dsc08857.jpg" title=" " class="thickbox" rel="set_2"  rel="lightbox[46]">
								<img title="                               " alt="                               " src="http://mindmist.com/blog/wp-content/gallery/visitors/thumbs/thumbs_dsc08857.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-27" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/visitors/dsc08856.jpg" title=" " class="thickbox" rel="set_2"  rel="lightbox[46]">
								<img title="                               " alt="                               " src="http://mindmist.com/blog/wp-content/gallery/visitors/thumbs/thumbs_dsc08856.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-28" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/visitors/dsc08855.jpg" title=" " class="thickbox" rel="set_2"  rel="lightbox[46]">
								<img title="                               " alt="                               " src="http://mindmist.com/blog/wp-content/gallery/visitors/thumbs/thumbs_dsc08855.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-29" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mindmist.com/blog/wp-content/gallery/visitors/dsc08853.jpg" title=" " class="thickbox" rel="set_2"  rel="lightbox[46]">
								<img title="                               " alt="                               " src="http://mindmist.com/blog/wp-content/gallery/visitors/thumbs/thumbs_dsc08853.jpg" width="100" height="75" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

]]></content:encoded>
			<wfw:commentRss>http://mindmist.com/blog/29/07/2008/visitor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenOffice 3 with native Aqua interface !</title>
		<link>http://mindmist.com/blog/17/07/2008/openoffice-3-with-native-aqua-interface/</link>
		<comments>http://mindmist.com/blog/17/07/2008/openoffice-3-with-native-aqua-interface/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 16:26:44 +0000</pubDate>
		<dc:creator>Angel</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Everything else]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[ooo]]></category>
		<category><![CDATA[openoffice]]></category>

		<guid isPermaLink="false">http://mindmist.com/blog/?p=36</guid>
		<description><![CDATA[I used to use NeoOffice on my mac, because i really got nervios watching the pending X Server icon in my Dock. Now i saw that the latest beta of OpenOffice supports the native Aqua Graphic Server. I already removed NeoOffice. Native is always better  
This is the way it looks like (nice and [...]]]></description>
			<content:encoded><![CDATA[<p>I used to use NeoOffice on my mac, because i really got nervios watching the pending X Server icon in my Dock. Now i saw that the latest beta of OpenOffice supports the native Aqua Graphic Server. I already removed NeoOffice. Native is always better <img src='http://mindmist.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>This is the way it looks like (nice and native) :</p>
<p style="text-align: center;"><a rel="lightbox[ooo]" href="http://mindmist.com/blog/wp-content/uploads/2008/07/picture-3.png"><br />
<img class="alignnone size-medium wp-image-37" title="OpenOffice 3 beta" src="http://mindmist.com/blog/wp-content/uploads/2008/07/picture-3-300x187.png" alt="" width="300" height="187" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mindmist.com/blog/17/07/2008/openoffice-3-with-native-aqua-interface/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s time for useless toys again :)</title>
		<link>http://mindmist.com/blog/07/07/2008/its-time-for-useless-toys-again/</link>
		<comments>http://mindmist.com/blog/07/07/2008/its-time-for-useless-toys-again/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 21:36:25 +0000</pubDate>
		<dc:creator>Angel</dc:creator>
				<category><![CDATA[Everything else]]></category>
		<category><![CDATA[Bamboo One]]></category>
		<category><![CDATA[CTF-430]]></category>
		<category><![CDATA[Tablet]]></category>

		<guid isPermaLink="false">http://mindmist.com/blog/?p=35</guid>
		<description><![CDATA[Sometimes i just need to buy some gadget. After some time wasted what i don&#8217;t need, but want to own&#8230; I got this toy : Wacom Bamboo One (CTF-430). It&#8217;s pretty cool, pity that i can&#8217;t draw at all   Btw. if you spend some time with it in Photoshop, you will start convincing [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes i just need to buy some gadget. After some time wasted what i don&#8217;t need, but want to own&#8230; I got this toy : Wacom Bamboo One (CTF-430). It&#8217;s pretty cool, pity that i can&#8217;t draw at all <img src='http://mindmist.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Btw. if you spend some time with it in Photoshop, you will start convincing yourself  that you maybe can draw.. like i did, but this won&#8217;t be true &#8230; Anyway &#8230; it&#8217;s a cool toy to own. It follows very exact each move of your hand and after 10 minutes you will have the feeling that you are actually drawing right on your screen. It comes with drivers and some applications for Windows and OSX and i tested it under Linux &#8211; it works!</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.purelygadgets.co.uk/images/user/products/Bamboo%20One.JPG" alt="Bamboo One" /></p>
]]></content:encoded>
			<wfw:commentRss>http://mindmist.com/blog/07/07/2008/its-time-for-useless-toys-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When can you be sure, that you are already  braindamaged ?!</title>
		<link>http://mindmist.com/blog/25/05/2008/when-can-you-be-sure-that-you-are-already-braindamaged/</link>
		<comments>http://mindmist.com/blog/25/05/2008/when-can-you-be-sure-that-you-are-already-braindamaged/#comments</comments>
		<pubDate>Sun, 25 May 2008 21:07:40 +0000</pubDate>
		<dc:creator>Angel</dc:creator>
				<category><![CDATA[Everything else]]></category>

		<guid isPermaLink="false">http://mindmist.com/blog/?p=34</guid>
		<description><![CDATA[I just made a small list of things that i am doing mindless from years:

You are surfing in Internet with Firebug turned on and even pay attention to debug messages from random sites ?
Sometimes you are even spending about 10-20 seconds debugging it ?
After filling a html form you press Ctrl + S to save [...]]]></description>
			<content:encoded><![CDATA[<p>I just made a small list of things that i am doing mindless from years:</p>
<ol>
<li>You are surfing in Internet with Firebug turned on and even pay attention to debug messages from random sites ?</li>
<li>Sometimes you are even spending about 10-20 seconds debugging it ?</li>
<li>After filling a html form you press Ctrl + S to save the output ?</li>
<li>Sometimes you are viewing the sources of random pages to see which js framework are they using ?</li>
<li>When you see a cool made page you are testing it in all possible browsers hoping  to find a bug ?</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://mindmist.com/blog/25/05/2008/when-can-you-be-sure-that-you-are-already-braindamaged/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Balls trippin&#8217;&#8230;</title>
		<link>http://mindmist.com/blog/18/04/2008/balls-trippin/</link>
		<comments>http://mindmist.com/blog/18/04/2008/balls-trippin/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 02:59:47 +0000</pubDate>
		<dc:creator>Angel</dc:creator>
				<category><![CDATA[Everything else]]></category>
		<category><![CDATA[cheesing]]></category>
		<category><![CDATA[south park]]></category>

		<guid isPermaLink="false">http://mindmist.com/blog/?p=6</guid>
		<description><![CDATA[I can only advice you to watch the best  South Park show ever &#8211; Major Boobage. You can find it on southparkstudios.com !
Do you feel like cheesing, guys ?

]]></description>
			<content:encoded><![CDATA[<p>I can only advice you to watch the best  South Park show ever &#8211; Major Boobage. You can find it on southparkstudios.com !</p>
<p><em>Do you feel like cheesing, guys ?</em></p>
<p style="text-align: center;"><img src="http://mindmist.com/blog/images/1203_kenny_very_cheesed.jpg" alt="Kenny !" /></p>
]]></content:encoded>
			<wfw:commentRss>http://mindmist.com/blog/18/04/2008/balls-trippin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Napster! Mistake or yes ?</title>
		<link>http://mindmist.com/blog/18/04/2008/napster-mistake-or-yes/</link>
		<comments>http://mindmist.com/blog/18/04/2008/napster-mistake-or-yes/#comments</comments>
		<pubDate>Fri, 18 Apr 2008 02:26:28 +0000</pubDate>
		<dc:creator>Angel</dc:creator>
				<category><![CDATA[Everything else]]></category>

		<guid isPermaLink="false">http://mindmist.com/blog/?p=5</guid>
		<description><![CDATA[I was really happy the first days, but now i am wondering &#8211; &#8220;What the fuck, do i have to do with the shit called WMA / DRM. There are a lot of solutions in internet, but you have to pay for them. Maybe an account in iTunes was a better idea, but there is [...]]]></description>
			<content:encoded><![CDATA[<p>I was really happy the first days, but now i am wondering &#8211; &#8220;What the fuck, do i have to do with the shit called WMA / DRM. There are a lot of solutions in internet, but you have to pay for them. Maybe an account in iTunes was a better idea, but there is no flatrate feature at all.</p>
<p>There is another issue. As a Mac user i need a way to play all the music in Leopard too, but there is no way. Fuck !</p>
<p>I found some solutions, but they are way to complicated to be used without pissing me off during the procedure. Maybe i have to write a small script using the package of binaries coming with MPlayer</p>
]]></content:encoded>
			<wfw:commentRss>http://mindmist.com/blog/18/04/2008/napster-mistake-or-yes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
