<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.1" -->
<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/"
	>

<channel>
	<title>Felipe Skroski</title>
	<link>http://www.felipesk.com</link>
	<description>web design and development portfolio</description>
	<pubDate>Sun, 17 Aug 2008 06:15:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
	<language>en</language>
			<item>
		<title>My first wordpress plugin</title>
		<link>http://www.felipesk.com/my-first-wordpress-plugin/</link>
		<comments>http://www.felipesk.com/my-first-wordpress-plugin/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 06:15:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.felipesk.com/my-first-wordpress-plugin/</guid>
		<description><![CDATA[I&#8217;ve been working with wordpress for a while now and I turned into a big fan of the platform. During this time I changed the system mostly changing the code but it comes the time to give something back to the community so I created Flickr-mini-gallery a super flexible, easy to use gallery/lightbox combo.
Check the [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working with wordpress for a while now and I turned into a big fan of the platform. During this time I changed the system mostly changing the code but it comes the time to give something back to the community so I created Flickr-mini-gallery a super flexible, easy to use gallery/lightbox combo.<br />
<a href="/flickr-mini-gallery"><strong>Check the plugins page</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.felipesk.com/my-first-wordpress-plugin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Black Mamba Logo</title>
		<link>http://www.felipesk.com/black-mamba-logo/</link>
		<comments>http://www.felipesk.com/black-mamba-logo/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 06:03:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[logos]]></category>

		<guid isPermaLink="false">http://www.felipesk.com/black-mamba-logo/</guid>
		<description><![CDATA[<img src="http://farm3.static.flickr.com/2035/2513524244_d1f26385fa_s.jpg" />]]></description>
			<content:encoded><![CDATA[<p> <img src="http://www.felipesk.com/wp-content/imagescaler/73035cc7cc4b19e66bfa700e1296777b.jpg" width="500" height="500" imagescaler="http://www.felipesk.com/wp-content/imagescaler/73035cc7cc4b19e66bfa700e1296777b.jpg" /></p>
<p>Logo for an international fashion company based in New Delhi and exporting all around the world.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.felipesk.com/black-mamba-logo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Papervision 3d Experiment</title>
		<link>http://www.felipesk.com/papervision-3d-experiment/</link>
		<comments>http://www.felipesk.com/papervision-3d-experiment/#comments</comments>
		<pubDate>Wed, 21 May 2008 04:01:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.felipesk.com/papervision-3d-experiment/</guid>
		<description><![CDATA[A little sample of a skinned low poly 3ds max object imported into flash using papervision 3d]]></description>
			<content:encoded><![CDATA[
<object	type="application/x-shockwave-flash"
			data="http://www.felipesk.com/wp-content/uploads/2008/05/material3d.swf"
			width="550"
			height="400">
	<param name="movie" value="http://www.felipesk.com/wp-content/uploads/2008/05/material3d.swf" />
</object> A little sample of a skinned low poly 3ds max object imported into flash using papervision 3d</p>
]]></content:encoded>
			<wfw:commentRss>http://www.felipesk.com/papervision-3d-experiment/feed/</wfw:commentRss>
		</item>
		<item>
		<title>3 Level navigation menu in wordpress</title>
		<link>http://www.felipesk.com/3-level-navigation-menu-in-wordpress/</link>
		<comments>http://www.felipesk.com/3-level-navigation-menu-in-wordpress/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 08:46:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://www.felipesk.com/3-level-navigation-menu-in-wordpress/</guid>
		<description><![CDATA[Is such a easy thing doing 2 levels menu, but when you need more than this things can get really complicated. I've found a solution without any plugin maybe can be useful for you.]]></description>
			<content:encoded><![CDATA[<p>Is such a easy thing doing 2 levels menu, but when you need more than this things can get really complicated. In the hope that someone out there could have had the same problem as me I started googling, read forums and etc and I didn&#8217;t found any solution without using plugins.</p>
<p>So I end up doing my own code to do this and I hope can be useful for somebody:</p>
<p><code>&lt;?php<br />
$parent_id = $post-&gt;post_parent;<br />
$parent = get_post($parent_id);<br />
if($parent-&gt;post_parent){<br />
$top_level_id  = $parent-&gt;post_parent;<br />
}else if($post-&gt;post_parent){<br />
$top_level_id  = $post-&gt;post_parent;<br />
}else{<br />
$top_level_id  = $post-&gt;ID;<br />
}<br />
if($parent-&gt;post_parent){<br />
$children = wp_list_pages("title_li=&amp;child_of=".$parent-&gt;post_parent."&amp;echo=0");<br />
$my_id = $parent-&gt;post_parent;<br />
}else if($post-&gt;post_parent){<br />
$children = wp_list_pages("title_li=&amp;child_of=".$post-&gt;post_parent."&amp;echo=0");<br />
$my_id = $post-&gt;post_parent;<br />
}else{<br />
$children = wp_list_pages("title_li=&amp;child_of=".$post-&gt;ID."&amp;echo=0");<br />
$my_id = $post-&gt;post_parent;<br />
}<br />
if ($children) {<br />
$post_id_7 = get_post($my_id);<br />
$title = $post_id_7-&gt;ID;<br />
?&gt;<br />
&lt;div id="submenu" class="sub_id_&lt;?php echo $title;?&gt;"&gt;<br />
&lt;ul&gt;<br />
&lt;?php echo $children; ?&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;<br />
&lt;?php } ?&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.felipesk.com/3-level-navigation-menu-in-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Papyteck - logo</title>
		<link>http://www.felipesk.com/73/</link>
		<comments>http://www.felipesk.com/73/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 21:15:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[logos]]></category>

		<guid isPermaLink="false">http://www.felipesk.com/73/</guid>
		<description><![CDATA[<img src="http://farm1.static.flickr.com/67/186755788_0cf3c0ea03_s.jpg" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.felipesk.com/wp-content/imagescaler/f46015f83dd407fe6d0e4fc8611a0a59.jpg" imagescaler="http://www.felipesk.com/wp-content/imagescaler/f46015f83dd407fe6d0e4fc8611a0a59.jpg" width="499" height="489" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.felipesk.com/73/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Trade Sound - Logo</title>
		<link>http://www.felipesk.com/trade-sound-logo/</link>
		<comments>http://www.felipesk.com/trade-sound-logo/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 21:10:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[logos]]></category>

		<guid isPermaLink="false">http://www.felipesk.com/trade-sound-logo/</guid>
		<description><![CDATA[<img src="http://farm1.static.flickr.com/49/193627571_d38e8513a1_s.jpg" height="75" width="75" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://farm1.static.flickr.com/49/193627571_d38e8513a1_o.jpg" rel="lightbox"><img src="http://www.felipesk.com/wp-content/imagescaler/0c3d43aca3d6b93a1d65d89a7989c4f9.jpg" width="500" height="375" imagescaler="http://www.felipesk.com/wp-content/imagescaler/0c3d43aca3d6b93a1d65d89a7989c4f9.jpg" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.felipesk.com/trade-sound-logo/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Morris &#038; co - Site/banner</title>
		<link>http://www.felipesk.com/morris-co-sitebanner/</link>
		<comments>http://www.felipesk.com/morris-co-sitebanner/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 20:57:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.felipesk.com/morris-co-sitebanner/</guid>
		<description><![CDATA[<img src="http://farm3.static.flickr.com/2168/2315922442_9bb8482ddb_s.jpg" height="75" width="75" />]]></description>
			<content:encoded><![CDATA[<h3>Banner</h3>

<object	type="application/x-shockwave-flash"
			data="http://www.felipesk.com/wp-content/uploads/2008/04/wm_banner.swf"
			width="542"
			height="226">
	<param name="movie" value="http://www.felipesk.com/wp-content/uploads/2008/04/wm_banner.swf" />
</object>
<h3>Website</h3>
<p><a href="http://farm3.static.flickr.com/2168/2315922442_aa6cf3f8e6_o.jpg" rel="lightbox"><img src="http://www.felipesk.com/wp-content/imagescaler/cd8c6d3801e24a54cfbcc0933b5b3d0d.jpg" imagescaler="http://www.felipesk.com/wp-content/imagescaler/cd8c6d3801e24a54cfbcc0933b5b3d0d.jpg" height="500" width="500" /></a></p>
<p>Willian Morris was one of the most remarkable Victorian pattern designers. The Christchurch Art Gallery had a tight dead-line for this project basically 1 week from the scratch, I did the the design concepts, markup, ajax, javascript and a flash banner.</p>
<p>I would say in this project one highlight is the use of flickr to handle the image galleries all loaded by ajax. I used this technique to save time and also because the server to be hosted in didn&#8217;t allow us to use php.</p>
<p>See the website : <img src="file:///C:/DOCUME%7E1/ADMINI%7E1/CONFIG%7E1/Temp/moz-screenshot-1.jpg" /><img src="file:///C:/DOCUME%7E1/ADMINI%7E1/CONFIG%7E1/Temp/moz-screenshot-2.jpg" /><a href="http://www.christchurchartgallery.org.nz/morrisandco/index.html">http://www.christchurchartgallery.org.nz/morrisandco/index.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.felipesk.com/morris-co-sitebanner/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CAN - Cycling  Advocates Network NZ</title>
		<link>http://www.felipesk.com/can-cycling-advocates-network-nz/</link>
		<comments>http://www.felipesk.com/can-cycling-advocates-network-nz/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 20:44:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.felipesk.com/can-cycling-advocates-network-nz/</guid>
		<description><![CDATA[<img src="http://www.felipesk.com/wp-content/uploads/2008/03/concept3_4home_sm.thumbnail.jpg" alt="can small" width="75" height="75" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.felipesk.com/wp-content/uploads/2008/03/concept3_4home.jpg" title="Can" rel="lightbox"><img src="http://www.felipesk.com/wp-content/imagescaler/3786c1a624a49e36ed5e968135294ade.jpg" alt="can small" imagescaler="http://www.felipesk.com/wp-content/imagescaler/8fcdcd6cb0dc0d4593602dd4e5260a0d.jpg" height="319" width="500" /></a></p>
<p>CAN is a non profit organisation  responsible to promote a represent the cycling community of New Zealand. This design should be simple, fast to load, easy to navigate, flexible and easy to maintain.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.felipesk.com/can-cycling-advocates-network-nz/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Business card dj schasko</title>
		<link>http://www.felipesk.com/business-card-dj-schasko/</link>
		<comments>http://www.felipesk.com/business-card-dj-schasko/#comments</comments>
		<pubDate>Sat, 16 Feb 2008 00:55:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://www.felipesk.com/business-card-dj-schasko/</guid>
		<description><![CDATA[<img src="http://farm2.static.flickr.com/1187/669746895_ed7ecfaa20_s.jpg">]]></description>
			<content:encoded><![CDATA[<p><a href="http://farm2.static.flickr.com/1187/669746895_552517e824_o.jpg" rel="lightbox"><img src="http://www.felipesk.com/wp-content/imagescaler/d5cf5bf406cb23ef8eb592c609233dc7.jpg" imagescaler="http://www.felipesk.com/wp-content/imagescaler/d5cf5bf406cb23ef8eb592c609233dc7.jpg" height="500" width="278" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.felipesk.com/business-card-dj-schasko/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Oceanography Course Poster</title>
		<link>http://www.felipesk.com/oceanography-course-poster/</link>
		<comments>http://www.felipesk.com/oceanography-course-poster/#comments</comments>
		<pubDate>Sat, 16 Feb 2008 00:36:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://www.felipesk.com/oceanography-course-poster/</guid>
		<description><![CDATA[<img src="http://farm1.static.flickr.com/36/217641927_49a2ecc877_s.jpg" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://farm1.static.flickr.com/36/217641927_49a2ecc877_o.jpg" rel="lightbox"><img src="http://www.felipesk.com/wp-content/imagescaler/7ad57b68b3e45926556987e943a91523.jpg" imagescaler="http://www.felipesk.com/wp-content/imagescaler/7ad57b68b3e45926556987e943a91523.jpg" height="500" width="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.felipesk.com/oceanography-course-poster/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
