<?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>Stroep</title> <atom:link href="http://blog.stroep.nl/feed/" rel="self" type="application/rss+xml" /><link>http://blog.stroep.nl</link> <description>Just a collection of random works - Mark Knol</description> <lastBuildDate>Mon, 23 Aug 2010 08:55:17 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.0.1</generator> <item><title>Quick way to create an auto-increment index AS3</title><link>http://blog.stroep.nl/2010/08/auto-increment-as3-class/</link> <comments>http://blog.stroep.nl/2010/08/auto-increment-as3-class/#comments</comments> <pubDate>Sun, 22 Aug 2010 13:39:16 +0000</pubDate> <dc:creator>Mark Knol</dc:creator> <category><![CDATA[Code snippets]]></category> <category><![CDATA[as3]]></category> <category><![CDATA[class]]></category> <category><![CDATA[snippet]]></category><guid isPermaLink="false">http://blog.stroep.nl/?p=977</guid> <description><![CDATA[<img src="http://blog.stroep.nl/wp-content/snippet.jpg" alt="" title="snippet" width="100" height="100" class="alignleft size-full wp-image-588">Quick post here. I'd like to share this very quick way to create an automatic ID or index to your class instances. Mostly I pass an index as parameter to the class instances, or I use a public var to set the index. Using this way it is very easy to create an automatically filled index, since you have to set this up once and never worry again :)]]></description> <content:encoded><![CDATA[<p><img src="http://blog.stroep.nl/wp-content/snippet.jpg" alt="" title="snippet" width="100" height="100" class="alignleft size-full wp-image-588">Quick post here. I&#8217;d like to share this very quick way to create an automatic ID or index to your class instances. Mostly I pass an index as parameter to the class instance, or I use a public var to set the index. Using this way it is very easy to create an automatically filled index, since you have to set this up once and never worry again <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p>Take a look at this code:</p><div class="bbCSH" style="font-family: monospace;"> <span style="color: #0066CC;">package</span><br /> <span style="color: #66cc66;">&#123;</span><br /> &nbsp; <span style="color: #b1b100;">public</span> <span style="color: #000000; ">class</span> MyObject<br /> &nbsp; <span style="color: #66cc66;">&#123;</span><br /> &nbsp; &nbsp; <span style="color: #b1b100;">public</span> <span style="color: #0066CC;">static</span> <span style="color: #000000; ">var</span> global_index:<span style="color: #0066CC;">int</span> = <span style="color: #cc66cc;">0</span>;<br /> &nbsp; &nbsp; <span style="color: #b1b100;">public</span> const <span style="color: #0066CC;">INDEX</span>:<span style="color: #0066CC;">int</span> = global_index++;</p><p>&nbsp; &nbsp; &nbsp;<span style="color: #808080; font-style: italic;">// constructor</span><br /> &nbsp; &nbsp; &nbsp;<span style="color: #b1b100;">public</span> <span style="color: #000000; ">function</span> MyObject<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span> <span style="color: #66cc66;">&#123;</span><span style="color: #66cc66;">&#125;</span><br /> &nbsp; <span style="color: #66cc66;">&#125;</span><br /> <span style="color: #66cc66;">&#125;</span><br /> &nbsp;</div><p>As you see, I have created a static variable global_index, which is always the same to all MyObject classes. I also created a public constant &#8216;INDEX&#8217;, which would be unique in every instance. When the MyObject instance is created the index will be set to the global_index, and the global_index will increase by one. So that&#8217;s basically the trick to create the auto-increment index for your AS3 class.</p> ]]></content:encoded> <wfw:commentRss>http://blog.stroep.nl/2010/08/auto-increment-as3-class/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Multiple keys made easy with Dictionary</title><link>http://blog.stroep.nl/2010/07/multiple-keys-made-easy-with-dictionary/</link> <comments>http://blog.stroep.nl/2010/07/multiple-keys-made-easy-with-dictionary/#comments</comments> <pubDate>Sun, 11 Jul 2010 11:18:45 +0000</pubDate> <dc:creator>Mark Knol</dc:creator> <category><![CDATA[Actionscript]]></category> <category><![CDATA[Code snippets]]></category> <category><![CDATA[as3]]></category> <category><![CDATA[game]]></category> <category><![CDATA[snippet]]></category><guid isPermaLink="false">http://blog.stroep.nl/?p=964</guid> <description><![CDATA[<img src="http://blog.stroep.nl/wp-content/behind.jpg" alt="Multiple keys made easy with Dictionary" width="100" height="100" class="alignleft size-full wp-image-586">Quick post here, a simple solution I found to have multiple keys enabled. Maybe most real game developers know better or more elegant solutions, but I found this useful enough to share it with you.]]></description> <content:encoded><![CDATA[<p><img src="http://blog.stroep.nl/wp-content/behind.jpg" alt="Multiple keys made easy with Dictionary" width="100" height="100" class="alignleft size-full wp-image-586">Quick post here, a simple solution I found to have multiple keys enabled. Maybe most real game developers know better or more elegant solutions, but I found this useful enough to share it with you.</p><p>Here we go. Add these variable to your class. This is a Dictionary, which allows you to associate a value with an object key.</p><div class="bbCSH" style="font-family: monospace;"> <span style="color: #b1b100;">private</span> <span style="color: #000000; ">var</span> currentKeys:Dictionary = <span style="color: #000000; ">new</span> Dictionary<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br /> &nbsp;</div><p>Then, in your constructor or wherever you assign eventListeners, add these (well-known) listeners, with the callback functions:</p><div class="bbCSH" style="font-family: monospace;"> <span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">events</span>.<span style="color: #006600;">KeyboardEvent</span>;</p><p><span style="color: #0066CC;">stage</span>.<span style="color: #006600;">addEventListener</span><span style="color: #66cc66;">&#40;</span>KeyboardEvent.<span style="color: #006600;">KEY_DOWN</span>, <span style="color: #0066CC;">onKeyDown</span><span style="color: #66cc66;">&#41;</span>;<br /> <span style="color: #0066CC;">stage</span>.<span style="color: #006600;">addEventListener</span><span style="color: #66cc66;">&#40;</span>KeyboardEvent.<span style="color: #006600;">KEY_UP</span>, <span style="color: #0066CC;">onKeyUp</span><span style="color: #66cc66;">&#41;</span>;</p><p><span style="color: #b1b100;">private</span> <span style="color: #000000; ">function</span> <span style="color: #0066CC;">onKeyDown</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span>:KeyboardEvent<span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span> <br /> <span style="color: #66cc66;">&#123;</span><br /> &nbsp; &nbsp; currentKeys<span style="color: #66cc66;">&#91;</span><span style="color: #0066CC;">e</span>.<span style="color: #006600;">keyCode</span><span style="color: #66cc66;">&#93;</span> = <span style="color: #000000; ">true</span>;<br /> <span style="color: #66cc66;">&#125;</span><br /> &nbsp; &nbsp; &nbsp; &nbsp; <br /> <span style="color: #b1b100;">private</span> <span style="color: #000000; ">function</span> <span style="color: #0066CC;">onKeyUp</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span>:KeyboardEvent<span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span> <br /> <span style="color: #66cc66;">&#123;</span><br /> &nbsp; &nbsp; currentKeys<span style="color: #66cc66;">&#91;</span><span style="color: #0066CC;">e</span>.<span style="color: #006600;">keyCode</span><span style="color: #66cc66;">&#93;</span> = <span style="color: #000000; ">false</span>;<br /> <span style="color: #66cc66;">&#125;</span><br /> &nbsp;</div><p>Inside your enterframe-event or timer (were you want to detect which keys are pressed), you could these kind of detection.</p><div class="bbCSH" style="font-family: monospace;"> <span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">ui</span>.<span style="color: #006600;">Keyboard</span>;<br /> <span style="color: #0066CC;">import</span> flash.<span style="color: #006600;">events</span>.<span style="color: #006600;">Event</span>;</p><p><span style="color: #b1b100;">private</span> <span style="color: #000000; ">function</span> <span style="color: #0066CC;">onUpdate</span><span style="color: #66cc66;">&#40;</span><span style="color: #0066CC;">e</span>:Event<span style="color: #66cc66;">&#41;</span>:<span style="color: #0066CC;">void</span><br /> <span style="color: #66cc66;">&#123;</span><br /> &nbsp; &nbsp; <span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span> currentKeys<span style="color: #66cc66;">&#91;</span> Keyboard.<span style="color: #0066CC;">SPACE</span> <span style="color: #66cc66;">&#93;</span> <span style="color: #66cc66;">&#41;</span><br /> &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br /> &nbsp; &nbsp; &nbsp; &nbsp; tank.<span style="color: #006600;">shoot</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;<br /> &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br /> &nbsp; &nbsp; <span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span> currentKeys<span style="color: #66cc66;">&#91;</span> Keyboard.<span style="color: #0066CC;">RIGHT</span> <span style="color: #66cc66;">&#93;</span> <span style="color: #66cc66;">&#41;</span><br /> &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br /> &nbsp; &nbsp; &nbsp; &nbsp; tank.<span style="color: #006600;">targetDirection</span> -= <span style="color: #cc66cc;">0.1</span>;<br /> &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span>&nbsp; &nbsp;<br /> &nbsp; &nbsp; <span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span> currentKeys<span style="color: #66cc66;">&#91;</span> Keyboard.<span style="color: #0066CC;">LEFT</span> <span style="color: #66cc66;">&#93;</span> <span style="color: #66cc66;">&#41;</span><br /> &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br /> &nbsp; &nbsp; &nbsp; &nbsp; tank.<span style="color: #006600;">targetDirection</span> += <span style="color: #cc66cc;">0.1</span>;<br /> &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span>&nbsp; &nbsp;<br /> &nbsp; &nbsp; <span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span> currentKeys<span style="color: #66cc66;">&#91;</span> Keyboard.<span style="color: #0066CC;">UP</span> <span style="color: #66cc66;">&#93;</span> <span style="color: #66cc66;">&#41;</span><br /> &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br /> &nbsp; &nbsp; &nbsp; &nbsp; tank.<span style="color: #006600;">speed</span> += tank.<span style="color: #006600;">acceleration</span>;<br /> &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span>&nbsp; &nbsp;<br /> &nbsp; &nbsp; <span style="color: #b1b100;">if</span> <span style="color: #66cc66;">&#40;</span> currentKeys<span style="color: #66cc66;">&#91;</span> Keyboard.<span style="color: #0066CC;">DOWN</span> <span style="color: #66cc66;">&#93;</span> <span style="color: #66cc66;">&#41;</span><br /> &nbsp; &nbsp; <span style="color: #66cc66;">&#123;</span><br /> &nbsp; &nbsp; &nbsp; &nbsp; tank.<span style="color: #006600;">speed</span> /= <span style="color: #cc66cc;">1.8</span>;<br /> &nbsp; &nbsp; <span style="color: #66cc66;">&#125;</span><br /> <span style="color: #66cc66;">&#125;</span><br /> &nbsp;</div><p>I found that if you use some 3 or 4+ combinations of keys at the same time, the keyboard events are not triggered anymore, which is a bit of annoying bug in the FlashPlayer. I mean pressing forward and left and shooting at the same time could be a problem? Well; Hope this helps, I think its very easy and a great usage of the Dictionary.</p> ]]></content:encoded> <wfw:commentRss>http://blog.stroep.nl/2010/07/multiple-keys-made-easy-with-dictionary/feed/</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>FindClosest</title><link>http://blog.stroep.nl/2010/03/findclosest/</link> <comments>http://blog.stroep.nl/2010/03/findclosest/#comments</comments> <pubDate>Sun, 14 Mar 2010 19:08:03 +0000</pubDate> <dc:creator>Mark Knol</dc:creator> <category><![CDATA[Actionscript]]></category> <category><![CDATA[as3]]></category> <category><![CDATA[experiment]]></category> <category><![CDATA[flash]]></category><guid isPermaLink="false">http://blog.stroep.nl/?p=934</guid> <description><![CDATA[<img alt="findClosest" src="http://farm3.static.flickr.com/2577/4424864751_ccdbbc0ee4_m.jpg" class="alignleft" width="100" height="100" />Who follows me on twitter already noticed I've created a little app inspired by <a href="http://www.zefrank.com/scribbler/">scribbler</a> from <a href="http://www.zefrank.com">zefrank</a>. I also found another cool version of Mario Klingemann aka Quasimondo called <a href="http://www.zefrank.com/scribbler/new_about/scribtoo.jpg">scribblerToo</a>. But the one where it all started is the javascript version of <a href="http://mrdoob.com/blog">Mr.Doob</a>. I wanted to try this in flash, and called it findClosest. It's not such great as the other versions, but I really think there are some interesting things in here.]]></description> <content:encoded><![CDATA[<p><img alt="findClosest" src="http://farm3.static.flickr.com/2577/4424864751_ccdbbc0ee4_m.jpg" class="alignleft" width="100" height="100" />Who follows me on twitter already noticed I&#8217;ve created a little app inspired by <a href="http://www.zefrank.com/scribbler/">scribbler</a> from <a href="http://www.zefrank.com">zefrank</a>. I also found another cool version of Mario Klingemann aka Quasimondo called <a href="http://www.zefrank.com/scribbler/new_about/scribtoo.jpg">scribblerToo</a>. But the one where it all started is the javascript version of <a href="http://mrdoob.com/blog">Mr.Doob</a>. I wanted to try this in flash, and called it findClosest. It&#8217;s not as great as the other versions, but I really think there are some interesting things in here.</p><p><strong>See it in action</strong><br /> &raquo; <a href="http://projects.stroep.nl/findClosest/">FindClosest</a></p><p>The trick in this little application is to store each mouse position, locate the mouse position and find the closest points around it (from the stored data) and draw some lines between those points. Well that code isn&#8217;t very exiting, because most people know how to find the distance between 2 points, and basically there are 2 ways find this:<div class="bbCSH" style="font-family: monospace;"><span style="color: #808080; font-style: italic;">// option 1: Using the build-in function</span><br /> <span style="color: #000000; ">var</span> distance:<span style="color: #0066CC;">Number</span> = Point.<span style="color: #006600;">distance</span><span style="color: #66cc66;">&#40;</span> point1, point2 <span style="color: #66cc66;">&#41;</span>;</p><p><span style="color: #808080; font-style: italic;">// option 2: Using Math</span><br /> <span style="color: #000000; ">var</span> distance:<span style="color: #0066CC;">Number</span> = <span style="color: #0066CC;">Math</span>.<span style="color: #0066CC;">sqrt</span><span style="color: #66cc66;">&#40;</span> point1.<span style="color: #006600;">x</span> * point2.<span style="color: #006600;">x</span> + point1.<span style="color: #006600;">y</span> * point2.<span style="color: #006600;">y</span> <span style="color: #66cc66;">&#41;</span>;</div><p>The results are amazing and I love the fact that even if you can&#8217;t draw, it looks really cool <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><h2>Store lines as small as you can</h2><p>I was already trying to find a way to store lines in a format I can reuse for my artworks. Most artworks are random but I am looking for a way to have more control. The first step would be the ability to control the (what I call) movements. So in this little experiment I&#8217;ve tried to find a way to store the lines into a compact file, which can be redrawed by the app. I&#8217;m really exited about this. So I&#8217;ve started to save as a plain-text file writing something like this:<br /><blockquote>{x:100,y:300},{x:110,y:340},{x:125,y:350},{x:125,y:350}</p></blockquote><p>It&#8217;s readable code, and easy to These are 56 chars for 4 points. So I tried to make it more smaller using this:<br /><blockquote>{100,300},{110,340},{125,350},{125,350}</p></blockquote><p>I&#8217;ve removed the x and y from the file, because I know that it&#8217;s always a pair of x and y values. Alright.. now I have 40 chars which represents 4 points, so that saves me 16 chars. Can this be done more smaller?<br /><blockquote>100,300,110,340,125,350,125,350</p></blockquote><p>Yes, sometimes basic is the best. I removed the brackets. I know the odds are the x values, and the evens are the y values. It&#8217;s always x,y,x,y,x,y,x,y etc. So now I have 32 chars to store 4 points.</p><p>The application doesn&#8217;t know where I start pressing and releasing the mousebuttons. I have to know this, otherwise all my lines are just 1 big line instead of multiple lines. When pressing the mouse, I want to start with an <em>graphics.moveTo</em> function.</p><p>So what I did is this:<br /><blockquote>100,300,110,340,125,350,125,350&#038;m=0,2</p></blockquote><p>&#038;m=0,2 means I have released the mouse on point 0 and point 2. A point referrers to the x and y position.</p><p>I think this is almost the smallest I can get. It&#8217;s easily to revert these values back to usable values using <em>String.split()</em>.</p><p>But.. In real life there aren&#8217;t ints, but Numbers. The values mostly looks like 452.12070158. I stripped the value, and only use decimals. You don&#8217;t actually see the difference when redrawing between 10.04 and 10.042. This saves me a lot of chars too.</p><p><strong>Compress it!</strong><br /> When saving the file, I push the data into a ByteArray using the <em>bytes.writeUTFBytes()</em> function. I realized ByteArrays can be compressed, so I also use the <em>bytes.compress();</em> to make the file smaller again. This saves me about 50%! When importing the lines, I used <em>bytes.uncompress();</em> to make it a normal string again.</p><p>This flower is 14kb <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Import <a href="http://projects.stroep.nl/findClosest/flower2.stroep">this file</a> in the app to see how I haved drawed it. You can also load it from an url: http://projects.stroep.nl/findClosest/flower2.stroep<br /> <a href="http://projects.stroep.nl/findClosest/"><img src="http://farm3.static.flickr.com/2703/4424864601_44764eb538.jpg" width="500" height="375" alt="flower" /></a><br /> <a href="http://www.flickr.com/photos/markknol/4424864601/" title="flower by mark knol, on Flickr">flower  on Flickr</a></p><p>Well this is a next step and I hope to create one day an editor for simple lines and merge this into my artwork process. I think it needs to be more complex but for now this will work. I hope you like it.</p> ]]></content:encoded> <wfw:commentRss>http://blog.stroep.nl/2010/03/findclosest/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Quick action &#8211; save selection for the web</title><link>http://blog.stroep.nl/2010/03/save-for-the-web/</link> <comments>http://blog.stroep.nl/2010/03/save-for-the-web/#comments</comments> <pubDate>Tue, 09 Mar 2010 21:39:51 +0000</pubDate> <dc:creator>Mark Knol</dc:creator> <category><![CDATA[Other]]></category> <category><![CDATA[photoshop]]></category><guid isPermaLink="false">http://blog.stroep.nl/?p=919</guid> <description><![CDATA[<img src="http://blog.stroep.nl/wp-content/photoshop.jpg" alt="" title="photoshop tip" width="100" height="100" class="alignleft size-full wp-image-924" />Quick post, this time no Flash but a Photoshop action that saves me a lot of time. :) First of all, I don't use slides in Photoshop, but often I just make a selection, copy/paste that in a new window and then press ctrl-alt-shift-s to 'save for the web'. I am doing this a lot of times when slicing objects. Since a while now I use an action for that. I hope this will help you too work faster. Key thing you have to remember is to create a selection and press <strong>F2</strong>.. ]]></description> <content:encoded><![CDATA[<p><img src="http://blog.stroep.nl/wp-content/photoshop.jpg" alt="" title="photoshop tip" width="100" height="100" class="alignleft size-full wp-image-924" />Quick post, this time no Flash but a Photoshop action that saves me a lot of time. <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> First of all, I don&#8217;t use slides in Photoshop, but often I just make a selection, copy/paste that in a new window and then press ctrl-alt-shift-s to &#8216;save for the web&#8217;. I am doing this a lot of times when slicing objects. Since a while now I use an action for that. I hope this will help you too work faster. Key thing you have to remember is to create a selection and press <strong>F2</strong>..</p><p>It automatically does the copy/new/paste+&#8217;save for the web&#8217; for you.</p><p><a href="http://projects.stroep.nl/photoshop/saveForTheWeb.zip">Download photoshop-action</a></p><p>ps. You can install the action by dragging the .atm file to the actions-panel <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> <wfw:commentRss>http://blog.stroep.nl/2010/03/save-for-the-web/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Arthouse</title><link>http://blog.stroep.nl/2010/02/arthouse/</link> <comments>http://blog.stroep.nl/2010/02/arthouse/#comments</comments> <pubDate>Mon, 01 Feb 2010 18:48:20 +0000</pubDate> <dc:creator>Mark Knol</dc:creator> <category><![CDATA[Generative art]]></category> <category><![CDATA[art]]></category> <category><![CDATA[arthouse]]></category> <category><![CDATA[gallery]]></category><guid isPermaLink="false">http://blog.stroep.nl/?p=891</guid> <description><![CDATA[<img alt="" src="http://farm3.static.flickr.com/2696/4314999961_70cf822676.jpg" class="alignleft" width="100" height="100" /><a href="http://popuparthouse.com/">Mocha ArtHouse</a> is an experimental space that fuses the experience of art, culture and food, and exist as a platform for young artist and performers. ArtHouse brings new artist and audiences together in a manner that is accessible and inspirational. ]]></description> <content:encoded><![CDATA[<p><img alt="" src="http://farm3.static.flickr.com/2696/4314999961_70cf822676.jpg" class="alignleft" width="100" height="100" /><a href="http://popuparthouse.com/">Mocha ArtHouse</a> is an experimental space that fuses the experience of art, culture and food, and exist as a platform for young artist and performers. ArtHouse brings new artist and audiences together in a manner that is accessible and inspirational.<br /> <br clear="both"/><br /> The gallery was 21 december 2009. Unfortunately, I couldn&#8217;t see it in real life, because it was in India, and I live in the Netherlands (yes, almost other side of the world, 6.400km). It was great to work with those guys, they have showed some of my favorites and send me nice photo&#8217;s. Hope to have an gallery like this in Holland ever too (someone interested to do this?) <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p><p><a href="http://www.flickr.com/photos/markknol/4314995981/" title="Arthouse by mark knol, on Flickr"><img src="http://farm5.static.flickr.com/4037/4314995981_4e84e9b0e2_b.jpg" width="570" alt="Arthouse" /></a></p><p><a href="http://www.flickr.com/photos/markknol/4315731550/" title="Arthouse by mark knol, on Flickr"><img src="http://farm5.static.flickr.com/4013/4315731550_2453f5a84f_b.jpg" width="570" alt="Arthouse" /></a></p><p><a href="http://www.flickr.com/photos/markknol/4315734932/" title="Arthouse by mark knol, on Flickr"><img src="http://farm3.static.flickr.com/2704/4315734932_9a06cc6afb_b.jpg" width="570" alt="Arthouse" /></a></p><p>&raquo; <a href="http://www.flickr.com/search/?w=25064547%40N06&#038;q=arthouse&#038;m=text">More photo&#8217;s here</a></p> ]]></content:encoded> <wfw:commentRss>http://blog.stroep.nl/2010/02/arthouse/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Updated design &#8211; Cleaner and less ads</title><link>http://blog.stroep.nl/2010/01/updated-design/</link> <comments>http://blog.stroep.nl/2010/01/updated-design/#comments</comments> <pubDate>Sun, 10 Jan 2010 20:56:30 +0000</pubDate> <dc:creator>Mark Knol</dc:creator> <category><![CDATA[Stroep]]></category> <category><![CDATA[design]]></category><guid isPermaLink="false">http://blog.stroep.nl/?p=864</guid> <description><![CDATA[<img src="http://blog.stroep.nl/wp-content/stroep-updated.jpg" alt="" title="Stroep updated" width="100" height="100" class="alignleft size-full wp-image-865" />What a nice title! I have updated my blog design. No, there are no shocking new features, just a more fresh and cleaner design. Yes, it is still black and in the 'stroep'-style, but I think it is really cleaner.  I think it is important too keep improving, so I hope you like it. I added some nice icons in the sidebar and jQuery rollovers. I have added rounded corners (only shown in modern browsers) and I really think it makes the site more friendly, which should be a good thing ;) ]]></description> <content:encoded><![CDATA[<p><img src="http://blog.stroep.nl/wp-content/stroep-updated.jpg" alt="" title="Stroep updated" width="100" height="100" class="alignleft size-full wp-image-865" />What a nice title! I have updated my blog design. No, there are no shocking new features, just a more fresh and more cleaner design. Yes, it is still black and in the &#8216;stroep&#8217;-style, but I think it is really a little bit better. I think it is important too keep improving, so I hope you like it. I added some nice icons in the sidebar and jQuery rollovers. I have added rounded corners (only shown in modern browsers) and I really think it makes the site more friendly, which should be a good thing <img src='http://blog.stroep.nl/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p><p>For all guys who use IE6, I have added a nice message for you. You cannot see my site anymore. It&#8217;s not a personal thing, but I really think this year we should all ban old crappy browsers. It would not take long till I show this message for IE7 too and some other out-dated browsers too. Let us update and enjoy fast modern browsing with new possibilities.</p><p>I have removed more Google ads from the blog. There were some ads between the posts and on the post-page. Now I have only 1 banner at the bottom of the sidebar. Yes; I have 2000 unique visitors in a month and no; I don&#8217;t earn a lot money with it, so basically the ads are useless. I dislike banners too, but still I hope to have a big hit one day and my ad is ready to be clicked (kidding) For real; one day I had the illusion I could be rich by placing these ads on my blog. But I&#8217;ve realized most people on my blog are looking for products, but looking for sources and inspiration. This site doesn&#8217;t target banner-clicking-people. I hope you are happy with it.</p> ]]></content:encoded> <wfw:commentRss>http://blog.stroep.nl/2010/01/updated-design/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>Particle test center &#8211; video</title><link>http://blog.stroep.nl/2010/01/particle-test-center-video/</link> <comments>http://blog.stroep.nl/2010/01/particle-test-center-video/#comments</comments> <pubDate>Sat, 02 Jan 2010 08:12:38 +0000</pubDate> <dc:creator>Mark Knol</dc:creator> <category><![CDATA[Generative art]]></category> <category><![CDATA[particles]]></category> <category><![CDATA[video]]></category><guid isPermaLink="false">http://blog.stroep.nl/?p=847</guid> <description><![CDATA[<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/lOlfm-xhMJc&#038;hl=nl_NL&#038;fs=1&#038;color1=0x000000&#038;color2=0x33322F"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/lOlfm-xhMJc&#038;hl=nl_NL&#038;fs=1&#038;color1=0x000000&#038;color2=0x33322F" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="585" height="344"></embed></object>More info <a href="http://blog.stroep.nl/2009/12/particle-test-center/">here</a>]]></description> <content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/lOlfm-xhMJc&#038;hl=nl_NL&#038;fs=1&#038;color1=0x000000&#038;color2=0x33322F"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/lOlfm-xhMJc&#038;hl=nl_NL&#038;fs=1&#038;color1=0x000000&#038;color2=0x33322F" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="585" height="344"></embed></object></p><p>More info <a href="http://blog.stroep.nl/2009/12/particle-test-center/">here</a></p> ]]></content:encoded> <wfw:commentRss>http://blog.stroep.nl/2010/01/particle-test-center-video/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Particle test center</title><link>http://blog.stroep.nl/2009/12/particle-test-center/</link> <comments>http://blog.stroep.nl/2009/12/particle-test-center/#comments</comments> <pubDate>Tue, 29 Dec 2009 00:05:26 +0000</pubDate> <dc:creator>Mark Knol</dc:creator> <category><![CDATA[Actionscript]]></category><guid isPermaLink="false">http://blog.stroep.nl/?p=842</guid> <description><![CDATA[<img src="http://blog.stroep.nl/wp-content/particlecenter.jpg" alt="" title="particle center" width="100" height="100" class="alignleft size-full wp-image-844" />For a while now, I am experimenting with this new experiment. I created an algorithm with nested sinus/cosinus, to show of some cool 3d looking particles (no there is no 3d in it). It is amazing to see how many particles flash can move. I used components from bit-101 to have some interaction.<strong>Check:</strong> <a href="http://projects.stroep.nl/particles/">http://projects.stroep.nl/particles/</a>]]></description> <content:encoded><![CDATA[<p><img src="http://blog.stroep.nl/wp-content/particlecenter.jpg" alt="" title="particle center" width="100" height="100" class="alignleft size-full wp-image-844" />For a while now, I am experimenting with this new experiment. I created an algorithm with nested sinus/cosinus, to show of some cool 3d looking particles (no there is no 3d in it). It is amazing to see how many particles flash can move. I used components from bit-101 to have some interaction.</p><p><strong>Check:</strong> <a href="http://projects.stroep.nl/particles/">http://projects.stroep.nl/particles/</a></p> ]]></content:encoded> <wfw:commentRss>http://blog.stroep.nl/2009/12/particle-test-center/feed/</wfw:commentRss> <slash:comments>5</slash:comments> </item> </channel> </rss>