<?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>Rally Vincent-Blog &#187; Miscellaneous</title>
	<atom:link href="http://rvincent.digital-nerv.net/category/miscellaneous/feed/" rel="self" type="application/rss+xml" />
	<link>http://rvincent.digital-nerv.net</link>
	<description>&#34;Smurfs are asexual. They don&#039;t even have reproductive organs under those little white pants.&#34;</description>
	<lastBuildDate>Sun, 07 Aug 2011 20:58:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Weather Feeds</title>
		<link>http://rvincent.digital-nerv.net/2010/11/21/weather-feeds/</link>
		<comments>http://rvincent.digital-nerv.net/2010/11/21/weather-feeds/#comments</comments>
		<pubDate>Sun, 21 Nov 2010 00:47:19 +0000</pubDate>
		<dc:creator>Rally Vincent</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[weather]]></category>

		<guid isPermaLink="false">http://rvincent.digital-nerv.net/?p=992</guid>
		<description><![CDATA[http://www.google.com/ig/api?weather=Herford http://weather.msn.com/RSS.aspx?wealocations=wc:13863 http://xml.weather.yahoo.com/forecastrss?p=GMXX1652]]></description>
			<content:encoded><![CDATA[<p><img src="http://rvincent.digital-nerv.net/wp-content/uploads/left-2010-12-02-14-10.jpg" alt="" title="left-2010-12-02-14-10" width="600" height="106" class="alignnone size-full wp-image-1649" /></p>
<ul>
<li><code>http://www.google.com/ig/api?weather=Herford</code></li>
<li><code>http://weather.msn.com/RSS.aspx?wealocations=wc:13863</code></li>
<li><code>http://xml.weather.yahoo.com/forecastrss?p=GMXX1652</code></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://rvincent.digital-nerv.net/2010/11/21/weather-feeds/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zugriff auf Mail Dienste von der Konsole</title>
		<link>http://rvincent.digital-nerv.net/2010/05/18/zugriff-auf-mail-dienste-von-der-konsole/</link>
		<comments>http://rvincent.digital-nerv.net/2010/05/18/zugriff-auf-mail-dienste-von-der-konsole/#comments</comments>
		<pubDate>Tue, 18 May 2010 01:47:12 +0000</pubDate>
		<dc:creator>Rally Vincent</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[comandline]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[imap]]></category>
		<category><![CDATA[pop3]]></category>
		<category><![CDATA[smtp]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://rvincent.digital-nerv.net/?p=1369</guid>
		<description><![CDATA[Erstellen von MIME Code für den SSL Zugriff printf "{Benutzername}" &#124; mimencode printf "{Passwort}" &#124; mimencode Verbindung zu einem SMTP Server netcat localhost smtp quit Verbindung zu einem SMTP Server mit SSL openssl s_client -connect localhost:smtps auth login {Benutzername als MIME Code} {Passwort als MIME Code} mail from: {Absender} rcpt to: {Empfänger} data {Nachricht} . [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-1383" title="Die große Welle von Kanagawa" src="http://rvincent.digital-nerv.net/wp-content/uploads/die_grosse_welle_von_kanagawa.jpg" alt="" width="600" height="352" /></p>
<p><strong>Erstellen von MIME Code für den SSL Zugriff</strong></p>
<pre>printf "{Benutzername}" | mimencode
printf "{Passwort}" | mimencode</pre>
<p><strong>Verbindung zu einem SMTP Server</strong></p>
<pre>netcat localhost smtp
quit</pre>
<p><strong>Verbindung zu einem SMTP Server mit SSL</strong></p>
<pre>openssl s_client -connect localhost:smtps
auth login
{Benutzername als MIME Code}
{Passwort als MIME Code}
mail from: {Absender}
rcpt to: {Empfänger}
data
{Nachricht}
.
quit</pre>
<p><strong>Verbindung zu einem IMAP Server</strong></p>
<pre>netcat localhost imap
. login {Benutzername} {Passwort}
. list "" "*"
. status inbox (messages)
. capability
. logout</pre>
<p><strong>Verbindung zu einem IMAP Server mit SSL</strong></p>
<pre>openssl s_client -connect localhost:imaps
. login {Benutzername} {Passwort}
. list "" "*"
. status inbox (messages)
. capability
. logout</pre>
<p><strong>Verbindung zu einem POP3 Server</strong></p>
<pre>netcat localhost pop3
user {Benutzername}
pass {Passwort}
list
quit</pre>
<p><strong>Verbindung zu einem POP3 Server mit SSL</strong></p>
<pre>openssl s_client -connect localhost:pop3s
user {Benutzername}
pass {Passwort}
list
quit</pre>
<p><strong>Verbindung zu einem SIEVE Server</strong></p>
<pre>netcat localhost sieve
logout</pre>
<p>Ein Auszug aus <code>/etc/protocols</code> zeigt die Protokolle für Mail Dienste.</p>
<table style="width: 100%;">
<thead>
<tr>
<th>Name</th>
<th>Port/Protokoll</th>
<th>Alt. Name</th>
<th>Beschreibung</th>
</tr>
</thead>
<tbody>
<tr>
<td>smtp</td>
<td>25/tcp</td>
<td>mail</td>
<td></td>
</tr>
<tr>
<td>ssmtp</td>
<td>465/tcp</td>
<td>smtps</td>
<td># SMTP over SSL</td>
</tr>
<tr>
<td>imap2</td>
<td>143/tcp</td>
<td>imap</td>
<td># Interim Mail Access P 2 and 4</td>
</tr>
<tr>
<td>imap2</td>
<td>143/udp</td>
<td>imap</td>
<td></td>
</tr>
<tr>
<td>imap3</td>
<td>220/tcp</td>
<td></td>
<td># Interactive Mail Access</td>
</tr>
<tr>
<td>imap3</td>
<td>220/udp</td>
<td></td>
<td># Protocol v3</td>
</tr>
<tr>
<td>imaps</td>
<td>993/tcp</td>
<td></td>
<td># IMAP over SSL</td>
</tr>
<tr>
<td>imaps</td>
<td>993/udp</td>
<td></td>
<td></td>
</tr>
<tr>
<td>pop3</td>
<td>110/tcp</td>
<td>pop-3</td>
<td># POP version 3</td>
</tr>
<tr>
<td>pop3</td>
<td>110/udp</td>
<td>pop-3</td>
<td></td>
</tr>
<tr>
<td>pop3s</td>
<td>995/tcp</td>
<td></td>
<td># POP-3 over SSL</td>
</tr>
<tr>
<td>pop3s</td>
<td>995/udp</td>
<td></td>
<td></td>
</tr>
<tr>
<td>cisco-sccp</td>
<td>2000/tcp</td>
<td>sieve</td>
<td># Cisco SCCP</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://rvincent.digital-nerv.net/2010/05/18/zugriff-auf-mail-dienste-von-der-konsole/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Override the sizelimit in php options.ini</title>
		<link>http://rvincent.digital-nerv.net/2009/12/09/override-the-sizelimit-in-php-options-ini/</link>
		<comments>http://rvincent.digital-nerv.net/2009/12/09/override-the-sizelimit-in-php-options-ini/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 17:01:56 +0000</pubDate>
		<dc:creator>Rally Vincent</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://rvincent.digital-nerv.net/?p=1222</guid>
		<description><![CDATA[Insert the following lines into your .htaccess file. In this case we raise the limit up to 20 Megabytes. php_value upload_max_filesize 20M php_value post_max_size 20M php_value max_execution_time 200 php_value max_input_time 200]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-1230 alignnone" title="7268526-600" src="http://rvincent.digital-nerv.net/wp-content/uploads/7268526-600.jpg" alt="7268526-600" width="600" height="397" /></p>
<p>Insert the following lines into your <code>.htaccess</code> file. In this case we raise the limit up to 20 Megabytes.</p>
<pre>php_value upload_max_filesize 20M
php_value post_max_size 20M
php_value max_execution_time 200
php_value max_input_time 200</pre>
]]></content:encoded>
			<wfw:commentRss>http://rvincent.digital-nerv.net/2009/12/09/override-the-sizelimit-in-php-options-ini/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Valid YouTube Code</title>
		<link>http://rvincent.digital-nerv.net/2009/12/03/valid-youtube-code/</link>
		<comments>http://rvincent.digital-nerv.net/2009/12/03/valid-youtube-code/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 11:57:37 +0000</pubDate>
		<dc:creator>Rally Vincent</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[xhtml]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://rvincent.digital-nerv.net/?p=1036</guid>
		<description><![CDATA[&#60;object type="application/x-shockwave-flash" style="width:266px; height:222px;" data="http://www.youtube.com/v/qRmC49JTx8M"&#62; &#60;param name="movie" value="http://www.youtube.com/v/qRmC49JTx8M" /&#62; &#60;/object&#62; &#60;object type="application/x-shockwave-flash" style="width: 600px; height: 360px;" data="http://www.youtube.com/v/qRmC49JTx8M"&#62; &#60;param name="movie" value="http://www.youtube.com/v/qRmC49JTx8M" /&#62; &#60;param name="allowFullScreen" value="true" /&#62; &#60;param name="allowscriptaccess" value="always" /&#62; &#60;/object&#62;]]></description>
			<content:encoded><![CDATA[<blockquote><p><code>&lt;object type="application/x-shockwave-flash" style="width:266px; height:222px;" data="http://www.youtube.com/v/qRmC49JTx8M"&gt;<br />
&lt;param name="movie" value="http://www.youtube.com/v/qRmC49JTx8M" /&gt;<br />
&lt;/object&gt;</code></p></blockquote>
<p><object style="width: 266px; height: 222px;" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100" height="100" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="data" value="http://www.youtube.com/v/qRmC49JTx8M" /><param name="src" value="http://www.youtube.com/v/qRmC49JTx8M" /><embed style="width: 266px; height: 222px;" type="application/x-shockwave-flash" width="100" height="100" src="http://www.youtube.com/v/qRmC49JTx8M" data="http://www.youtube.com/v/qRmC49JTx8M"></embed></object></p>
<blockquote><p><code>&lt;object type="application/x-shockwave-flash" style="width: 600px; height: 360px;" data="http://www.youtube.com/v/qRmC49JTx8M"&gt;<br />
&lt;param name="movie" value="http://www.youtube.com/v/qRmC49JTx8M" /&gt;<br />
&lt;param name="allowFullScreen" value="true" /&gt;<br />
&lt;param name="allowscriptaccess" value="always" /&gt;<br />
&lt;/object&gt;</code></p></blockquote>
<p><object style="width: 600px; height: 360px;" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="100" height="100" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="data" value="http://www.youtube.com/v/qRmC49JTx8M" /><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/qRmC49JTx8M" /><param name="allowfullscreen" value="true" /><embed style="width: 600px; height: 360px;" type="application/x-shockwave-flash" width="100" height="100" src="http://www.youtube.com/v/qRmC49JTx8M" allowscriptaccess="always" allowfullscreen="true" data="http://www.youtube.com/v/qRmC49JTx8M"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://rvincent.digital-nerv.net/2009/12/03/valid-youtube-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PhotoStack Template</title>
		<link>http://rvincent.digital-nerv.net/2009/11/18/photostack-template/</link>
		<comments>http://rvincent.digital-nerv.net/2009/11/18/photostack-template/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 08:22:40 +0000</pubDate>
		<dc:creator>Rally Vincent</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[photostack]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[scriptaculous]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://rvincent.digital-nerv.net/?p=957</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-973" title="ScreenShot 149 PhotoStack Gallery » Leah Dizon - At the Wall - Mozilla Firefox" src="http://rvincent.digital-nerv.net/wp-content/uploads/ScreenShot-149-PhotoStack-Gallery-»-Leah-Dizon-At-the-Wall-Mozilla-Firefox.jpg" alt="ScreenShot 149 PhotoStack Gallery » Leah Dizon - At the Wall - Mozilla Firefox" width="600" height="400" /></p>
<p><img class="alignnone size-full wp-image-974" title="ScreenShot 148 PhotoStack Gallery » Leah Dizon - At the Wall - Mozilla Firefox" src="http://rvincent.digital-nerv.net/wp-content/uploads/ScreenShot-148-PhotoStack-Gallery-»-Leah-Dizon-At-the-Wall-Mozilla-Firefox.jpg" alt="ScreenShot 148 PhotoStack Gallery » Leah Dizon - At the Wall - Mozilla Firefox" width="600" height="400" /></p>
]]></content:encoded>
			<wfw:commentRss>http://rvincent.digital-nerv.net/2009/11/18/photostack-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bianca Series &#8211; New Project File</title>
		<link>http://rvincent.digital-nerv.net/2009/11/18/bianc-series-new-project-file/</link>
		<comments>http://rvincent.digital-nerv.net/2009/11/18/bianc-series-new-project-file/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 08:15:29 +0000</pubDate>
		<dc:creator>Rally Vincent</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[base64]]></category>
		<category><![CDATA[bianca series]]></category>
		<category><![CDATA[dashboard]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[stylesheet]]></category>

		<guid isPermaLink="false">http://rvincent.digital-nerv.net/?p=950</guid>
		<description><![CDATA[Only one File. Images embeded with base64. Including Javascript, Stylesheet, Images and Favicon. background: url("data:image/jpg;base64,&#60;base64code&#62;"); href="data:image/jpg;base64,&#60;base64code&#62;" If you are looking fo an Base64 Encoder/Decoder visit Base64Online at Motobit.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-980" title="ScreenShot 150 Bianca Series » localhost - Mozilla Firefox" src="http://rvincent.digital-nerv.net/wp-content/uploads/ScreenShot-150-Bianca-Series-»-localhost-Mozilla-Firefox.jpg" alt="ScreenShot 150 Bianca Series » localhost - Mozilla Firefox" width="600" height="660" /></p>
<p>Only one File. Images embeded with base64. Including Javascript, Stylesheet, Images and Favicon.</p>
<pre>background: url("data:image/jpg;base64,&lt;base64code&gt;");</pre>
<pre>href="data:image/jpg;base64,&lt;base64code&gt;"</pre>
<p>If you are looking fo an Base64 Encoder/Decoder visit <a rel="external" href="http://www.motobit.com/util/base64-decoder-encoder.asp" target="_blank">Base64Online</a> at Motobit.</p>
]]></content:encoded>
			<wfw:commentRss>http://rvincent.digital-nerv.net/2009/11/18/bianc-series-new-project-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ein paar nützliche Validatoren</title>
		<link>http://rvincent.digital-nerv.net/2009/06/18/ein-paar-nutzliche-validatoren/</link>
		<comments>http://rvincent.digital-nerv.net/2009/06/18/ein-paar-nutzliche-validatoren/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 22:25:58 +0000</pubDate>
		<dc:creator>Rally Vincent</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://rvincent.digital-nerv.net/?p=522</guid>
		<description><![CDATA[XSPF Validator — Validate your playlists iCalendar Validator Feed Validator for Atom and RSS]]></description>
			<content:encoded><![CDATA[<p><a href="http://validator.xspf.org/" target="_blank">XSPF Validator — Validate your playlists</a></p>
<p><a href="http://severinghaus.org/projects/icv/" target="_blank">iCalendar Validator</a></p>
<p><a href="http://www.feedvalidator.org/" target="_blank">Feed Validator for Atom and RSS</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rvincent.digital-nerv.net/2009/06/18/ein-paar-nutzliche-validatoren/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chinese Snippets</title>
		<link>http://rvincent.digital-nerv.net/2009/06/12/chinese-snippets/</link>
		<comments>http://rvincent.digital-nerv.net/2009/06/12/chinese-snippets/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 03:02:24 +0000</pubDate>
		<dc:creator>Rally Vincent</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[chinese]]></category>

		<guid isPermaLink="false">http://rvincent.digital-nerv.net/2009/06/12/chinese-snippets/</guid>
		<description><![CDATA[幸会 / Nice to meet you 對不起 / Sorry 我不明白 / I do not understand]]></description>
			<content:encoded><![CDATA[<p>幸会 / Nice to meet you<br />
對不起 / Sorry<br />
我不明白 / I do not understand</p>
]]></content:encoded>
			<wfw:commentRss>http://rvincent.digital-nerv.net/2009/06/12/chinese-snippets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easily Find Awesome Free Wallpapers With Google</title>
		<link>http://rvincent.digital-nerv.net/2009/03/24/easily-find-awesome-free-wallpapers-with-google/</link>
		<comments>http://rvincent.digital-nerv.net/2009/03/24/easily-find-awesome-free-wallpapers-with-google/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 11:23:59 +0000</pubDate>
		<dc:creator>Rally Vincent</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[images]]></category>

		<guid isPermaLink="false">http://rvincent.digital-nerv.net/?p=335</guid>
		<description><![CDATA[Um nach Bildern in einer gewünschten Größe bei Google zu suchen einfach den Parameter &#8220;imagesize&#8221; zu der Suche hinzufügen. Beispiel: imagesize:1680x1050 ningen Beispiel aufrufen.]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-336" style="margin-right: 10px;" title="Google" src="http://rvincent.digital-nerv.net/wp-content/uploads/images.jpeg" alt="Google" width="150" height="63" />Um nach Bildern in einer gewünschten Größe bei Google zu suchen einfach den Parameter &#8220;imagesize&#8221; zu der Suche hinzufügen.</p>
<p>Beispiel:</p>
<pre>imagesize:1680x1050 ningen</pre>
<p>Beispiel <a href="http://images.google.com/images?hl=en&amp;safe=off&amp;q=imagesize%3A1680x1050+ningen">aufrufen</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://rvincent.digital-nerv.net/2009/03/24/easily-find-awesome-free-wallpapers-with-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Veronica moved to Tekzilla</title>
		<link>http://rvincent.digital-nerv.net/2008/05/07/tekzilla/</link>
		<comments>http://rvincent.digital-nerv.net/2008/05/07/tekzilla/#comments</comments>
		<pubDate>Wed, 07 May 2008 16:04:14 +0000</pubDate>
		<dc:creator>Rally Vincent</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[veronica belmont]]></category>

		<guid isPermaLink="false">http://rvincent.digital-nerv.net/?p=193</guid>
		<description><![CDATA[Watch more: http://revision3.com/tekzilla/]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="360" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="base" value="http://bitcast-a.bitgravity.com/revision3/swf/" /><param name="loop" value="false" /><param name="quality" value="high" /><param name="bgcolor" value="#171717" /><param name="allowScriptAccess" value="sameDomain" /><param name="allowFullScreen" value="true" /><param name="src" value="http://bitcast-a.bitgravity.com/revision3/swf/rev3_player.swf?AutoPlay=off&amp;Buffer=120&amp;File=http://www.podtrac.com/pts/redirect.flv/bitcast-a.bitgravity.com/revision3/flv/tekzilla/0028/tekzilla--0028--veronica--800kbps.flv&amp;ScrubMode=advanced&amp;Thumb=http://bitcast-a.bitgravity.com/revision3/thumbs/tekzilla--0028--veronica--thumb.jpg&amp;DefaultRatio=0.56&amp;AutoSize=off" /><param name="name" value="rev3player_v2" /><param name="align" value="middle" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="600" height="360" src="http://bitcast-a.bitgravity.com/revision3/swf/rev3_player.swf?AutoPlay=off&amp;Buffer=120&amp;File=http://www.podtrac.com/pts/redirect.flv/bitcast-a.bitgravity.com/revision3/flv/tekzilla/0028/tekzilla--0028--veronica--800kbps.flv&amp;ScrubMode=advanced&amp;Thumb=http://bitcast-a.bitgravity.com/revision3/thumbs/tekzilla--0028--veronica--thumb.jpg&amp;DefaultRatio=0.56&amp;AutoSize=off" align="middle" name="rev3player_v2" allowfullscreen="true" allowscriptaccess="sameDomain" bgcolor="#171717" quality="high" loop="false" base="http://bitcast-a.bitgravity.com/revision3/swf/"></embed></object></p>
<p>Watch more: <a href="http://revision3.com/tekzilla/">http://revision3.com/tekzilla/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://rvincent.digital-nerv.net/2008/05/07/tekzilla/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

