<?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>Nir Zion Pengas &#187; whatever</title>
	<atom:link href="http://pengas.com/category/whatever/feed/" rel="self" type="application/rss+xml" />
	<link>http://pengas.com</link>
	<description>Creative Technology</description>
	<lastBuildDate>Thu, 27 Oct 2011 16:48:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>from: iphone -&gt; ipad; a quick guide.</title>
		<link>http://pengas.com/2011/08/30/migrating-your-iphone-app-to-a-universal-application/</link>
		<comments>http://pengas.com/2011/08/30/migrating-your-iphone-app-to-a-universal-application/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 20:28:46 +0000</pubDate>
		<dc:creator>Nir Pengas</dc:creator>
				<category><![CDATA[All Mac]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[user experience]]></category>
		<category><![CDATA[whatever]]></category>

		<guid isPermaLink="false">http://pengas.com/?p=565</guid>
		<description><![CDATA[it&#8217;s time to expand your iphone app and introduce it on the ipad. that is an interesting move for any product as the ipad is not an iphone &#8211; it is used for different things at different circumstances. yeah &#8211; you are going to practically re-think your app&#8230; which is great because you get to revisit [...]]]></description>
			<content:encoded><![CDATA[<p><span><span style="font-family: symbol;"><span class="Apple-style-span" style="border-style: initial; border-color: initial;"><a href="http://ipadstory.net/wp-content/uploads/2011/05/Pages-Universal-App.jpeg"><img class="alignright" style="border-style: initial; border-color: initial; border-width: 0px; margin: 10px;" title="universal app (photo by ipadstory.net)" src="http://ipadstory.net/wp-content/uploads/2011/05/Pages-Universal-App.jpeg" alt="" width="283" height="221" /></a></span>it&#8217;s time to expand your iphone app and introduce it on the ipad. that is an interesting move for any product as the ipad is not an iphone &#8211; it is used for different things at different circumstances. yeah &#8211; you are going to practically re-think your app&#8230; which is great because you get to revisit your code and make sure your pipeline is tight, secure, fast and reliable. all that with the elegance of the ipads &#8211; split view controllers</span></span></p>
<p><span style="font-family: symbol;"> where do one starts? well, you can start be designing your app for the ipad and take by thinking about the following:</span><br />
<span style="font-family: symbol;"><span style="text-decoration: underline;"> orientation</span>, <span style="text-decoration: underline;">layout</span> and <span style="text-decoration: underline;">gestures</span>. all of which vary significantly from the iphone (unfortunately). side note: one thing i really like about webOS is that you develop your mobile app once and the system takes care of adjusting the interface to a slated device.</span></p>
<p><span style="font-family: symbol;">next thing to learn about the ipad is it&#8217;s split views, popovers and specific hardware features &#8211; all of which are ipad unique. you will need to use conditional coding to learn if a specific hardware feature you are looking for is available. this is necessary as you will need to load the right resources to handle that hardware. more specifically one should write conditional coding for:</span></p>
<p><span style="font-family: symbol;"><strong>resources</strong>: in your code, recognize which platform is running and load the right nib files. you will also need to load the right graphics that match the screen size and resolution.</span><br />
<span style="font-family: symbol;"> <strong>classes</strong>: check for class availability based on the device you are running on as some are iPad/iPhone specific.</span><br />
<span style="font-family: symbol;"> <strong>methods</strong>: weak-link any device specific methods and perform a check at runtime for the availability of that method and wether the object responds to a specific selector.</span></p>
<p><span style="font-family: symbol;"><strong>hardware</strong>: test for cmarea/gps/gyro support before utilizing it.</span></p>
<p><span style="font-family: symbol;">okay &#8211; we are done with the overview. let&#8217;s roll up our sleeves and dig right into it.</span></p>
<p><span style="font-family: symbol;">first thing&#8217;s first &#8211; lets let xcode help us start the process by duplicating the current target (an iphone target) into an ipad one.<br />
</span>right click on your target and choose &#8220;duplicate&#8221;. two options here &#8211; duplicate only and duplicate and transitoin to ipad. let&#8217;s go with the later.<br />
what xcode does here is create a new virtual folder (i.e. group) called &#8220;Resources-iPad&#8221; and copies the main nib file there. xcode really takes care of the main nib file and creates it for us. no other nib files to be touched. why? because the rest of the nib files are usually tied right into apps view controller so xcode leaves it up to us to define both the view and it&#8217;s controller. xcode sets the targeted device family (TDF) build settings to iphone/ipad and modify the base SDK of the project which will support both device types. no need to touch nor worry about the deployment target. you will see a new plist for the ipad app with it&#8217;s relevant settings.</p>
<p>in order to see it in action &#8211; run the app using the ipad simulator. what you will see is the iphone app running inside the ipad simulator and you can x2 time it to fit. boooo. one more step necessary (thanks apple for leaving it up to us) is to update the scheme to use the new and shiny ipad target. so go ahead and duplicate your iphone scheme (or create a new one) and under run  - choose the ipad executable. boom. wait &#8211; it really looks bad here.</p>
<p>well &#8211; as you may know iOS uses the MVC design pattern heavily. you may not know that MVC is actually a compound design pattern which includes 5 patterns. luckily this abstraction makes the process of porting an iphone app to an ipad a bit easier, as potentially one needs to take care of the view &#8211; making sure the right outlets are updated based on the design of the UI, and also heavily touch upon the controller to see which device is used and then follow a specific code path to match. the good news is the model can stay untouched <img src='http://pengas.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>if you are happy with the IBOutlet you currently have on the iphone and would like to only use those (i cannot image why, but yeah&#8230;) all you need to do at this point is adjust the springs and struts in the size inspector when loading up your nib in IB. you should also make sure to support the orientations required for the app. in order to do this you will need to  implement <em><strong>s</strong><strong>houldAutorotateToInterfaceOrientation: </strong></em> and test for the device running the code and allow rotation. if you have singleton object place this code in it&#8217;s header file:</p>
<pre class="brush: objc; title: ; notranslate">
#define IS_IPAD   (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
#define IS_IPHONE (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
</pre>
<p>ipod touch returns UIUserInterfaceIdiomPhone. FYI.</p>
<p>or place it wherever works for you, as long as you have access to this macro from wherever. this is useful as you will need to update your controllers to test for the hardware running and follow a specific code path to update your view and outlets.</p>
<p>one example of using this code and auto rotating is this:</p>
<pre class="brush: objc; title: ; notranslate">
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

	 if (IS_IPHONE)
	 {
		 if (interfaceOrientation == UIInterfaceOrientationPortrait ||
			 interfaceOrientation == UIInterfaceOrientationPortraitUpsideDown)
		 {
			 return YES;
		 }
	 }

	 if (IS_IPAD)
	 {
		 if (interfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
			 interfaceOrientation == UIInterfaceOrientationLandscapeRight)
		 {
			 return YES;
		 }
	 }

	 return NO;
 }
</pre>
<p>pretty easy and straight forward right? moving along.</p>
<p><em><strong>cautionary tale:<br />
</strong></em>the app now must be careful with the symbols it uses. if you want to use <em><strong>UISplitViewController</strong></em> while running on iOS 3.1 &#8211; your app will crash as there are no split VCs on 3.1.<br />
the way you should be thinking about this is by mentally tuning into the &#8216;runtime checks&#8217; zone, where you will test if a particular symbol exists. more about that later.</p>
<p><em><strong>updating VC and views:<br />
</strong></em>this is where the bulk of the work really is &#8211; redoing your views and adding code (or creating new) view controllers. what can we do &#8211; the view size varies between the iphone and the ipad and that certainly needs to be taken into consideration. so start off by redesigning the views for the ipad. if you plan on scaling the existing view could work okay, but more often than not will not be the result you are hoping for. think of it this way &#8211; the new ipad interface should make use of the new available space and the elements which only exist on the ipad (splitVCs and popovers for example). the outcome is good UI and top UX.</p>
<p>also consider the following. for view controllers:<br />
a) create new nib files for each device (if you use nib files that is).<br />
b) if you code your views &#8211; make sure you support both devices when you do so.</p>
<p>for views:<br />
a) if you override <em><strong>drawrect: </strong></em>make sure the method can draw to different view sizes.<br />
b) if you implemenet the <strong><em>layoutSubviews</em></strong> method, the code must adapt to different view sizes.</p>
<p><em><strong>symbol checking during runtime:   </strong></em>if deep down inside you had hoped that this step will somehow be avoidable &#8211; fear not <img src='http://pengas.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  runtime checks for newer symbols is easy as pie and is the type of topic you can discuss with your boss and sound really clever.<br />
all of this is under the assumption you support different versions of the OS. just like a good soldier &#8211; you MUST protect your code from using symbols that do not exist. this happens all the time when you update an app to use new features and want to continue to support previous versions running on older OSs. all you need to do is create different code paths to follow, based on the OS currently running on the device executing your app. if you don&#8217;t do that your app is guaranteed to crash and that is not something us pros do, so let us quickly look into an example of how one goes about creating a code path when checking for newer symbols during runtime:</p>
<p>if you are linking against iOS 4.2 you are in luck my friend. that version has a weak linking support built right in, which allows you to check for the existence of a given class object and determine if it&#8217;s usable to you. like so:</p>
<pre class="brush: objc; title: ; notranslate">
if ([UIPrintInteractionController class]) {
   // Create an instance of the class and use it.
}
else {
   // The print interaction controller is not available.
}
</pre>
<p>seriously now &#8211; how simple was that?<br />
bare in mind that if you want to use this feature of the OS you must build your app with LLVM and Clang.<br />
deployment target should be 3.1 or later. sorry.</p>
<p>if your app links against &lt; 4.1, use <em><strong><span class="Apple-style-span" style="font-family: Consolas, Monaco, monospace; font-size: 12px; line-height: 18px; white-space: pre;">NSClassFromString</span></strong></em><span class="Apple-style-span" style="font-family: Consolas, Monaco, monospace; font-size: 12px; line-height: 18px; white-space: pre;"> to see if a class is defined. if nil is returned &#8211; you&#8217;re shit out of luck.</span></p>
<p>for example:</p>
<pre class="brush: objc; title: ; notranslate">
Class splitVCClass = NSClassFromString(@&quot;UISplitViewController&quot;);
if (splitVCClass)
{
   UISplitViewController* mySplitViewController = [[splitVCClass alloc] init];
   // Configure the split view controller.
}</pre>
<p>for testing if an object  can be sent a specific message (i.e. has implemented that method), use the oh so convenient <strong><em>instancesRespondsToSelector:</em></strong> class method (yes, it is a class method, it&#8217;s not a type).</p>
<p>if you are a registered iphone developer and have not done so &#8211; check out the <a href="http://developer.apple.com/library/iOS/documentation/DeveloperTools/Conceptual/cross_development/Introduction/Introduction.html#//apple_ref/doc/uid/10000163i" target="_blank">SDK compatibility guide</a> by apple.</p>
<p><em><strong><br />
runtime checks &#8211;&gt; conditional code paths:<br />
</strong></em>based on the interface idiom described earlier &#8211; let&#8217;s start creating cool code paths to support both devices. a simple <em><strong>if-else</strong></em> statement will do just fine thank you very much. moving right along.</p>
<p>This concludes this first steps required to port your app from iphone to an ipad. next is a quick rundown on how to use split view controllers in your ipad app.<br />
<strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://pengas.com/2011/08/30/migrating-your-iphone-app-to-a-universal-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>what i&#8217;d like to see in the iphone5 (and probably won&#8217;t)</title>
		<link>http://pengas.com/2011/08/17/what-id-like-to-see-in-the-iphone5-and-probably-wont/</link>
		<comments>http://pengas.com/2011/08/17/what-id-like-to-see-in-the-iphone5-and-probably-wont/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 16:26:03 +0000</pubDate>
		<dc:creator>Nir Pengas</dc:creator>
				<category><![CDATA[All Mac]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[online services]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[user experience]]></category>
		<category><![CDATA[whatever]]></category>

		<guid isPermaLink="false">http://pengas.com/?p=543</guid>
		<description><![CDATA[Good chance of getting: - 4G LTE: 100Mbit up, 50Mbit down (peak). this will be huge for everyone. streaming made easy, uploading live videos and pretty much change the rules of the game when it comes to utilizing the phone. the big question is &#8211; can the carrier(s) handle the demand? - HD front and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" style="border-width: 1px; border-color: black; border-style: solid; margin: 5px;" title="iphone5" src="http://gadgetmedia.info/wp-content/uploads/2011/03/iphone5.jpg" alt="" width="254" height="275" /></p>
<p><strong>Good chance of getting:<br />
</strong><br />
- <em><strong>4G LTE: 100Mbit up, 50Mbit down</strong></em> (peak). this will be huge for everyone. streaming made easy, uploading live videos and pretty much change the rules of the game when it comes to utilizing the phone. the big question is &#8211; can the carrier(s) handle the demand?</p>
<p>- <em><strong>HD front and 8MP rear camera with a dual flash system</strong></em>. HD facetime &#8211; thank you very much. better photos at low light condition? yes please. no doubt apple will introduce major improvements to the camera, both hardare and software. by now the iphone is the most popular camera on flickr and it&#8217;s growing fast. we want to be able to take better photos easily, at different conditions and share them quickly. as the pixel count rises so the demand for bandwidth (see 4G LTE) and a quick turn around for large file sharing. we can ex (cpect something unique with this feature&#8217;s new offering. the inherit problem is the small chip for the camera and it&#8217;s ability to shoot in lower light conditions.</p>
<p>- <em><strong>wider screen</strong></em>: has been rumored for a while with some fake prototypes etc. can&#8217;t wrap my head around a wider screen unless it&#8217;s up to full HD, which will be, no doubt, incredible (i&#8217;ll rate this as 1% chance of happening). if i&#8217;ll have to guess it will be retina 2.0 with a slightly higher pixel density and a more crisp display than the current 960 x 640 at 326 ppi.</p>
<p>- <em><strong>better battery life: </strong></em>with iCloud and push across the board, there is no doubt apple is pouring tremendous effort behind making their devices stay up and running longer. expect something unexpected.</p>
<p>- <em><strong>built in noise cancelation mic</strong></em>: a la jawbone, it&#8217;s time for the iphone to become a better phone. and please let&#8217;s take care of the proximity sensor issue. please.</p>
<p>- <em><strong>NFC with eWallet OR BLE (4.0) + APIs</strong></em>: this will be very exciting to have. finally. eWallet patents are around for a while and android is a head of the curb. if we look east to japan we see clearly how mobile is used and credit cards are gone. yes &#8211; gone. the phone will be THE payment system in the very near future. it&#8217;s the credit companies that should be on their toes with this one. it is really all a matter of timing no? can&#8217;t enter too soon and definitely not too late.</p>
<p>there has been much discussion over Bluetooth Low Energy, otherwise known as BLE, which is the 4th version of bluetooth, now available in the just released macbook airs. what the new standard means is low energy consumption and wider range (50m) which means awesome apps and peripheral devices are heading our way. this is an interesting strategic call by apple, do they go with NFC and RFID or do they bet on BLE? based on the this recent move of incorporating BLE chips within the new line of macbook air&#8230; well&#8230; let&#8217;s see what happens <img src='http://pengas.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong> Little chance of getting:</strong><br />
- <em><strong>solar charging</strong></em>: apple has been working on this for a while now. heck, there is a prototype out in the wild that is solar enabled (<a href="http://www.patentlyapple.com/patently-apple/2010/06/apples-vision-of-a-solar-cell-iphone-supports-prototype-in-the-wild.html" target="_blank">link</a>). this is a game changer and the reason why there&#8217;s little chance of getting this one is because it&#8217;s probably required to perform much more tests and phase out gradually. maybe a device which combines both battery and solar charging a la hybrid first.</p>
<p>-<em><strong> haptic display + APIs</strong></em>: probably the advancement i would like to experience the most. haptic displays will revolutionize the way we interact with smart devices and their touch screen as they provide feedback to our touch sensory system. imagine that each button you click on a touch screen feels real. this is huge for UX across the board and opens the doors for some unique applications. android has immersion &#8211; a great company to follow with a great mix of products, worth mentioning are their medical related haptic devices. check it out <a href="http://www.immersion.com/markets/medical/index.html" target="_blank">here</a>.</p>
<p>- <strong><em>new map application: </em></strong>apple has made significant moves to become a player and tighten their vertical integration. this app should be nothing but fantastic and introduce features never seen before on smart devices. one option could be an augmented reality turn by turn navigation, integrated with location meta data and the users social graph.</p>
]]></content:encoded>
			<wfw:commentRss>http://pengas.com/2011/08/17/what-id-like-to-see-in-the-iphone5-and-probably-wont/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iOS 5 is around the corner (updated)</title>
		<link>http://pengas.com/2011/06/05/ios-5-is-around-the-corner/</link>
		<comments>http://pengas.com/2011/06/05/ios-5-is-around-the-corner/#comments</comments>
		<pubDate>Sun, 05 Jun 2011 15:57:34 +0000</pubDate>
		<dc:creator>Nir Pengas</dc:creator>
				<category><![CDATA[All Mac]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[online services]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[user experience]]></category>
		<category><![CDATA[whatever]]></category>

		<guid isPermaLink="false">http://pengas.com/?p=510</guid>
		<description><![CDATA[update: this post was written thursday of last week. it is now semi confirmed the developer of mobileNotifier is hired by apple and that iCloud will be presented by jobs tomorrow. one major revamp is the bare minimum as there are areas lacking where either android or cydia leaves the current OS lagging. and no [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" style="margin-top: 5px; margin-bottom: 5px; border: 1px solid black;" title="iOS 5" src="http://www.todaysiphone.com/wp-content/uploads/2011/05/ios5.jpg" alt="iOS 5 image" width="320" height="200" /></p>
<p><em><strong>update: </strong></em>this post was written thursday of last week. it is now semi confirmed the developer of mobileNotifier is hired by apple and that iCloud will be presented by jobs tomorrow.</p>
<p>one major revamp is the bare minimum as there are areas lacking where either android or cydia leaves the current OS lagging. and no doubt we will get what we are expecting.. just a gut feeling&#8230; here is my short list of enhancements that i&#8217;d like to see:</p>
<p>1. <em><strong>improved notification system</strong></em>: bar non that most important and required change to iOS. face it, the current notification system sucks big time. in the past, the real incentive to jailbreak your phone was mywi, my3g and going even further back, multitasking and naturally the most important feature &#8211; sim freeing your phone (Screw you apple and ATT for violating FCC regulations). now-a-days, mobileNotifier is THE reason why my phone is jailbroken. aggregate all notifications into a single window utilizing the empty space created when you double click the home page. apple &#8211; pls take note, this guy has done a great job.</p>
<p>2. <em><strong>dynamic home icons: </strong></em>ala windows8. yes you heard right. big chunky icons that actually display content and not just a static image. one good example is available on cydia and is called &#8216;weather icon&#8217;. it changes the degrees on the weather icon to display the current temperature. it also allows the temperature to be displayed on the status bar. really useful stuff. apple, please expose an API to do so.</p>
<p>3. <em><strong>OTA updates: </strong></em>not likely but definitely nice to have&#8230; over the air updates makes lots of sense. please &#8211; no more plugging in to itunes and backing it all up. this ties up to the next item that is most definitely making an appearance on monday:</p>
<p>4. <em><strong>iCloud content sync: </strong></em>this will probably make a big eco. iCloud can and will take cloud services to the next level. apple doing what they do tiered up, may see music sync and later down the road app sync.. so iCloud will probably allow you to purchase music from iTunes and stream it directly from your cloud storage. no need (or an option) to download and sync stuff. fantastic. one viable option is to open a US front against spotify, the EU-stream-the-song-you-want kind of service in the US. imagine a yearly/monthly plan ($20-$50/year) where you can listen to what you want&#8230; that&#8217;s a nice one.</p>
<p><em><strong>WHAT&#8217;S MISSING? </strong></em>iphone5 with 4G, NFC and iWallet, A5, double down on RAM, larger display and IR.</p>
]]></content:encoded>
			<wfw:commentRss>http://pengas.com/2011/06/05/ios-5-is-around-the-corner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pure West for iPhone and iPod touch on the iTunes App Store</title>
		<link>http://pengas.com/2010/09/21/pure-west-for-iphone-and-ipod-touch-on-the-itunes-app-store/</link>
		<comments>http://pengas.com/2010/09/21/pure-west-for-iphone-and-ipod-touch-on-the-itunes-app-store/#comments</comments>
		<pubDate>Tue, 21 Sep 2010 15:47:24 +0000</pubDate>
		<dc:creator>Nir Pengas</dc:creator>
				<category><![CDATA[All Mac]]></category>
		<category><![CDATA[home tech]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[whatever]]></category>

		<guid isPermaLink="false">http://pengas.com/?p=444</guid>
		<description><![CDATA[My first iOS app is live on the app store. It is an iPhone compatible schedule for Pure Yoga West, one of the top yoga centers in NYC in the upper west side. The app is free for download from the AppStore. This project started off when I joined Pure West as a member. Yoga [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://itunes.apple.com/us/app/pure-west/id390846031?mt=8" target="_blank"><img class="alignright" style="margin: 5px; border: 1px solid black;" src="http://a1.phobos.apple.com/us/r1000/015/Purple/cd/63/69/mzl.iudhstde.320x480-75.jpg" alt="" width="320" height="460" /></a>My first iOS app is live on the app store. It is an iPhone compatible schedule for Pure Yoga West, one of the top yoga centers in NYC in the upper west side. The app is free for download from the <a href="http://itunes.apple.com/us/app/pure-west/id390846031?mt=8" target="_blank">AppStore</a>.</p>
<p>This project started off when I joined Pure West as a member. Yoga became a big part of my life as I practice on daily basis. Since Pure West offers around 27 different kinds of yoga between 5 studios, starting as early as 6am &#8211; you can imagine the teachers they have as staff and the frequency they update the schedule.</p>
<p>Something was broken. The paper schedule provided at the front desk was out of date as soon as it was printed. Could be a minor change to a single class, to time of full moon where ashtanga is not practices (which can not be reflected in a single week sheet), to the twice a month led practice of mysore.</p>
<p>Pure uses spa-booker as their service provider, doing all the heavy lifting with proprietary database system and interfaces to both manage the content and display it to the public. it gets more complicated than that as some classes are special and specific where members (or non members) need to pay and more.</p>
<p>Since spa-booker is working on their own version for the mobile devices, and I knew I am in need of a solution for myself that can probably serve others &#8211; I jumped on the challenge to create something.</p>
<p>Working closely with two friends, Tomer and Claudio, together we build this app that does the following well:</p>
<p>- single click to get class schedule and class info<br />
- fast loading of the data<br />
- layout that matches the small iphone screen</p>
<p>Essentially we build a system that scrapes the HTML of the entire week. Then we parse the content diligently and store it in our XML proprietary format. The interface picks up the XML whenever someone launches the application and displays it on screen accordingly.</p>
<p>For performance reasons we are re-visiting Pure&#8217;s website every two hours to see what had changed, parse the content and re-write the XML. On the client side only one day is loaded from the server. When a user changes a day, we go back to the XML and look for the content of that day exclusively.</p>
<p>The app is a UIWebView essentially, as the app is developed as a web application. The release to the AppStore will help the discovery, but also for us to learn the process and time line for doing so, as we plan to move forward with other developments of our ideas and our client&#8217;s.</p>
<p>The beauty of iOS apps is that they strive to keep things simple. When you launch the application, it is really hard to judge how much work was put into it, and how much lifting is done in the background. Things just work as they should, both in layout, style and user experience, including performance specifically.</p>
<p>One of the advantages of designing this app abstractly, is that now we can custom create it for any spa-booker customer within the day.</p>
<p>We are in touch with Spa Booker who are supporting our efforts. Future plans may include using their API&#8217;s to book classes directly from the phone, add more specific information to classes, like which element of zenyasa is being practices today, and provide a delta of changes since a user last visited the schedule.</p>
<p>The Pure East application (the 2nd location for Pure on the upper east side) is pending approval by Apple. Based on the approval of Pure West, it is a matter of days before that one will be approved as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://pengas.com/2010/09/21/pure-west-for-iphone-and-ipod-touch-on-the-itunes-app-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the next stage for smart phones</title>
		<link>http://pengas.com/2010/07/15/the-next-stage-for-smart-phones/</link>
		<comments>http://pengas.com/2010/07/15/the-next-stage-for-smart-phones/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 18:52:53 +0000</pubDate>
		<dc:creator>Nir Pengas</dc:creator>
				<category><![CDATA[inspiration]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[user experience]]></category>
		<category><![CDATA[VoIP]]></category>
		<category><![CDATA[whatever]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[ATT]]></category>
		<category><![CDATA[connectivity]]></category>
		<category><![CDATA[device]]></category>
		<category><![CDATA[future]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[smart]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://pengas.com/?p=398</guid>
		<description><![CDATA[no doubt apple revolutionized the smart phones industry. apple gave the market a real shuffle when it introduced it 3 years ago. it was the user experience that made the difference &#8211; just like any apple product &#8211; from their software to their stores: it&#8217;s all about the user experience. what helped the iphone take [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="future of smart devices" src="http://behance.vo.llnwd.net/profiles/57581/projects/459992/575811269261736.jpg" alt="" width="360" height="325" />no doubt apple revolutionized the smart phones industry. apple gave the market a real shuffle when it introduced it 3 years ago. it was the user experience that made the difference &#8211; just like any apple product &#8211; from their software to their stores: it&#8217;s all about the user experience.</p>
<p>what helped the iphone take off was the community of developers. believe it or not, it is the early hackers who put their time and wits into action, to jailbreak it. jailbreaking means you free the phone from the exclusivity of the appStore, and are able to install apps from other developers (for free or for $$). there are several alternative appStores out there, like cydia and &#8216;rock your phone&#8217;.</p>
<p>why would anyone be interested in installing apps that are not on the appStore? mostly because they extend the capabilities of the device beyond what apple allows or is planning for the time being. for example: tethering. how long did we hear from ATT that tethering is arriving? why can&#8217;t we share our internet connection with our laptop and have the iphone serve as a hub? ATT is planning to do so (they claim they are making way for the bandwidth load they are experiencing altogether) for an extra (yes, u heard it right) extra $30 a month. so you pay $30 on your iphone to be constantly online with an unlimited bandwidth (it actually is capped if u check your account page online), and you will pay $30 more to tether.</p>
<p>if you jailbreak your iphone you can install an app called myWi which allows you to tether for a small one time fee of $20. sounds like a good deal right? it is.</p>
<p>another good example is using your data plan as you wish. the internet neutrality act proposes that each and every one of us can use his/hers connection as they please without the internet provider throttling and/or blocking the connections (which happens in spades, though most providers do not admit this). in fact, chile is the first country in the world to anchor network neutrality within it&#8217;s constitutional right.</p>
<p>currently ATT does not allow skype calls to be made over the data plan. only wifi. the same goes for &#8216;face time&#8217; with iphone 4. you can see the other side only if both are over wifi. that pretty much sucks doesn&#8217;t it? well, ATT has been putting billions of dollars into infrastructure and i can attest that their signal has gotten better (not much but better) here in NYC. however, i cannot understand what reasons they had (besides greed) to up the data plan cost from $20 on iphone g1 to $30 for the exact same package.</p>
<p>back to business. if you install my3g you can fool the phone into reporting it is over wifi while you are actually over the data network.</p>
<p>want more examples? they are a plenty: sbsettings (allows you to control the phone via a swipe jesture, turn on the phone, the data connection, blue tooth, kill processes and more) proswitcher: allows you to multitaks, meaning putting an app in the background (now partly available in os4)  ultrasnow: allows you to unlock the phone, so you can use it with other GSM carriers in the US or over seas (something ATT must provide you by law when traveling abroad &#8211; which they don&#8217;t). and many many more.</p>
<p>so now back to the title &#8211; the next stage of smart phones. well, the title is misleading. it should really read the next stage of smart devices. and that is exactly what they should be: smart devices.</p>
<p>the revolution had already started with the micro sim cards for the ipads. take a device and connect it to the internet &#8211; you are golden. forget about minutes, rollovers &#8211; all we really have is our data connection. do you want to make a call? launch skype. you can make unlimited calls in the US for $3 a month. face it &#8211; a phone is just an application, just like your painting tool or recording device. whatever you want to do will be %100 over the network without extra fees or hidden charges.</p>
<p>and they are all afraid of it because they will loose tons of money right? all the fees on our bill, state charged nickel and dimes for F charge and G cost. the interent scares that scavengers because what will you charge on top of the data plan?</p>
<p>and that is all i really want and the next phone i will get: a device that has the ability to connect to the internet without a phone attached to you. an ipod touch with a micro sim card will do fantastic for me and i will gladly give up my iphone for it.</p>
<p>the future is all about our freedom and ability to connect. it is all about us spending much less (think annually) and getting much much more bang for our buck.</p>
]]></content:encoded>
			<wfw:commentRss>http://pengas.com/2010/07/15/the-next-stage-for-smart-phones/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The future of our living room</title>
		<link>http://pengas.com/2010/04/30/the-future-of-our-living-room/</link>
		<comments>http://pengas.com/2010/04/30/the-future-of-our-living-room/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 19:39:29 +0000</pubDate>
		<dc:creator>Nir Pengas</dc:creator>
				<category><![CDATA[fashion]]></category>
		<category><![CDATA[home tech]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[ipad]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[Micro$oft]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[whatever]]></category>

		<guid isPermaLink="false">http://pengas.com/?p=375</guid>
		<description><![CDATA[worlds are shifting. seriously&#8230; all around me i see the matrix moving all around &#8211; where ever i look&#8230; examples? aplenty. digital media consumption: slate devices are here to rule the world. the more i play around with my ipad the more i realize how wonderful a 12h battery can serve humanity on the go. and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://pengas.com/wp-content/uploads/2010/04/become-a-game-changer-web.jpeg"><img class="alignright size-medium wp-image-377" style="margin: 5px; border: 1px solid black;" title="become a game changer web" src="http://pengas.com/wp-content/uploads/2010/04/become-a-game-changer-web-300x187.jpg" alt="" width="300" height="187" /></a>worlds are shifting. seriously&#8230;</p>
<p>all around me i see the matrix moving all around &#8211; where ever i look&#8230;</p>
<p>examples? aplenty.</p>
<p>digital media consumption: slate devices are here to rule the world. the more i play around with my ipad the more i realize how wonderful a 12h battery can serve humanity on the go. and that is key here &#8211; on the go. consider it a platform and not a gadget. mobile devices are here to stay. desktop computers? time to turn them into art. they are out the door in terms of dominating the market. face it &#8211; we consume, and we consume a lot. in 2010 who is not HDD? seriously&#8230; having all media streamed and centralized in a long hour operating device with a crisp device and intuitive interaction will break all barriers. from kids to astronauts. it is just a matter of time.</p>
<p>learning: kids will benefit much from slate devices (BTW, there are over 8 competitors about to launch their products and compete head to head with apple&#8217;s ipad). i see kids carrying a huge school bag on their small backs, all these massive books &#8211; i say no more! soon enough all the material will be available as a digital book, that will fit within the pound a a half a salte device weighs. with many hours of operation it is a no brainer for schools. moreover, the content can be layered with videos AND become interactive. how about that for creating interesting course material, tests, quizzes and home work?</p>
<p>the kitchen: yes my friends, the kitchen. one of the most important and fun rooms in any house hold &#8211; the room where we feed our body, the room where mostly women spend time (excluding metrosexual guys who care for their bodies like myself) to prepare meals for their families. how come there is no digital help there in 2010? sure, we have DVD players etc, but that is used to consume media. how about enhancing the experience in the kitchen? from social media, videos of recipes, timers, integration and interaction with consumer products, baby monitoring and much more. times are shifting my friends, didn&#8217;t i mention that?</p>
<p>the living room: yes &#8211; last and definitely not least, the title of this post. the real cash cow of media and hardware companies. the area where we will notice aggressive and fierce competition. let&#8217;s start with what we have today: we have a one direction big screen and a cable company that decides what we can watch, when and at what cost. they shove commercial right where we don&#8217;t want them and make billions. all of that my friends will rapidly change. to date, youtube video uploaded in 2 months accumulate to more footage ever released by all major networks aggregated within the last 20 years. incredible isn&#8217;t it? the future is prime content mixed with user created content that will become more and more high end as we go along. check out gary vaynerchuk and winelibrary.tv for prime content centered around wine. and more people are doing their own home production while building brand equity.</p>
<p>so we have great content in our finger tips. what will shift is the hardware. more and more TVs will be released in the near future that will run an operating system. like android, windows and mac/iphone OS. what that means is that the TV will become interactive and essentially a new product. TV 2.0. not widgets a la samsung. but a real computer that has a huge and beautiful display, input and outputs that can allow decoding of HD video and audio signal etc. all we got to expect from a TV, but the control moves back to us &#8211; the consumer. and this will happen not a moment too soon.</p>
<p>how long will it take apple to create a beautiful 50&#8243; backlit LCD that runs the iphone OS, which allows multi touch and can be turn into a table when u want a flat user interaction? there are a couple of android based TVs coming out very soon from japan. face it. the TV can and should do much more than it is doing today. screw the big networks &#8211; power to the people. consume media when u want it and how u want it. let me buy the episodes i like directly to my set top box, sync it with all my devices seamlessly and make sure i can collaborate around it with my close ones.</p>
<p>if so far we had seen a great and exciting new ecosystem rising &#8211; the appStores. from apple to android, blackberry and samsung. we will see apps made for the TV as well. and here is where i ask you &#8211; what kind of apps can u envision being used in the living room? how will the TV enhance the usage and integration with other devices around our living space? our phones, our slates, and in the future maybe our cloths and appliances.</p>
<p>worlds are shifting my friends &#8211; they are shifting&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://pengas.com/2010/04/30/the-future-of-our-living-room/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Motorola DROID first (right) hands-on</title>
		<link>http://pengas.com/2009/10/29/motorola-droid-first-right-hands-on/</link>
		<comments>http://pengas.com/2009/10/29/motorola-droid-first-right-hands-on/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 14:28:16 +0000</pubDate>
		<dc:creator>Nir Pengas</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[whatever]]></category>

		<guid isPermaLink="false">http://pengas.com/?p=292</guid>
		<description><![CDATA[yeah, this is great news for everyone. the competition between google and apple is just warming up, android 2.0 is out with the world&#8217;s thinest slider full qwerty, gps turn by turn navigation, slick facebook integration and more. check out the link to egadget for videos and photos. here is the thing that popped up [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="motorola droid" src="http://www.mobilegazette.com/handsets/motorola/motorola-droid/motorola-droid-3.jpg" alt="" width="300" height="407" />yeah, this is great news for everyone. the competition between google and apple is just warming up, android 2.0 is out with the world&#8217;s thinest slider full qwerty, gps turn by turn navigation, slick facebook integration and more. check out the link to egadget for videos and photos.</p>
<p>here is the thing that popped up very quickly. this phone is designed for right handed people almost exclusively. bummer. no big surprise, but a bummer. as you will see, the keyboard has a navigation pad at the right side of it, for you to use with your right thumb.</p>
<p>this is a normal situation for all left handed people out there (yours truly included). from the door handle and direction it opens to cameras, scissors, pens and cell phones.</p>
<p>while this phone is very impressive and it definitely seems that it is worth checking out and maybe it will be able to bite into the iphone&#8217;s market share, i cannot help but think about the 10% of us who are left handed. not only our life expectancy is ~8 years less than right handed poeple, we are also singled out when it comes to consumer electronics. we are just not an important enough a market, sorry, let me rephrase that: we are not a profitable enough a market to create a whole new manufacturing chain for.</p>
<p>so what we have done for years is learn how to use equipment as right handed people do. is it a big deal? i think it is. as an amateur photographer i need to hold and snap with my right hand. only some guitars are made for lefties, and internal designers rarely ask their client if they are left handed, and then go about adjusting all the nitty gritty details to accommodate that.</p>
<p>how can this problem be solved?</p>
<p>i understand the manufacturing cost, and the fact that the left handed market is not big enough to produce phones for. one option is to create a neutral phone, one that caters to neither camps. another, is to make the differences software adjustable. for example: the iphone. i can re-arrange the apps as i see fit, so they are within the comfortable reach of my left hand thumb.</p>
<p>so far i have not seen a worthy left handed smart device besides the ihpone, which still does not really cater for us lefties. the address book scroling, the maps button layout etc.</p>
<p>here is a crazy idea: why not create two separate layout for each application (developers pay attention pls), where i define the left/right setting from the preferences menu. each application checks for the value there (0 for right and 1 for left) and uses a different layout to match my preference.</p>
<p>can that work?</p>
<p>in any event, enjoy the new phone&#8217;s preview in the link below and expect greater things from this market in the very near future.</p>
<p><a href="http://www.engadget.com/2009/10/28/motorola-droid-first-hands-on/">Motorola DROID first hands-on! update: video, impressions, more pics</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pengas.com/2009/10/29/motorola-droid-first-right-hands-on/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Harvard Gets its Best and Brightest</title>
		<link>http://pengas.com/2009/02/15/how-harvard-gets-its-best-and-brightest/</link>
		<comments>http://pengas.com/2009/02/15/how-harvard-gets-its-best-and-brightest/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 04:03:43 +0000</pubDate>
		<dc:creator>Nir Pengas</dc:creator>
				<category><![CDATA[whatever]]></category>
		<category><![CDATA[harvard]]></category>
		<category><![CDATA[recruit]]></category>

		<guid isPermaLink="false">http://pengas.com/?p=177</guid>
		<description><![CDATA[Good read and a good lesson in marketing: Online Extra: How Harvard Gets its Best and Brightest.]]></description>
			<content:encoded><![CDATA[<p>Good read and a good lesson in marketing:</p>
<p><a href="http://www.businessweek.com/magazine/content/06_34/b3998441.htm?campaign_id=rss_topStories">Online Extra: How Harvard Gets its Best and Brightest</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pengas.com/2009/02/15/how-harvard-gets-its-best-and-brightest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

