<?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>SLiK INTERACTIVE</title>
	<atom:link href="http://www.slikinteractive.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.slikinteractive.com</link>
	<description>Interactive Web Multimedia and Audio</description>
	<lastBuildDate>Sat, 21 Aug 2010 01:49:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Simple PHP Conditional for Checking What Page You&#8217;re On</title>
		<link>http://www.slikinteractive.com/2010/07/20/simple-php-conditional-for-checking-what-page-youre-on/</link>
		<comments>http://www.slikinteractive.com/2010/07/20/simple-php-conditional-for-checking-what-page-youre-on/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 18:30:14 +0000</pubDate>
		<dc:creator>Gary</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[check page]]></category>
		<category><![CDATA[php conditional]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://www.slikinteractive.com/?p=846</guid>
		<description><![CDATA[So I know in Wordpress there are several built-in functions for checking what page the user is currently viewing, but I needed to be able to check what page when not using Wordpress. After some searching I found this really simple PHP snippet for doing just that. Add this code somewhere in your PHP file [...]]]></description>
			<content:encoded><![CDATA[<p>So I know in Wordpress there are several built-in functions for checking what page the user is currently viewing, but I needed to be able to check what page when not using Wordpress. After some searching I found this really simple PHP snippet for doing just that. Add this code somewhere in your PHP file so you can perform an action depending on the current URL: </p>
<p>&nbsp;
</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
<span style="color: #000088;">$uri</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REQUEST_URI'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$uri</span> <span style="color: #339933;">==</span> <span style="color: #0000ff;">&quot;/&quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;You're on the homepage&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
     <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;You're on an internal page&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.slikinteractive.com/2010/07/20/simple-php-conditional-for-checking-what-page-youre-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla CHMOD Trick when Installing Extensions</title>
		<link>http://www.slikinteractive.com/2010/07/09/joomla-chmod-trick-when-installing-extensions/</link>
		<comments>http://www.slikinteractive.com/2010/07/09/joomla-chmod-trick-when-installing-extensions/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 00:01:13 +0000</pubDate>
		<dc:creator>Gary</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[can't create directory]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[install extensions]]></category>
		<category><![CDATA[joomla]]></category>

		<guid isPermaLink="false">http://www.slikinteractive.com/?p=838</guid>
		<description><![CDATA[
Are you getting Joomla an error like it can&#8217;t create a new directory when you try to install an extension? I can&#8217;t remember where I found it but this little PHP script will allow you to change the permissions for all of the  necessary folders in one shot when run in a browser. It will [...]]]></description>
			<content:encoded><![CDATA[<p><br class="spacer_" /></p>
<p>Are you getting Joomla an error like it can&#8217;t create a new directory when you try to install an extension? I can&#8217;t remember where I found it but this little PHP script will allow you to change the permissions for all of the  necessary folders in one shot when run in a browser. It will save you much time and headache trying to do it one by one. Thanks to the original creator! This is how to use it:</p>
<p><br class="spacer_" /></p>
<ol>
<li>Copy and paste the text into a new text file. Save it as &#8220;chmod.php&#8221;</li>
<li>Upload the file to the root of your site and go to the following URL in your browser: <strong>http://www.yoursite.com/chmod.php?chmod=0777 </strong></li>
<li>Upon hitting return, you should get a screen indicating success listing all of the directories of which it has changed the permissions. If something went wrong then you will get a different screen indicating it failed. Usually this is because the base path is wrong in chmod.php. <em>( The base path is usually something like &#8220;httpdocs/&#8221; )</em></li>
<li>Install your extensions</li>
<li>Once you&#8217;ve installed your extensions, go to: <strong>http://www.yoursite.com/chmod.php?chmod=0755</strong> to change the permissions back to 755 so your files aren&#8217;t vulnerable. </li>
</ol>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// your ftp credentials</span>
<span style="color: #000088;">$ftp_server</span><span style="color: #339933;">=</span><span style="color: #0000ff;">'your_server'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$ftp_user</span><span style="color: #339933;">=</span><span style="color: #0000ff;">'ftp username'</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$ftp_pass</span><span style="color: #339933;">=</span><span style="color: #0000ff;">'ftp password'</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// where is Joomla installed? (trailing slash required)</span>
&nbsp;
<span style="color: #000088;">$base</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'httpdocs/'</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// what files or directories need chmod applied? (trailing slash optional)</span>
<span style="color: #000088;">$dirs</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'administrator/backups'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'administrator/components'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'administrator/language'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'administrator/language/en-GB'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'administrator/modules'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'administrator/templates'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'administrator/cache'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'components'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'images'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'images/banners'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'images/stories'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'media'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'language'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'language/en-GB'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'language/pdf_fonts'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'modules'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'plugins'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'plugins/content'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'plugins/editors'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'plugins/editors-xtd'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'plugins/search'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'plugins/system'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'plugins/user'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'plugins/xmlrpc'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'tmp'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'templates'</span><span style="color: #339933;">,</span>
               <span style="color: #0000ff;">'cache'</span>
             <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// default to safe 0755 setting</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'chmod'</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$ftp_chmod</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'chmod'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000088;">$ftp_chmod</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;0755&quot;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;chmod=&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$ftp_chmod</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;br/&gt;'</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #666666; font-style: italic;">// connect via ftp and apply chmod</span>
<span style="color: #000088;">$conn_id</span> <span style="color: #339933;">=</span> <span style="color: #990000;">ftp_connect</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;<span style="color: #006699; font-weight: bold;">$ftp_server</span>&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #990000;">ftp_login</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$conn_id</span><span style="color: #339933;">,</span> <span style="color: #000088;">$ftp_user</span><span style="color: #339933;">,</span> <span style="color: #000088;">$ftp_pass</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span> <span style="color: #000088;">$dirs</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$dir</span> <span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #990000;">ftp_site</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$conn_id</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'CHMOD '</span><span style="color: #339933;">.</span><span style="color: #000088;">$ftp_chmod</span><span style="color: #339933;">.</span><span style="color: #0000ff;">' '</span><span style="color: #339933;">.</span><span style="color: #000088;">$base</span><span style="color: #339933;">.</span><span style="color: #000088;">$dir</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;success &quot;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span> <span style="color: #b1b100;">else</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;failed &quot;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$base</span><span style="color: #339933;">.</span><span style="color: #000088;">$dir</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&lt;br/&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #990000;">ftp_close</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$conn_id</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'DONE'</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.slikinteractive.com/2010/07/09/joomla-chmod-trick-when-installing-extensions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samsung SP H03 Pico Project &#8211; Test Run</title>
		<link>http://www.slikinteractive.com/2010/06/24/samsung-sp-h03-pico-project-test-run/</link>
		<comments>http://www.slikinteractive.com/2010/06/24/samsung-sp-h03-pico-project-test-run/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 02:27:01 +0000</pubDate>
		<dc:creator>Gary</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[pico]]></category>
		<category><![CDATA[projector]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[Samsung]]></category>
		<category><![CDATA[samsung pico projector]]></category>
		<category><![CDATA[SP H03]]></category>

		<guid isPermaLink="false">http://www.slikinteractive.com/?p=820</guid>
		<description><![CDATA[
Okay so this thing is pretty cool.
It&#8217;s a cool little projector with the capability of connecting to various devices for the ultimate portable projecting experience, so let&#8217;s test it out&#8230;




Here&#8217;s the SP H03, Samsung&#8217;s newest pico projector designed with portability in mind. This tiny 2.5-inch thing comes with a 1GB internal memory so you can [...]]]></description>
			<content:encoded><![CDATA[<p><img class="ngg-singlepic ngg-none" src="http://www.slikinteractive.com/wp-content/gallery/samsung_pico_projector/samsung_pico_projector_1.jpg" alt="samsung_pico_projector_1" /></p>
<h3 class="news">Okay so this thing is pretty cool.</h3>
<p>It&#8217;s a cool little projector with the capability of connecting to various devices for the ultimate portable projecting experience, so let&#8217;s test it out&#8230;</p>
<p><br class="spacer_" /></p>
<p><span id="more-820"></span></p>
<div class="ngg-galleryoverview" id="ngg-gallery-16-820">


	
	<!-- Thumbnails -->
		
	<div id="ngg-image-78" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.slikinteractive.com/wp-content/gallery/samsung_pico_projector/cables2.jpg" title="The adapters that came with it" class="thickbox" rel="set_16" >
								<img title="cables2" alt="cables2" src="http://www.slikinteractive.com/wp-content/gallery/samsung_pico_projector/thumbs/thumbs_cables2.jpg" width="250" height="188" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-77" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.slikinteractive.com/wp-content/gallery/samsung_pico_projector/cables.jpg" title="The additional cables I purchased" class="thickbox" rel="set_16" >
								<img title="cables" alt="cables" src="http://www.slikinteractive.com/wp-content/gallery/samsung_pico_projector/thumbs/thumbs_cables.jpg" width="141" height="188" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-79" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.slikinteractive.com/wp-content/gallery/samsung_pico_projector/case.jpg" title="Cool little case that comes with it" class="thickbox" rel="set_16" >
								<img title="case" alt="case" src="http://www.slikinteractive.com/wp-content/gallery/samsung_pico_projector/thumbs/thumbs_case.jpg" width="141" height="188" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-80" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.slikinteractive.com/wp-content/gallery/samsung_pico_projector/samsung_pico_projector_1.jpg" title="Samsung Pico Project Front" class="thickbox" rel="set_16" >
								<img title="samsung_pico_projector_1" alt="samsung_pico_projector_1" src="http://www.slikinteractive.com/wp-content/gallery/samsung_pico_projector/thumbs/thumbs_samsung_pico_projector_1.jpg" width="141" height="188" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-81" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.slikinteractive.com/wp-content/gallery/samsung_pico_projector/samsung_pico_projector_2.jpg" title="Samsung Pico Project Side with focus and sd slot" class="thickbox" rel="set_16" >
								<img title="samsung_pico_projector_2" alt="samsung_pico_projector_2" src="http://www.slikinteractive.com/wp-content/gallery/samsung_pico_projector/thumbs/thumbs_samsung_pico_projector_2.jpg" width="141" height="188" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-82" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.slikinteractive.com/wp-content/gallery/samsung_pico_projector/samsung_pico_projector_3.jpg" title="Samsung Pico Project Side with inputs and audio output" class="thickbox" rel="set_16" >
								<img title="samsung_pico_projector_3" alt="samsung_pico_projector_3" src="http://www.slikinteractive.com/wp-content/gallery/samsung_pico_projector/thumbs/thumbs_samsung_pico_projector_3.jpg" width="141" height="188" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-83" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://www.slikinteractive.com/wp-content/gallery/samsung_pico_projector/samsung_pico_projector_4.jpg" title="Samsung Pico Projector Top with control buttons" class="thickbox" rel="set_16" >
								<img title="samsung_pico_projector_4" alt="samsung_pico_projector_4" src="http://www.slikinteractive.com/wp-content/gallery/samsung_pico_projector/thumbs/thumbs_samsung_pico_projector_4.jpg" width="141" height="188" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

<p><br class="spacer_" /></p>
<p>Here&#8217;s the SP H03, Samsung&#8217;s newest pico projector designed with portability in mind. This tiny 2.5-inch thing comes with a 1GB internal memory so you can load files like movies, photos, music files, pdf&#8217;s, etc and present them all without a computer or video source connected.</p>
<p><br class="spacer_" /></p>
<p>The screen size ranges from roughly 9 to 80 inches with a native WVGA 854&#215;480 native resolution. With only 30 lumens of lighting power, you really need a dim to completely dark room to fully take advantage of the screen size and image visibility.</p>
<p><br class="spacer_" /></p>
<h3 class="news">Okay now on to my experience with it so far&#8230;</h3>
<p>I really wanted to use this little projector as a secondary monitor for my laptop, so I went out and bought some needed cables. I got a minidisplay to VGA adapter for $30, 6&#8242; VGA Monitor Cable 15 Pin Male to Male, and a USB cable male to male. ( The USB male to male was for connecting the supplied adapter cable with the projector, but this method did not work )  When I tried to connect everything and start up the devices (projector and macbook) the projector was not being recognized by my laptop. Interesting&#8230;</p>
<p><br class="spacer_" /></p>
<p>I tried again, but slightly differently this time, and got it to work! The instructions said to turn off both computer and projector, then connect them, then turn on. That wasn&#8217;t working so I unplugged the connection while both were still on and after plugging it back in it worked! My bad&#8230;</p>
<p><br class="spacer_" /></p>
<p>So after purchasing another cable ( mini USB to USB ) I was able to connect the projector as an external hard drive, allowing me to transfer files to and from the projector.</p>
<p><br class="spacer_" /></p>
<p>I also was able to connect my XBOX 360 to it via the supplied A/V cable. That&#8217;s some immersive gaming! It has to be really dark for best results though.</p>
<p><br class="spacer_" /></p>
<p><strong><span style="font-size: medium;">PROS:</span></strong></p>
<ul>
<li>Not bad for the price. </li>
<li>The size and portability are a definite plus. </li>
<li>The picture quality is good</li>
</ul>
<p><strong><span style="font-size: medium;">CONS:</span></strong></p>
<ul>
<li>Not bright enough</li>
<li>Projector must be very close is room is not dim</li>
<li>Works best in dim to completely dark room</li>
<li>Need to purchase additional cables for connecting to computer ( miniUSB and VGA ) </li>
</ul>
<p><strong><span style="font-size: large;">7/10</span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.slikinteractive.com/2010/06/24/samsung-sp-h03-pico-project-test-run/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>$97 iPhone 3GS from Walmart &#8211; I Couldn&#8217;t Resist</title>
		<link>http://www.slikinteractive.com/2010/06/07/97-iphone-3gs-from-walmart-i-couldnt-resist/</link>
		<comments>http://www.slikinteractive.com/2010/06/07/97-iphone-3gs-from-walmart-i-couldnt-resist/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 20:15:06 +0000</pubDate>
		<dc:creator>Gary</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[$97]]></category>
		<category><![CDATA[3gs]]></category>
		<category><![CDATA[deal]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[walmart]]></category>

		<guid isPermaLink="false">http://www.slikinteractive.com/?p=801</guid>
		<description><![CDATA[
&#160;
So I just returned from the Walmart in Poway, CA since that was the closest store that had any 3GS iPhone&#8217;s in stock. Good thing I left when I did this morning because they only had 2 black ones in stock and there was a guy who got in line behind me, who I could [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.slikinteractive.com/wp-content/uploads/2010/06/iphone1.jpg" rel="lightbox[801]"><img class="alignleft size-full wp-image-802" title="$97 iPhone 3GS from Walmart" src="http://www.slikinteractive.com/wp-content/uploads/2010/06/iphone1.jpg" alt="" width="635" height="475" /></a></p>
<div id="clear">&nbsp;</div>
<p><span style="font-size: medium;"><strong>So</strong></span> I just returned from the Walmart in Poway, CA since that was the closest store that had any 3GS iPhone&#8217;s in stock. Good thing I left when I did this morning because they only had 2 black ones in stock and there was a guy who got in line behind me, who I could just tell was there for an iPhone. ( Confirmed as I was leaving )</p>
<p><br class="spacer_" /></p>
<p><a href="http://www.slikinteractive.com/wp-content/uploads/2010/06/iphone2.jpg" rel="lightbox[801]"><img class="alignleft size-medium wp-image-805" title="97 Dollar iPhone 3GS from Walmart" src="http://www.slikinteractive.com/wp-content/uploads/2010/06/iphone2-300x225.jpg" alt="" width="300" height="225" /></a>For a price of $97 for an iPhone, and not the bare 3G but the faster and video-recording equipped 3GS, it was time for me to upgrade to a true smartphone. I was perfectly happy with my little sony ericsson which allowed me to play all my mp3&#8217;s in my truck or even right on the phone for some instant mobile tunes. Yet, it did lack the email functionality I&#8217;ve always been missing. My new iPhone should change all that&#8230;</p>
<p><br class="spacer_" /></p>
<h3><span style="font-size: medium;">So what do you think? </span></h3>
<p><span style="font-size: medium;">Was it a better deal to wait until the next iPhone 4 just announced today or is the iPhone 3GS essentially the same thing, with plenty of life still left in it?</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.slikinteractive.com/2010/06/07/97-iphone-3gs-from-walmart-i-couldnt-resist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mizu</title>
		<link>http://www.slikinteractive.com/2010/03/07/mizu/</link>
		<comments>http://www.slikinteractive.com/2010/03/07/mizu/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 05:02:39 +0000</pubDate>
		<dc:creator>Gary</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.slikinteractive.com/?p=781</guid>
		<description><![CDATA[www.mizulife.com

Custom built flash elements like the slideshow on the homepage and the interactive photos in the Advocates section enrich this CMS site build. This project included store integration as well.

Design
 Build
 Update


]]></description>
			<content:encoded><![CDATA[<p><a href="http://mizulife.com" target="_blank" class="port_link">www.mizulife.com</a></p>
<p><a class="thickbox" rel="" href='http://www.slikinteractive.com/wp-content/gallery/portfolio/screen_mizu.jpg' rel="lightbox[781]" title=''><img src='http://www.slikinteractive.com/wp-content/gallery/portfolio/thumbs/thumbs_screen_mizu.jpg' alt='screen_mizu' class='ngg-singlepic ngg-none' /></a></p>
<p class="port_desc">Custom built flash elements like the slideshow on the homepage and the interactive photos in the Advocates section enrich this CMS site build. This project included store integration as well.</p>
<ul id="whatidid">
<li class="grayed">Design</li>
<li> Build</li>
<li> Update</li>
<div id="clear"></div>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.slikinteractive.com/2010/03/07/mizu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flow</title>
		<link>http://www.slikinteractive.com/2010/01/31/flow/</link>
		<comments>http://www.slikinteractive.com/2010/01/31/flow/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 04:20:04 +0000</pubDate>
		<dc:creator>Gary</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.slikinteractive.com/?p=668</guid>
		<description><![CDATA[www.flow.com

Flow is a well respected snowboard company in the industry. I had the privilege of working on-site at their San Clemente office for some web development and updates.

Design
 Build
 Update


]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flow.com" target="_blank" class="port_link">www.flow.com</a></p>
<p><a class="thickbox" rel="" href='http://www.slikinteractive.com/wp-content/gallery/portfolio/screen_flow.jpg' rel="lightbox[668]" title=''><img src='http://www.slikinteractive.com/wp-content/gallery/portfolio/thumbs/thumbs_screen_flow.jpg' alt='screen_flow' class='ngg-singlepic ngg-none' /></a></p>
<p class="port_desc">Flow is a well respected snowboard company in the industry. I had the privilege of working on-site at their San Clemente office for some web development and updates.</p>
<ul id="whatidid">
<li class="grayed">Design</li>
<li class="grayed"> Build</li>
<li> Update</li>
<div id="clear"></div>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.slikinteractive.com/2010/01/31/flow/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Go Riding Center</title>
		<link>http://www.slikinteractive.com/2010/01/31/go-riding-center/</link>
		<comments>http://www.slikinteractive.com/2010/01/31/go-riding-center/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 04:12:44 +0000</pubDate>
		<dc:creator>Gary</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.slikinteractive.com/?p=715</guid>
		<description><![CDATA[www.goridingcenter.flow.com

From a Photoshop comp to a CMS website with some sections including Flash elements. This was another site I had a chance to develop for Flow Snowboards.

Design
 Build
 Update


]]></description>
			<content:encoded><![CDATA[<p><a class="port_link" href="http://www.goridingcenter.flow.com" target="_blank">www.goridingcenter.flow.com</a></p>
<p><a class="thickbox" rel="" href='http://www.slikinteractive.com/wp-content/gallery/portfolio/screen_goriding.jpg' rel="lightbox[715]" title=''><img src='http://www.slikinteractive.com/wp-content/gallery/portfolio/thumbs/thumbs_screen_goriding.jpg' alt='screen_goriding' class='ngg-singlepic ngg-none' /></a></p>
<p class="port_desc">From a Photoshop comp to a CMS website with some sections including Flash elements. This was another site I had a chance to develop for Flow Snowboards.</p>
<ul id="whatidid">
<li class="grayed">Design</li>
<li> Build</li>
<li class="grayed"> Update</li>
<div id="clear"></div>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.slikinteractive.com/2010/01/31/go-riding-center/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tucker Hibbert</title>
		<link>http://www.slikinteractive.com/2010/01/31/tucker-hibbert/</link>
		<comments>http://www.slikinteractive.com/2010/01/31/tucker-hibbert/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 02:52:22 +0000</pubDate>
		<dc:creator>Gary</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.slikinteractive.com/?p=710</guid>
		<description><![CDATA[www.tucker-hibbert.com

An XML driven flash website with many features including a music player and full screen option. This is a site I worked on while working for Creative Deployment. 

Design
 Build
 Update


]]></description>
			<content:encoded><![CDATA[<p><a class="port_link" href="http://www.tucker-hibbert.com" target="_blank">www.tucker-hibbert.com</a></p>
<p><a class="thickbox" rel="" href='http://www.slikinteractive.com/wp-content/gallery/portfolio/screen_tucker.jpg' rel="lightbox[710]" title=''><img src='http://www.slikinteractive.com/wp-content/gallery/portfolio/thumbs/thumbs_screen_tucker.jpg' alt='screen_tucker' class='ngg-singlepic ngg-none' /></a></p>
<p class="port_desc">An XML driven flash website with many features including a music player and full screen option. This is a site I worked on while working for Creative Deployment. </p>
<ul id="whatidid">
<li class="grayed">Design</li>
<li> Build</li>
<li> Update</li>
<div id="clear"></div>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.slikinteractive.com/2010/01/31/tucker-hibbert/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TW&#8217;s Grille and Bar</title>
		<link>http://www.slikinteractive.com/2010/01/31/tws-grille-and-bar/</link>
		<comments>http://www.slikinteractive.com/2010/01/31/tws-grille-and-bar/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 02:49:52 +0000</pubDate>
		<dc:creator>Gary</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.slikinteractive.com/?p=674</guid>
		<description><![CDATA[www.twfortbragg.com

TW&#8217;s Grille and Bar needed a fresh new look to their site to help with web traffic. A custom Photoshop composite was created and developed into a Content Management System.

Design
 Build
 Update


]]></description>
			<content:encoded><![CDATA[<p><a class="port_link" href="http://www.twfortbragg.com" target="_blank">www.twfortbragg.com</a></p>
<p><a class="thickbox" rel="" href='http://www.slikinteractive.com/wp-content/gallery/portfolio/screen_tw.jpg' rel="lightbox[674]" title=''><img src='http://www.slikinteractive.com/wp-content/gallery/portfolio/thumbs/thumbs_screen_tw.jpg' alt='screen_tw' class='ngg-singlepic ngg-none' /></a></p>
<p class="port_desc">TW&#8217;s Grille and Bar needed a fresh new look to their site to help with web traffic. A custom Photoshop composite was created and developed into a Content Management System.</p>
<ul id="whatidid">
<li>Design</li>
<li> Build</li>
<li> Update</li>
<div id="clear"></div>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.slikinteractive.com/2010/01/31/tws-grille-and-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Camp Woodward</title>
		<link>http://www.slikinteractive.com/2010/01/31/camp-woodward/</link>
		<comments>http://www.slikinteractive.com/2010/01/31/camp-woodward/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 02:45:47 +0000</pubDate>
		<dc:creator>Gary</dc:creator>
				<category><![CDATA[Portfolio]]></category>

		<guid isPermaLink="false">http://www.slikinteractive.com/?p=656</guid>
		<description><![CDATA[www.campwoodward.com

A complete interactive flash website, it&#8217;s packed with everything from a CMS ( Content Management System ) to most animation done solely using Actionscript 2.0. I had the opportunity to develop these sites while working for Creative Deployment.

Design
 Build
 Update


]]></description>
			<content:encoded><![CDATA[<p><a class="port_link" href="http://www.campwoodward.com" target="_blank">www.campwoodward.com</a></p>
<p><a class="thickbox" rel="" href='http://www.slikinteractive.com/wp-content/gallery/portfolio/screen_woodward.jpg' rel="lightbox[656]" title=''><img src='http://www.slikinteractive.com/wp-content/gallery/portfolio/thumbs/thumbs_screen_woodward.jpg' alt='screen_woodward' class='ngg-singlepic ngg-none' /></a></p>
<p class="port_desc">A complete interactive flash website, it&#8217;s packed with everything from a CMS ( Content Management System ) to most animation done solely using Actionscript 2.0. I had the opportunity to develop these sites while working for Creative Deployment.</p>
<ul id="whatidid">
<li class="grayed">Design</li>
<li> Build</li>
<li> Update</li>
<div id="clear"></div>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.slikinteractive.com/2010/01/31/camp-woodward/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
