<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Vampire Trix</title>
	
	<link>http://www.vampiretrix.com</link>
	<description>My blog!</description>
	<lastBuildDate>Sun, 29 Jan 2012 23:01:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/VampireTrix" /><feedburner:info uri="vampiretrix" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>VampireTrix</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>New XOOPS theme coming up!</title>
		<link>http://feedproxy.google.com/~r/VampireTrix/~3/5vJBzsm2Ckw/new-xoops-theme-coming-up</link>
		<comments>http://www.vampiretrix.com/categories/other/new-xoops-theme-coming-up#comments</comments>
		<pubDate>Sun, 04 Dec 2011 10:37:37 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://www.vampiretrix.com/?p=674</guid>
		<description><![CDATA[Hello everyone! I&#8217;ve been working hard on a new &#8216;refresh&#8217; of my sites design, and I have decided to bring my new theme to XOOPS. And the good news is that it&#8217;s already nearly completed, and it looks gorgeous! It&#8217;s a standards compliant theme that runs in all modern browsers, even in IE9 and up (as noted before, I don&#8217;t support any browsers that aren&#8217;t up to date). It&#8217;s packing the same design as here, [...]]]></description>
			<content:encoded><![CDATA[<p>Hello everyone!</p>
<p>I&#8217;ve been working hard on a new &#8216;refresh&#8217; of my sites design, and I have decided to bring my new theme to XOOPS. And the good news is that it&#8217;s already nearly completed, and it looks gorgeous!</p>
<p>It&#8217;s a standards compliant theme that runs in all modern browsers, even in IE9 and up (as noted before, I don&#8217;t support any browsers that aren&#8217;t up to date).</p>
<p>It&#8217;s packing the same design as here, but only modified to XOOPS, and I&#8217;ve even added a sweet image slider!</p>
<p>Now, without further ado, here&#8217;s a screenshot!</p>
<p style="text-align: center;"><a href="http://www.vampiretrix.com/wp-content/uploads/2011/12/ie9essence.png"><img class="aligncenter size-medium wp-image-675" title="ie9essence" src="http://www.vampiretrix.com/wp-content/uploads/2011/12/ie9essence-300x168.png" alt="" width="300" height="168" /></a>That&#8217;s the IE9 version, by the way.</p>
<p>Coming soon to my newly launched webshop!</p>
<img src="http://feeds.feedburner.com/~r/VampireTrix/~4/5vJBzsm2Ckw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vampiretrix.com/categories/other/new-xoops-theme-coming-up/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.vampiretrix.com/categories/other/new-xoops-theme-coming-up</feedburner:origLink></item>
		<item>
		<title>Quick-tip: how to avoid getting your stylesheet cached</title>
		<link>http://feedproxy.google.com/~r/VampireTrix/~3/CwXQtcsKpP8/quick-tip-how-to-avoid-getting-your-stylesheet-cached</link>
		<comments>http://www.vampiretrix.com/quick-tip/quick-tip-how-to-avoid-getting-your-stylesheet-cached#comments</comments>
		<pubDate>Fri, 05 Aug 2011 21:25:22 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Quick-tip]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[quick-tip]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://www.vampiretrix.com/?p=660</guid>
		<description><![CDATA[Ever since I&#8217;ve started using openDNS my stylesheets constantly get cached which makes it really hard to develop &#8211; so here&#8217;s a little trick on how to avoid getting your stylesheets cached. It&#8217;s very simple. Instead of doing this: We&#8217;ll use this: This bit of code, echo time(); will display the time which is different all of the time, so it effectively avoids getting your style.css cached. Kevin]]></description>
			<content:encoded><![CDATA[<p>Ever since I&#8217;ve started using openDNS my stylesheets constantly get cached which makes it really hard to develop &#8211; so here&#8217;s a little trick on how to avoid getting your stylesheets cached. It&#8217;s very simple.</p>
<p>Instead of doing this:</p>
<pre class="brush: php; title: Code:; notranslate">&lt;link href=&quot;style.css&quot; rel=&quot;stylesheet&quot; /&gt;</pre>
<p>We&#8217;ll use this:</p>
<pre class="brush: php; title: Code:; notranslate">&lt;link href=&quot;style.css?&lt;?php echo time(); ?&gt;&quot; rel=&quot;stylesheet&quot; /&gt;</pre>
<p>This bit of code, echo time(); will display the time which is different all of the time, so it effectively avoids getting your style.css cached.</p>
<p>Kevin</p>
<img src="http://feeds.feedburner.com/~r/VampireTrix/~4/CwXQtcsKpP8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vampiretrix.com/quick-tip/quick-tip-how-to-avoid-getting-your-stylesheet-cached/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.vampiretrix.com/quick-tip/quick-tip-how-to-avoid-getting-your-stylesheet-cached</feedburner:origLink></item>
		<item>
		<title>Getting started with HTML5 offline cache</title>
		<link>http://feedproxy.google.com/~r/VampireTrix/~3/Z5C1uA8_53c/getting-started-with-html5-offline-cache</link>
		<comments>http://www.vampiretrix.com/html5/getting-started-with-html5-offline-cache#comments</comments>
		<pubDate>Fri, 05 Aug 2011 20:41:21 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[Getting started]]></category>
		<category><![CDATA[offline cache]]></category>

		<guid isPermaLink="false">http://www.vampiretrix.com/?p=649</guid>
		<description><![CDATA[Hello everyone! This is one where I was afraid for: offline cache. A fear which really isn&#8217;t needed at all, as it is really a piece of cake to get started with offline caching in HTML5. I&#8217;m now using it on two of my websites, this one included, and it takes only minutes to get started (although I&#8217;m not completely sure if I did it right, I think I did Getting started! First of all, [...]]]></description>
			<content:encoded><![CDATA[<p>Hello everyone!</p>
<p>This is one where I was afraid for: offline cache. A fear which really isn&#8217;t needed at all, as it is really a piece of cake to get started with offline caching in HTML5.</p>
<p>I&#8217;m now using it on two of my websites, this one included, and it takes only minutes to get started (although I&#8217;m not completely sure if I did it right, I think I did <img src='http://www.vampiretrix.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><strong>Getting started!</strong></p>
<p>First of all, you&#8217;ll need to make sure that you are actually working in an HTML document, so don&#8217;t forget the HTML5 doctype! (believe it or not, that&#8217;s a common thing people forget). It&#8217;s very easy, but I&#8217;ll type it here anyway:</p>
<pre class="brush: xml; title: Code:; notranslate">&lt;!DOCTYPE html&gt;</pre>
<p>After that code, we&#8217;ll need to create a new file, called offlinecache.manifest. That file will tell the browser which files it&#8217;s allowed to cache. You can also tell what it shouldn&#8217;t cache &#8211; you&#8217;ve got complete control.</p>
<p>So, open up your favorite text editor and create a new file. In that file, you&#8217;ll need to paste something like this.</p>
<pre class="brush: plain; title: Code:; notranslate">CACHEMANIFEST

 # version: 1

 # List CACHEable files

 CACHE:

 images/background.jpg

 images/adblocker.png

 images/alert-overlay.png

 images/canvas-bg.jpg

# List here what shouldn't be cached. Use * to allow only caching what is listed above

 NETWORK:

 *</pre>
<p>This file is pretty straight-forward, but I&#8217;ll explain this anyway. You can change the version without any problem, that&#8217;s just a comment &#8211; but don&#8217;t change the CACHEMANIFEST. Under the CACHE you&#8217;ll need to specify what is allowed to be cached. You aren&#8217;t limited to images, you can also add HTML files and more.</p>
<p>Under NETWORK, you can specify what shouldn&#8217;t get cached. Now, that can be a lot of work to specify that, so just add a * to avoid having to specify everything. If you use *, it&#8217;ll avoid caching anything you haven&#8217;t said that could be cached.</p>
<p>When you&#8217;re done in this file, save it as <strong>offlinecache.manifest</strong></p>
<p><strong>If you&#8217;re actively developing your site, it&#8217;s handy to avoid caching your style.css or template files!</strong></p>
<p>Now, we still need to upload this file to our website, so do that. I prefer to have this file in my site root<strong></strong>. You can place it in a folder if you like to, just remember where you place it.</p>
<p>Now, we&#8217;ll still need to edit 2 files to get this to work. Open your html file (or any file where you specify the doctype) and add, after the</p>
<pre class="brush: xml; title: Code:; notranslate">&lt;!DOCTYPE html&gt;</pre>
<p>(remember, it has to be HTML5!), this chunk of code:</p>
<pre class="brush: xml; title: Code:; notranslate">&lt;html manifest=&quot;http://www.yoursite.org/offlinecache.manifest&quot;&gt;</pre>
<p>This will tell where your offlinecache file is and let know the browser that you want to cache these files. Edit the site location to where your file is, save it and you&#8217;re done here. Who told you it would be hard?</p>
<p>Now, the last step is to edit our .htaccess file (if you don&#8217;t have one &#8211; make one).</p>
<p>Making a htaccess file can be quite tricky on windows, so just call it site.htaccess or something and rename it on your server.</p>
<p>Now, paste (if you already have stuff in your htaccess just add it at the bottom of the file):</p>
<pre class="brush: xml; title: Code:; notranslate">AddType text/cache-manifest manifest</pre>
<p>And that&#8217;s all! Just save and upload this file (and don&#8217;t forget to rename it to .htaccess). Now you should get a toolbar in Firefox asking you if you want to allow caching of files. Congratulations!</p>
<p>If for any reason that doesn&#8217;t happen just leave a comment and I&#8217;ll try to help you out!</p>
<p>Kevin</p>
<img src="http://feeds.feedburner.com/~r/VampireTrix/~4/Z5C1uA8_53c" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vampiretrix.com/html5/getting-started-with-html5-offline-cache/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.vampiretrix.com/html5/getting-started-with-html5-offline-cache</feedburner:origLink></item>
		<item>
		<title>New design plus new tutorials coming!</title>
		<link>http://feedproxy.google.com/~r/VampireTrix/~3/f1i6JWoNQBs/new-design-plus-new-tutorials-coming</link>
		<comments>http://www.vampiretrix.com/blog/new-design-plus-new-tutorials-coming#comments</comments>
		<pubDate>Fri, 05 Aug 2011 20:12:22 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.vampiretrix.com/?p=646</guid>
		<description><![CDATA[Hello everyone! &#160; Just a quick update to tell you guys I&#8217;ve updated the design of my blog, to make it a bit more blog-like. Also, I&#8217;m going to add a lot more tutorials, as that&#8217;s one of the more popular kind of posts here. Currently, I&#8217;m working on a XOOPS theme that will be full HTML5 which also supports &#8216;theme expansions&#8217;. It&#8217;s already being coded, and it will feature nice things: I&#8217;m making it [...]]]></description>
			<content:encoded><![CDATA[<p>Hello everyone!</p>
<p>&nbsp;</p>
<p>Just a quick update to tell you guys I&#8217;ve updated the design of my blog, to make it a bit more blog-like.</p>
<p>Also, I&#8217;m going to add a lot more tutorials, as that&#8217;s one of the more popular kind of posts here. Currently, I&#8217;m working on a XOOPS theme that will be full HTML5 which also supports &#8216;theme expansions&#8217;.</p>
<p>It&#8217;s already being coded, and it will feature nice things: I&#8217;m making it a concept-theme and I&#8217;ll offer it as a framework for others to work upon &#8211; a state of the art one with nice features.</p>
<p>I&#8217;ll be telling about it while working on it on this blog too.</p>
<p>PS: I know about how my blog looks like in IE or any other browser, just didn&#8217;t have the time to fix it all <img src='http://www.vampiretrix.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p>Kevin</p>
<img src="http://feeds.feedburner.com/~r/VampireTrix/~4/f1i6JWoNQBs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vampiretrix.com/blog/new-design-plus-new-tutorials-coming/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.vampiretrix.com/blog/new-design-plus-new-tutorials-coming</feedburner:origLink></item>
		<item>
		<title>Tired of it all…</title>
		<link>http://feedproxy.google.com/~r/VampireTrix/~3/2VLqfacRI8o/tired-of-it-all</link>
		<comments>http://www.vampiretrix.com/categories/other/tired-of-it-all#comments</comments>
		<pubDate>Sun, 29 May 2011 11:22:19 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://www.vampiretrix.com/?p=637</guid>
		<description><![CDATA[Hello everybody&#8230; long time since my last serious post Sorry for me not posting a lot lately but I&#8217;m really getting tired of it all. My life hasn&#8217;t been too easy or too fun lately. Fun has been strangely absent, just like any form of luck. But don&#8217;t worry, it&#8217;s not going to be a &#8220;rage&#8221; post, I&#8217;m going to explain why. It&#8217;s time I get this from my shoulders. This year, 2011, started quite [...]]]></description>
			<content:encoded><![CDATA[<p>Hello everybody&#8230; long time since my last serious post <img src='http://www.vampiretrix.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Sorry for me not posting a lot lately but I&#8217;m really getting tired of it all. My life hasn&#8217;t been too easy or too fun lately. Fun has been strangely absent, just like any form of luck.<br />
But don&#8217;t worry, it&#8217;s not going to be a &#8220;rage&#8221; post, I&#8217;m going to explain why. It&#8217;s time I get this from my shoulders.</p>
<p>This year, 2011, started quite well, and I hoped it would have been a better year for me than 2010 was, but after a short good start things started to get really bad.</p>
<p>First of all, I don&#8217;t know if you all know this, but I haven&#8217;t had contact with my parents ever since they kicked me out in 2009. I still remember it well, it started as a little fight, but it was the last drop that made the bucket overflow. Long story short: they kicked me out and I had to live together with my girlfriend, Kirsi, with who I am still together, now for nearly two years and three months. But I&#8217;ll come back on that last bit later. Seems like my father stopped taking his pills a week or two earlier. And guess what happened&#8230; I got kicked out. And I have a violent dad: that day he tried to get me off the stairs by pulling on my hair with his full weight. Never lost so much hair as back then.</p>
<p>My parents, except one time when they put my remaining stuff at my grandmother (I learnt about that from my aunt, who has helped me), haven&#8217;t contacted me. Or well, they didn&#8217;t try to. But in the beginning of this year, thing seemed to change. My father tried to befriend me on Facebook and well&#8230; my girlfriend Kirsi is still angry at my father and mother for doing what they did. So Kirsi ignored the request.</p>
<p>He tried to contact me in various ways until one day, I still remember it well, I was walking to the railway station when I got a phone call from my dad. Believe me, it&#8217;s awkward when somebody who ignored you for the last few years contacts you. Especially since they didn&#8217;t seem to care a bit about me. I&#8217;ve had to pay my school costs myself (thanks to my school I got the schoolbooks from last year for free, but paid for the books this year). And I get about € 108.00 a month to get through, so I don&#8217;t have much budget. They never even suggested to help me.<br />
So he called me and asked if I would like to come to a family party. That&#8217;s right, a party to see my whole family back. In the end, it seems, they only invited me because my dad&#8217;s mother asked for me, and it was her birthday party.</p>
<p>After a lot of arguments with Kirsi we went to that party, and well, except one phone call I made to them, to congratulate my mother with her birthday, I haven&#8217;t heard from them since.</p>
<p>My birthday was the 7th of April, and the day I&#8217;m writing this, we&#8217;re almost 2 months further and I still haven&#8217;t heard a thing from them. Or from many others.</p>
<p>All of my friends congratulated me, but my family almost all forgot me. Except the family on my mother&#8217;s side, they are on my side and have helped me since I got kicked out.  Of course, thanks to Facebook most of my friends send me a message or wrote something on my wall, but a few days before my birthday I wasn&#8217;t even sure if I would do anything for my birthday. Situations at home, like my girlfriends mother getting an operation, simply cancelled all stuff there was planned for my birthday. Not that there was anything planned.</p>
<p>In the end, I invited my best friends to go eat a kebab. Lots of arguments with Kirsi later and moving it 2 times, we finally did that. From them I got my only presents&#8230; 2 cd&#8217;s and a dvd, and I&#8217;m really grateful to them for giving those things to me. It&#8217;s not about the amount of gifts, but the thought. But it still hurts knowing that they are the only ones who really thought about me.</p>
<p>I&#8217;ve had the most worthless birthday I&#8217;ve ever had, believe me. Simply because it wasn&#8217;t like a birthday. Didn&#8217;t even receive a postcard <img src='http://www.vampiretrix.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . And to make things worse, I usually don&#8217;t have to go to school on my birthday because of it mostly being in the easter holidays, but this year it wasn&#8217;t. Not like that was a problem, it happened a few times before&#8230; but it made a lousy birthday even more worse.</p>
<p>The only positive thing was that I went to Jeff Dunham the day after my birthday. But as I&#8217;d like to say, one light can&#8217;t light a whole dark night. It can light a small clearing, but not the whole night.</p>
<p>But that&#8217;s not the only thing that went wrong, also my whole love life is fucked up with more arguments between me and Kirsi, but we are kind of stuck together. Don&#8217;t recommend anyone to be in the same situation as me, as I&#8217;m being teared apart.</p>
<p>Also, school is really annoying me, it&#8217;s simply not fun at all anymore&#8230; I get bored constantly, I&#8217;ve got way too much schoolwork and barely free time, and when I have free time I don&#8217;t know what to do. Boring ass life&#8230;</p>
<p>And worst of all I&#8217;m afraid to loose my friends again, as I didn&#8217;t give them enough (well, none) attention because I wanted to save my relation with Kirsi but that&#8217;s doomed anyhow.</p>
<p>And on professional part: still haven&#8217;t sold a copy of Faster or Faster v2, says enough. Going to give it away for free soon, it&#8217;s just been a big waste of time like everything else. Don&#8217;t know if I&#8217;ll continue working on XOOPS too, haven&#8217;t been able to install XE3. Everything I do is a big waste of time&#8230;</p>
<p>God I hate my life.</p>
<p>Kevin</p>
<img src="http://feeds.feedburner.com/~r/VampireTrix/~4/2VLqfacRI8o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vampiretrix.com/categories/other/tired-of-it-all/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.vampiretrix.com/categories/other/tired-of-it-all</feedburner:origLink></item>
		<item>
		<title>Now for sale: premium xoops theme Faster 2</title>
		<link>http://feedproxy.google.com/~r/VampireTrix/~3/-gJd5isPeqA/now-for-sale-premium-xoops-theme-faster-2</link>
		<comments>http://www.vampiretrix.com/categories/other/now-for-sale-premium-xoops-theme-faster-2#comments</comments>
		<pubDate>Wed, 18 May 2011 17:17:05 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://www.vampiretrix.com/?p=622</guid>
		<description><![CDATA[Hello everybody! &#160; Today I&#8217;m introducing the new version of my #1st paid premium xoops theme, Faster. This version is named Faster 2 (I&#8217;m really bad with creative names ). The theme has been made for XOOPS 2.4/2.5 but it should run on older 2.x releases too. It&#8217;s a 3 column theme with a fixed width of 960px (which can be easily tweaked). Included is a special site closed template The new version includes 3 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vampiretrix.com/wp-content/uploads/2011/05/faster_v2promo.png"><img class="aligncenter size-full wp-image-625" title="faster_v2promo" src="http://www.vampiretrix.com/wp-content/uploads/2011/05/faster_v2promo.png" alt="" width="640" height="314" /></a></p>
<p>Hello everybody!</p>
<p>&nbsp;</p>
<p>Today I&#8217;m introducing the new version of my #1st paid premium xoops theme, Faster. This version is named Faster 2 (I&#8217;m really bad with creative names <img src='http://www.vampiretrix.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ).</p>
<p>The theme has been made for XOOPS 2.4/2.5 but it should run on older 2.x releases too. It&#8217;s a 3 column theme with a fixed width of 960px (which can be easily tweaked).<br />
Included is a special site closed template</p>
<p>The new version includes 3 new color styles (pink, grey and blue) and included are the PSD files for these colors. Together with this release I&#8217;ve lowered the price of the theme to $2.99. I&#8217;m also working on ways to give the theme away for free.</p>
<p>This theme also includes free support and updates (I might add new color styles) and I guarantee that when Xoops Engine is released, this theme will get a version to run on it.</p>
<p>The theme has been tested in all modern browsers (that means everything above IE7). It&#8217;s <strong>now for sale for only $2.99</strong> (which is $2.69 <strong>cheaper</strong> than the earlier version!). You&#8217;ll also get a discount for my upcoming theme Laguna (I haven&#8217;t set a price yet <img src='http://www.vampiretrix.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> ). <strong>You can also get it for free right now by using TrailPay!</strong></p>
<p><strong>Update: 19/05/2011:</strong> now you can also pay with PayPal, check, wire transfer and creditcards. Use the Buy Now  button to buy the theme in one of these ways. (please note that the paypal and creditcard option are not available if you use a free emailadress. If you use one feel free to mail me on vampire.trix@gmail.com for a solution. Other payment options will be introduced soon.)</p>
<div style="background-color: #c1c1c1; border-radius: 5px; padding: 5px;"><a href="http://www.trialpay.com/productpage/?c=41a6e9f&amp;tid=9ahmhJh"><img src="http://www.trialpay.com/mi/?rc=v&amp;ri=1368898&amp;p=VWr3AArA&amp;t=9ahmhJh&amp;type=img" border="0" alt="" /></a> <a href="http://www.shareit.com/product.html?cart=1&amp;productid=300450650"><img class="size-full wp-image-634 alignleft" title="Buy now" src="http://www.vampiretrix.com/wp-content/uploads/2011/05/bn.png" alt="" width="145" height="65" /></a>&nbsp;</p>
<p><strong><a href="http://www.vampiretrix.com/xoopsdemo">A demo is available here</a></strong></p>
</div>
<p><strong><br />
</strong></p>
<p>You can buy it by mailing me on vampire.trix@gmail.com and I&#8217;ll give you the instructions. I&#8217;m still working on more diverse payment options.</p>
<p>&nbsp;</p>
<p>Kevin</p>
<img src="http://feeds.feedburner.com/~r/VampireTrix/~4/-gJd5isPeqA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vampiretrix.com/categories/other/now-for-sale-premium-xoops-theme-faster-2/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.vampiretrix.com/categories/other/now-for-sale-premium-xoops-theme-faster-2</feedburner:origLink></item>
		<item>
		<title>Small updates :)</title>
		<link>http://feedproxy.google.com/~r/VampireTrix/~3/pKfrq_T8c8E/small-updates</link>
		<comments>http://www.vampiretrix.com/categories/other/small-updates#comments</comments>
		<pubDate>Tue, 17 May 2011 08:03:22 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://www.vampiretrix.com/?p=618</guid>
		<description><![CDATA[Damn, I&#8217;m silent I&#8217;ve just updated my blog a bit and stuff will get refreshed here soon. Got lots of work to do You&#8217;ll be seeing me here a lot more and I&#8217;ll also use this site a lot more. Kevin]]></description>
			<content:encoded><![CDATA[<p>Damn, I&#8217;m silent <img src='http://www.vampiretrix.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I&#8217;ve just updated my blog a bit and stuff will get refreshed here soon. Got lots of work to do <img src='http://www.vampiretrix.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>You&#8217;ll be seeing me here a lot more and I&#8217;ll also use this site a lot more.</p>
<p>Kevin</p>
<img src="http://feeds.feedburner.com/~r/VampireTrix/~4/pKfrq_T8c8E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vampiretrix.com/categories/other/small-updates/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.vampiretrix.com/categories/other/small-updates</feedburner:origLink></item>
		<item>
		<title>Faster update coming along nicely :)</title>
		<link>http://feedproxy.google.com/~r/VampireTrix/~3/U5k2LYHFKiA/faster-update-coming-along-nicely</link>
		<comments>http://www.vampiretrix.com/categories/xoops/faster-update-coming-along-nicely#comments</comments>
		<pubDate>Tue, 22 Feb 2011 10:34:06 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[XOOPS]]></category>

		<guid isPermaLink="false">http://www.vampiretrix.com/?p=616</guid>
		<description><![CDATA[The update to Faster is going fast. Yesterday, I made 3 new colors: grey, blue and purple, but I might add some more. The PSD&#8217;s of these are also going to be included in the updated package. I&#8217;ve also started to code the new colors, purple first, and had a working version of the purple layout (though very rough) but I&#8217;ve updated the stylesheet switcher and that has me on a changing header only atm [...]]]></description>
			<content:encoded><![CDATA[<p>The update to Faster is going fast. Yesterday, I made 3 new colors: grey, blue and purple, but I might add some more. The PSD&#8217;s of these are also going to be included in the updated package.</p>
<p>I&#8217;ve also started to code the new colors, purple first, and had a working version of the purple layout (though very rough) but I&#8217;ve updated the stylesheet switcher and that has me on a changing header only atm (but the script is full working and it&#8217;s now much easier to update).</p>
<p>I&#8217;ll try to post pictures of the PSD&#8217;s later on today so you can tell me what you think about it (when I enable comments, that is <img src='http://www.vampiretrix.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ).</p>
<img src="http://feeds.feedburner.com/~r/VampireTrix/~4/U5k2LYHFKiA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vampiretrix.com/categories/xoops/faster-update-coming-along-nicely/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.vampiretrix.com/categories/xoops/faster-update-coming-along-nicely</feedburner:origLink></item>
		<item>
		<title>Disappointment</title>
		<link>http://feedproxy.google.com/~r/VampireTrix/~3/LxAwwNMCjoc/disappointment</link>
		<comments>http://www.vampiretrix.com/categories/xoops/disappointment#comments</comments>
		<pubDate>Mon, 21 Feb 2011 09:42:24 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[XOOPS]]></category>

		<guid isPermaLink="false">http://www.vampiretrix.com/?p=613</guid>
		<description><![CDATA[Well, I expected a bit more, but hey everybody would. Let me get you up to date&#8230; Recently, I&#8217;ve released my first XOOPS premium theme, called Faster. I had moderate hopes for it, as it didn&#8217;t include special features &#8211; I&#8217;m still working on those, but they will be in Laguna, my next premium theme. If I will release it, that is. My theme, Faster, is for sale for € 3,99, which includes free support, [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I expected a bit more, but hey <img src='http://www.vampiretrix.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  everybody would.</p>
<p>Let me get you up to date&#8230; Recently, I&#8217;ve released my first XOOPS premium theme, called Faster. I had moderate hopes for it, as it didn&#8217;t include special features &#8211; I&#8217;m still working on those, but they will be in Laguna, my next premium theme. If I will release it, that is.</p>
<p>My theme, Faster, is for sale for € 3,99, which includes free support, free customization help and a PSD as well as the theme itself.</p>
<p>But unfortunately, I haven&#8217;t sold a single copy of the theme, so I&#8217;m going to change some things. First of all, I&#8217;m remaking the theme a bit so it&#8217;ll include several stylesheets (I&#8217;ll aim for at least 3 colors). I&#8217;ll also include some of the special features I&#8217;m still working on (my themeoptions project <img src='http://www.vampiretrix.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ). I&#8217;ll also lower the price with about $3 to $2.99.</p>
<p>I&#8217;ll re-release the theme when I can release Laguna too, and I&#8217;ll offer them in a pack for $4.99 only.</p>
<p>I&#8217;ll also add, next to the theme and the PSD a HTML version.</p>
<p>I&#8217;ll expect to launch the new version somewhere in the beginning of March.</p>
<img src="http://feeds.feedburner.com/~r/VampireTrix/~4/LxAwwNMCjoc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vampiretrix.com/categories/xoops/disappointment/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.vampiretrix.com/categories/xoops/disappointment</feedburner:origLink></item>
		<item>
		<title>Hard at work :)</title>
		<link>http://feedproxy.google.com/~r/VampireTrix/~3/rfyo6y41MKo/hard-at-work</link>
		<comments>http://www.vampiretrix.com/categories/other/hard-at-work#comments</comments>
		<pubDate>Tue, 25 Jan 2011 09:01:02 +0000</pubDate>
		<dc:creator>Kevin</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://www.vampiretrix.com/?p=605</guid>
		<description><![CDATA[I&#8217;m always busy lately. Always doing stuff, even stuff I don&#8217;t like at all. I&#8217;ve just finished the Spellborn Fan Hub Secret Project #1, which was a total redesign for both the forum as the portal. Now they have a nearly identical look, though there are some small differences. And SMF it&#8217;s template system is an absolute nightmare: all html layout code wrapped into php echo statements, which looks really messy &#8211; you don&#8217;t have a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m always busy lately. Always doing stuff, even stuff I don&#8217;t like at all.</p>
<p>I&#8217;ve just finished the Spellborn Fan Hub Secret Project #1, which was a total redesign for both the forum as the portal. Now they have a nearly identical look, though there are some small differences. And SMF it&#8217;s template system is an absolute nightmare: all html layout code wrapped into php echo statements, which looks really messy &#8211; you don&#8217;t have a good look on the code. It&#8217;s like a giant puzzle, but kind of hard.</p>
<p>For the WordPress (portal) version, that was actually a dream to create compared to SMF: it even looks good in IE! <img src='http://www.vampiretrix.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Even though I still need to do a lot of work on it, it&#8217;s basically all tweaking. Glad that&#8217;s done.</p>
<p>Now for secret project 2&#8230; that&#8217;s going to take a while.</p>
<p>I still need to finish this design, test RIFT (got a VIP beta key for first comment ;D )&#8230; why are days so short?</p>
<img src="http://feeds.feedburner.com/~r/VampireTrix/~4/rfyo6y41MKo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.vampiretrix.com/categories/other/hard-at-work/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.vampiretrix.com/categories/other/hard-at-work</feedburner:origLink></item>
	</channel>
</rss>

