<?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>Refined by Fire &#187; Mobile Web</title>
	<atom:link href="http://www.chrispalle.com/category/mobile-web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chrispalle.com</link>
	<description></description>
	<lastBuildDate>Sat, 14 Jan 2012 02:03:17 +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>Why it&#8217;s a Good Time to Play with Webkit CSS Properties</title>
		<link>http://www.chrispalle.com/2008/04/26/why-its-a-good-time-to-play-with-css-webkit-properties/</link>
		<comments>http://www.chrispalle.com/2008/04/26/why-its-a-good-time-to-play-with-css-webkit-properties/#comments</comments>
		<pubDate>Sat, 26 Apr 2008 19:02:57 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[{human} Experience Design]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://www.chrispalle.com/?p=120</guid>
		<description><![CDATA[So, after getting an email from Sitepoint this past week, I decided to drink some of the Webkit CSS kool-aide. If you&#8217;re in a Webkit browser, go ahead, rollover the links and navigation. To give a very quick background, Webkit is the foundation for the Safari Web browser. Additionally, many OS X apps use Webkit [...]]]></description>
			<content:encoded><![CDATA[<p>So, after getting an email from Sitepoint this past week, I decided to drink some of the Webkit CSS kool-aide. If you&#8217;re in a Webkit browser, go ahead, rollover the links and navigation.</p>
<p><img src="http://www.chrispalle.com/wp-content/uploads/2008/04/541261383-b89f85bcca-t.jpg" alt="541261383_b89f85bcca_t.jpg" border="0" width="100" height="81" align="left" />To give a very quick background, Webkit is the foundation for the Safari Web browser. Additionally, many OS X apps use Webkit to display Web content. NetNewsWire, Mail.app, the Dashboard, are just a few. Site-Specific Browsers (SSBs) like those built on Fluid are also using Webkit. </p>
<p>Basically, if an OS X app&#8217;s Web integration has a tight feel to it, you can bet that it&#8217;s using Webkit. </p>
<p><span id="more-120"></span></p>
<p>Webkit is a strong platform. The only thing I see potentially harmful is that they stray away from W3C standards with their modern functionality. However, even as a relatively strict standardista, I don&#8217;t fault them. It takes forever for the W3C to get anything done and then the adoption rate takes even longer. This is why we have programming strategies like progressive enhancement<sup>(8)</sup>. </p>
<p>The new Webkit CSS properties are relatively simple to implement and ignored by the other browsers. (Well, I tested only in FF3 beta and I don&#8217;t think I have the patience for IE&#8230; no wait, I&#8217;m SURE I don&#8217;t..)</p>
<p>For me, the only tricky thing was understanding where the actual properties would live in the style sheet. The <span class="code">transition</span> property I&#8217;ve used on the navigation areas and links is actually set in the selector that will change. </p>
<p>For example: </p>
<blockquote class="code"><pre>
#tertCol a {
	display:block;
	color:#D1570D;
	font-size:.8em;
	line-height:1.2em;
	border-top:1px solid #BBB;
	padding:4px 0 4px 4px;
	<span class="highlight_grey">-webkit-transition: color .25s linear;</span>
	<span class="highlight_grey">-webkit-transition: background-color .25s linear;</span>
	}

#tertCol a:hover {
	background-color: #D1570D;
	color:#FDE792 !important;
	}
</pre>
</blockquote>
<p>This seems a bit counter-intuitive to me. Time-based event effects such as animations and transitions seem like they should go on the event handler such as <span class="code">hover</span>. It makes sense that static effects would be handled in this way, but not dynamic ones. Anyway, minor annoyance, not a deal-breaker.</p>
<p><img src="http://www.chrispalle.com/wp-content/uploads/2008/04/61604714-205000d3c4-m.jpg" alt="61604714_205000d3c4_m.jpg" border="0" width="195" height="240" align="right" />
<p>Photo by <a href="http://www.flickr.com/people/bartmaguire/">bartmaguire</a>.</p>
<h2>Why Is Now A Good Time?</h2>
<p>Before jumping in and adopting proprietary technology, it&#8217;s always good to second-guess. Thing is, Webkit is not propietary. It just seems that way because there is only one prominent player. It&#8217;s actually open-source. </p>
<h3>See the Billowing Steam?</h3>
<p>As mentioned above, Webkit has gained some good ubiquity on the Mac OS X platform which itself is gaining steam in both the consumer and business markets. Additionally, perhaps more importantly, Apple has beat out Dell in the education market. That means even more people in the coming generations will have a preference to OS X.</p>
<p>Webkit is the engine that drives Safari and it&#8217;s mobile sibling on the iPhone, which has gained an enormous share of the PDA market. The iPhone is no doubt here to stay and after Apple&#8217;s enterprise initiatives take this summer, forget about it. Every executive wants one, but is bummed they can&#8217;t connect it to the corporate email. That&#8217;s going to change soon. (Not to mention after 3G hits)</p>
<p>Apple is not the only major company adopting Webkit, though. Nokia and Adobe have adopted Webkit as their rendering engine of choice as well with the Nokia S60 and AdobeAIR, respectively. And, not saying it&#8217;s going overthrow the great, bloated behemoth that is IE, but Safari is now available for Windows as well. </p>
<h3>High Zippiness Factor</h3>
<p>Webkit renders HTML/CSS at blazing speeds and it handles Javascript like a champ<sup>(4)</sup>. </p>
<p>I used to use Firefox for years because of its vast array of plug-ins and added functionality. While I miss the Web Developer toolbar, I stay in Safari for all my browsing because it so stinkin&#8217; fast.</p>
<h3>Easy to Implement</h3>
<p>Webkit is easy to include in your apps because it is well documented for the Xcode and MS Visual Studio IDEs (as well as Express). I even found that some developers find using Webkit a perfectly legitimate tactic to create desktop apps using Web technologies. This is where guys like Todd Ditchendorf and Jon Crosby are making plays. Don&#8217;t think they&#8217;ll be the only ones because even I – a hack of a programmer – grokked that one from the moment I started playing with Xcode.</p>
<h3>Hardcore Compliance</h3>
<p>Yeah, Yeah, say what you will about The Great Browser War of the &#8217;90s happening all over again. The fact is, when it comes to current standards compliance, Webkit is hands down, above the rest<sup>(7)</sup>. So, zip it Chicken Littles. (besides, the browser war has never ended.)<img src="http://www.chrispalle.com/wp-content/uploads/2008/04/484024107-31c90970a9-m.jpg" alt="484024107_31c90970a9_m.jpg" border="0" width="240" height="159" align="left" />
<p>Photo by <a href="http://www.flickr.com/people/zinc/">Killer App</a></p>
<p>Furthermore, there is a difference here. This is more a matter of stylistic enhancements, not structural and behavioral integrity as it was between Netscape and IE. When considering a 4-layer approach to design; that is, separating content, structure, style, and behavior from each other we&#8217;re looking to keep visual enhancements away from disturbing the accessibility to content. Which is what these properties are for. </p>
<p>Again folks, it&#8217;s called Progressive Enhancement<sup>(8)</sup>. I was shocked to find that some people are still unfamiliar with this notion. Essentially, progressive enhancement, means that, if you&#8217;re going to add some modernity and flare to your code, make sure it degrades gracefully to non-supporting browsers by adding enhancements to already sound, accessible code. (I won&#8217;t flag you if you ignore IE, though.;-) jk</p>
<p>If you&#8217;re worried about non-webkit support on a Blackberry or some other mobile device: again, you haven&#8217;t taken the time to ensure best coding practices for degrading gracefully and if you&#8217;re not coding with best practices, then you have a lot more to worry about than non-compliance to Web standards.</p>
<h2>Add it to Your Toolbelt</h2>
<p>The features I toyed with are rudimentary. Webkit can do masks, gradients, transforms, rounded corners, all sorts of goodness. There are many possibilities to help shorten your dev cycle as you design for the future Web. </p>
<p>The Web is in a constant state of flux; expanding and contracting. As architects and builders, we&#8217;re going to be charged with taking applications to mobile devices and creating stand-alone apps that access the Interwebs via Javascript APIs, etc. Coupled with coding for graceful degradation, Webkit is going to be the easiest path we have. </p>
<p>Being in this biz for over 12 years and seeing technologies come and go or stay, I&#8217;m predicting that if you want to retain, or gain, some credibility as a Web designer/developer, do not waste any more time, put Webkit at the front-end of your development process.</p>
<p>Now, if we could just see more cool plug-ins!</p>
<h3>Linkage</h3>
<ol>
<li><a href="http://www.sitepoint.com/blogs/2008/04/25/css-gradients-transforms-animations-and-masks/">Site Point</a></li>
<li><a href="http://webkit.org/blog">Webkit.org Surfin&#8217; Safari</a></li>
<li><a href="http://opensource.nokia.com/projects/S60browser/index.html">Nokia S60 Browser</a></li>
<li><a href="http://blogs.computerworld.com/safari_is_about_to_get_crazy_fast">ComputerWorld: Safari is about to get crazy fast</a></li>
<li><a href="http://fluidapp.com/blog/2008/04/21/fluid-09/">Todd Ditchendorf</a></li>
<li><a href="http://www.kaboomerang.com/blog/2008/04/07/is-this-the-part-where-i-announce-a-press-conference-to-discuss-the-roadmap-for-my-sdk/">Jon Crosby</a></li>
<li><a href="http://webkit.org/blog/173/webkit-achieves-acid3-100100-in-public-build/">Webkit Acheive 100% on Acid3 Exam</a></li>
<li><a href="http://en.wikipedia.org/wiki/Progressive_Enhancement">Progressive Enhancement</a></li>
</ol>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Why+it%E2%80%99s+a+Good+Time+to+Play+with+Webkit+CSS+Properties+http%3A%2F%2Fchrispalle.com%2F%3Fp%3D120" title="Post to Twitter"><img class="nothumb" src="http://www.chrispalle.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a></p></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.chrispalle.com%2F2008%2F04%2F26%2Fwhy-its-a-good-time-to-play-with-css-webkit-properties%2F&amp;title=Why%20it%26%238217%3Bs%20a%20Good%20Time%20to%20Play%20with%20Webkit%20CSS%20Properties" id="wpa2a_2"><img src="http://www.chrispalle.com/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.chrispalle.com/2008/04/26/why-its-a-good-time-to-play-with-css-webkit-properties/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>iPhoneDevCampNYC pt.2 &#8211; Sessions and Explorations</title>
		<link>http://www.chrispalle.com/2008/04/20/iphonedevcampnyc-pt2-sessions-and-explorations/</link>
		<comments>http://www.chrispalle.com/2008/04/20/iphonedevcampnyc-pt2-sessions-and-explorations/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 18:51:47 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[NY Tech]]></category>
		<category><![CDATA[{human} Experience Design]]></category>
		<category><![CDATA[barcamp]]></category>
		<category><![CDATA[coworking]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iphonedevcamp]]></category>
		<category><![CDATA[iphonedevcampNYC]]></category>
		<category><![CDATA[nyc]]></category>
		<category><![CDATA[webkit]]></category>

		<guid isPermaLink="false">http://www.chrispalle.com/?p=116</guid>
		<description><![CDATA[Session One “Installing SDK and ‘Hello World’” (or Bonjour Monde :-) with Shawn Van Every and Eric Redlinger Photo by cstoller Well, I wanted to get my hands dirty in the IDE. So, I went to the SDK installation, and xCode introduction. I’ve been through the tutorials, but thought that some real face-time instruction would [...]]]></description>
			<content:encoded><![CDATA[<h2>Session One “Installing SDK and ‘Hello World’” (or Bonjour Monde :-) with Shawn Van Every and Eric Redlinger</h2>
<p><img src="http://farm4.static.flickr.com/3146/2425028763_796c75437c_m.jpg" alt="Installing SDK and Hello World (or Bonjour Monde :-)" align="right" />Photo by <a href="http://chadstoller.com">cstoller</a></p>
<p>Well, I wanted to get my hands dirty in the IDE. So, I went to the SDK installation, and xCode introduction. I’ve been through the tutorials, but thought that some real face-time instruction would be good.</p>
<p><span id="more-116"></span></p>
<p> It was pretty straight forward, but this was way cool, though: Bonjour technology can connect other phones over WiFi. There is some sample code that allows you see how this works on the wiki page. (Link Below)</p>
<p>I didn’t get my “Hello World” to even say “hi,” but I also had to cut it short before tweaking it because we wanted to get into what we thought would be the app for us: Interface Builder.</p>
<p>IB is tricky, definitely fun, but I don’t see how I could use it in my workflow just yet. It’s still really buggy and not complete. Some where saying that it’s the weakest part of the SDK. Certainly didn&#8217;t do it for me at this point.<br />
(See Links at end of post for notes.)</p>
<h2>Session 2: User Experience with Chris Fahey and Rob Marini</h2>
<p>This, for me, and perhaps many others because the room was packed, was the headline event. The iPhone is in such infancy that we’re all starving and grasping for what it takes to make a great app for the device. In case you don’t know, Apple (they’re not the only one’s, though, they’re just one of the more well-known) puts User Experience at the front-end of the development process. I reiterate this as it&#8217;s a relatively new notion for software developers who are used to system-driven UI design.</p>
<p>Which is kind of a “duh.” I mean, if you’re creating something for an audience, shouldn’t you have a deep understanding of that audience? Anyway, another topic for another day.</p>
<p><img src="http://farm4.static.flickr.com/3190/2426135470_c38312676d_m.jpg" alt="Fahey's Photoshop iPhone UI" align="left" /> Photo by <a href="http://hyperradiant.net">bisceglie</a></p>
<p>Chris showed off his densely-layered Photoshop interface prototype maker – complete with moveable finger (unfortunately not shown)–  from which he hand-stiched various screen shots he found on the Web (he’ll be releasing to the public soon, watch graphpaper.com).  He was quick to point out that he did his protoype Pre-SDK release with InterfaceBuilder (IB), but Rob actually advised against using IB for making prototypes anyway. There’s just too much time involved. Perhaps it will get better/easier, but right now, as designers,we should stick with what we know.</p>
<p>Prototyping is an extremely important part of the design process, but not the first. It’s best to start of with a graph-paper sketch pad. Chris suggested to use one the size of an actual handheld. I think this might be what he’s talking about: <a href="http://www.moleskine.com/eng/_interni/catalogo/Cat_int/catalogo_notebooks.htm">Moleskine</a> (scroll to bottom of the page).</p>
<p>The photoshop file was definitely an undertaking on his part, but the take-away from Fahey’s presentation is this: design is sometimes the “Art of taking features out.” Sure, in the initial phases, jam-pack a concept with features, but then give it a critical look to take out stuff; what I like to call “design triage.”</p>
<p>Actually there is another take away, “Get pixel-perfect as soon as you can.” Many designers are coming from desktop or Web design where screen real estate is a luxury compared to the iPhone. So, it’s really important to see what it’s truly going to look like.</p>
<p>Rob Marini really got some great discussion going. One of Rob’s points was that once a prototype is really fleshed out and the experience is coming together, then start bringing things into UI Builder.</p>
<p>Rob&#8217;s posted his notes on his site: <a title="Manifesting Months of Expectations, Designing Experiences for iPhone" href="http://thenewhighstandard.com/post/32383983">The New High Standard.</a></p>
<h2>Warning For the Developer</h2>
<p>Eric Redlinger, creator of <a href="http://10base-t.com/software/mobile/crosswalk.html">CrossWalk</a> a handy Subway map app for NYC, pointed out to programmers: if you worked with pre-beta &#8220;unofficial SDK&#8221; don’t be surprised if everything gets thrown out. Apparently, Apple’s made a ton of changes to the CocoaTouch’s (iPhone rendition of Cocoa) methods and syntax.
<p><img src="http://farm3.static.flickr.com/2143/2427794581_d43603dc7a_m.jpg" alt="" align="right" />Photo by <a href="http://chadstoller.com">cstoller</a></p>
<h2>Webkit Areas for Native Development</h2>
<p>Here’s an interesting idea. Something I was pondering as I’ve played with xTools: design and develop using Webkit with a “thin CocoaTouch layer” and then turn it into a iPhone app. Apparently, the guys were saying that this is a perfectly valid way to develop because “Webkit views” will run with the benefits of a native app having that thin Cocoa layer, but easy enough for Web technologists to get apps rapidly built. Some features like camera, corelocation are not available through Webkit, but that’s where the native aspect can come in.</p>
<p>Eric allowed us to rip up his CrossWalk app, but unfortunately I had to jet off to a friend’s Seder. So, I couldn’t participate much.</p>
<h3>Here’s some other helpful Webkit topics:</h3>
<p><a href="http://www.sproutcore.com/">SproutCore</a> &#8211; OpenSource framework for Web. Think of it as Cocoa for the Web.<br />
<a href="http://groups.google.com/group/iphonewebdev/about">iUI</a> &#8211; is another option, but a little immature.</p>
<p>Anyway, this iPhoneDevCamp was my first <a href="http://barcamp.org/">BarCamp</a> experience. It was awesome, definitely will be attending more in the future. If you’re in the technology dev/design industry in any capacity, either go to one or get one started if they’re not available in your area.</p>
<h2>Thanks for the volunteering and sponsorship:</h2>
<ul>
<li><a href="http://ecumedesjours.com/" target="_blank">Eric Redlinger</a>: <a href="http://10base-t.com/software/mobile/crosswalk.html">CrossWalk</a></li>
<li><a href="http://uberthings.com/" target="_blank">Michael Sharon</a></li>
<li><a href="http://at.or.at/hans" target="_blank">Hans-Christoph Steiner</a></li>
<li><a href="http://walking-productions.com/" target="_blank">Shawn Van Every</a></li>
<li><a href="http://idmi.poly.edu" target="_blank">IDMI at PolyTech</a>
<li><a href="http://socialight.com" target="_blank">Socialight</a></li>
<li><a href="http://organic.com/" target="_blank">Organic</a></li>
<li><a href="http://pinchmedia.com/" target="_blank">PinchMedia</a></li>
<li><a href="http://zworkbench.com/" target="_blank">ZWorkBench</a></li>
<li><a href="http://www.chrispalle.com/wp-admin/itp.nyu.edu" target="_blank">ITP at NYU</a></li>
</ul>
<h2>More linkage:</h2>
<ul>
<li><a href="http://www.tuaw.com/2008/04/18/last-second-notice-iphonedevcamp-new-york-city/">TUAW</a></li>
<li><a href="http://hyperradiant.net/blog/2008/04/notes-from-iphonedevcampnyc-in.html">HyperRadiant&#8217;s Notes from the Interface Builder Session</a></li>
<li><a href="http://tech.groups.yahoo.com/group/CocoaHeads-NYC/">CocoaHeadsNYC Yahoo! Group</a></li>
<li><a href="http://barcamp.org/iPhoneDevCampNYC">iPhoneDevcampNYC Wiki with Samples Link and IRC Channel</a></li>
<li><a title="Barcamp.org" href="http://barcamp.orr">BarCamp.org</a></li>
</ul>
<p>Please, by all means add more local groups, events, blog posts, reviews, software downloads, help files, (whatever) in the comments and I&#8217;ll update. If you were there, definitely put your comments below or link to your site.</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=iPhoneDevCampNYC+pt.2+%E2%80%93+Sessions+and+Explorations+http%3A%2F%2Fchrispalle.com%2F%3Fp%3D116" title="Post to Twitter"><img class="nothumb" src="http://www.chrispalle.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a></p></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.chrispalle.com%2F2008%2F04%2F20%2Fiphonedevcampnyc-pt2-sessions-and-explorations%2F&amp;title=iPhoneDevCampNYC%20pt.2%20%26%238211%3B%20Sessions%20and%20Explorations" id="wpa2a_4"><img src="http://www.chrispalle.com/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.chrispalle.com/2008/04/20/iphonedevcampnyc-pt2-sessions-and-explorations/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>iPhoneDevCampNYC pt.1 &#8211; Oh, the People You&#8217;ll Meet</title>
		<link>http://www.chrispalle.com/2008/04/20/iphonedevcampnyc-pt1-oh-the-people-youll-meet/</link>
		<comments>http://www.chrispalle.com/2008/04/20/iphonedevcampnyc-pt1-oh-the-people-youll-meet/#comments</comments>
		<pubDate>Sun, 20 Apr 2008 18:51:09 +0000</pubDate>
		<dc:creator>Chris</dc:creator>
				<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[NY Tech]]></category>
		<category><![CDATA[{human} Experience Design]]></category>
		<category><![CDATA[barcamp]]></category>
		<category><![CDATA[coworking]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iphonedevcamp]]></category>
		<category><![CDATA[iphonedevcampNYC]]></category>
		<category><![CDATA[nyc]]></category>

		<guid isPermaLink="false">http://www.chrispalle.com/?p=115</guid>
		<description><![CDATA[So, made it to another NYC tech event. On a Saturday no less. Anyway, this was the first BarCamp I’ve ever attended. I’ve been wanting to attend one for quite some time and was bummed to miss the big one a couple months ago. This however, made up for it because we covered one of [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm4.static.flickr.com/3265/2427357663_6e671da800_m.jpg" border="0" alt="iPhoneDevCamp Logo" align="right" />So, made it to another NYC tech event. On a Saturday no less. Anyway, this was the first BarCamp I’ve ever attended. I’ve been wanting to attend one for quite some time and was bummed to miss the big one a couple months ago. This however, made up for it because we covered one of my favorite topics: experience design. Oh wait, yeah, on the iPhone. So, even better.<br />
<span id="more-115"></span></p>
<p>Anytime I attend these smaller homegrown/grassroots events, I try to be one of the first there for a couple reasons:</p>
<p>1) Coming in from NJ and going somewhere different (like Brooklyn), it’s good to pad time. That’s obvious, but<br />
2) There’s usually a ton of things that need setting up and that’s a great opportunity to pitch in and meet the lead volunteers before things get hectic.</p>
<p>oh and the refreshments are at their freshest. :-)</p>
<h2>All the Smart Peeps</h2>
<p>It was great to catch up with a couple folks such as Joshua Keay and his brother, Dave from Magnetism Studios and Chris Fahey from Behavior Design plus met a few new ones. These people are brilliant and lots of great discussions get going. </p>
<p>Tell ya what’s funny, though is organizing the day. It’s truly an organic process. During the meet and greet, everyone suggested the topics for the day. <img src="http://farm4.static.flickr.com/3216/2427357495_cb0794e534_m.jpg" border="0" alt="Lots of Suggestion, The Great Schedule Shuffle Begins" align="right" /></p>
<p>Then after introductions, we organized the topics into a schedule. There is nothing more hilarious than a hundred+ technology/experience professionals/enthusiasts creating what will ultimately be the &#8220;unconference&#8221; ad-hoc experience that are BarCamps.</p>
<p>There we were, deliberating over what order the topics should be in, which should run concurrently with what, who’s going to teach and miss out on a topic in another room. I was getting worried as I wanted to see UX and InterfaceBuilder in the beginning because I had to leave early. Then once we got it all figured out, we wound up starting all over again because&#8230; well, just because someone had to say something. Yeah, there was <em>nothing</em> planned up front!</p>
<p>But you know, something that could typically take event planners weeks to figure out, we did it in a matter of minutes. Experts surfaced, presentations were crafted on the fly, and the event was great.</p>
<h2>Lunch</h2>
<p>(We actually went on to the sessions first and then came back for lunch. Just wanted to group my topics.) </p>
<p>Good pizza; good discussions. Met some great folks and caught up with Patrick Ewing, brill rubyist working for Gary Vaynerchuk. Talked up some good ideas with him and Robert Marini who I just met for the first time. That guy’s smart. Look for good things to come from him. Also, got to meet Mac coder, Buzz Anderson creator of PodWorks and Cocoalicious. We got to chatter on general usability and development for the phone and some history growing up with the Mac. Ahh, the nostalgia&#8230;. Met wit one of the sponsors, Mike Sharon from socialight, about his move from South Africa to NYC and the cultural differences. So, it&#8217;s not all tech jabber, which is way cool.</p>
<p>Anyway, meeting people at these events is perhaps my favorite part (there were so many, I&#8217;m not going to be able to link to everyone, sorry!) There’s always either some new ideas or refinements to existing ideas that come out the cross-pollenization.</p>
<p>Read on the <a title="Sessions and Explorations" href="http://www.chrispalle.com/wp-admin/iphonedevcampnyc-pt2-sessions-and-explorations" target="_self">Sessions</a>.</p>
<h2>Don&#8217;t Miss</h2>
<ul>
<li>Josh and Dave Keay<a href="http://magnetismstudios.com/">Magnetism Studios</a></li>
<li>Buzz Anderson <a href="http://log.scifihifi.com/">sci•fi hi•fi</a></li>
<li><a href="http://barcamp.org/">BarCamp.org</a></li>
<li><a href="http://uberthings.com/2008/04/06/camp-for-iphone-developers/">Mike Sharon</a></li>
<li><a href="http://graphpaper.com/">Chris Fahey</a></li>
<li><a href="http://qik.com/davetroy">Dave Troy has some video on Qik.com</a></li>
<li><a href="http://www.flickr.com/search/?q=iPhoneDevCampNYC&amp;w=all">Flickr Pics</a></li>
<li><a href="http://thenewhighstandard.com./">Rob Marini</a></li>
</ul>
<p>Please, by all means add more local groups, events, blog posts, reviews, software downloads, help files, (whatever) in the comments and I&#8217;ll update.</p>
<p>Oh, and anything you post elsewhere, use the tag iPhoneDevCampNYC (especially if you twitter it, use a hashtag)</p>
<p><!-- Technorati Tags Start --></p>
<p>Technorati Tags:<br />
<a href="http://technorati.com/tag/iPhoneDevCampNYC" rel="tag">iPhoneDevCampNYC</a>,<a href="http://technorati.com/tag/iPhone" rel="tag">iPhone</a>,<a href="http://technorati.com/tag/barcamp" rel="tag">barcamp</a>, <a href="http://technorati.com/tag/coworking" rel="tag">coworking</a>
</p>
<p><!-- Technorati Tags End --></p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=iPhoneDevCampNYC+pt.1+%E2%80%93+Oh%2C+the+People+You%E2%80%99ll+Meet+http%3A%2F%2Fchrispalle.com%2F%3Fp%3D115" title="Post to Twitter"><img class="nothumb" src="http://www.chrispalle.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a></p></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.chrispalle.com%2F2008%2F04%2F20%2Fiphonedevcampnyc-pt1-oh-the-people-youll-meet%2F&amp;title=iPhoneDevCampNYC%20pt.1%20%26%238211%3B%20Oh%2C%20the%20People%20You%26%238217%3Bll%20Meet" id="wpa2a_6"><img src="http://www.chrispalle.com/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.chrispalle.com/2008/04/20/iphonedevcampnyc-pt1-oh-the-people-youll-meet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of Silicon Alley Start-Ups</title>
		<link>http://www.chrispalle.com/2007/09/01/a-list-of-silicon-alley-start-ups/</link>
		<comments>http://www.chrispalle.com/2007/09/01/a-list-of-silicon-alley-start-ups/#comments</comments>
		<pubDate>Sat, 01 Sep 2007 00:08:27 +0000</pubDate>
		<dc:creator>chrispy</dc:creator>
				<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[NY Tech]]></category>
		<category><![CDATA[The Social Web]]></category>
		<category><![CDATA[start ups]]></category>

		<guid isPermaLink="false">http://www.chrispalle.com/?p=82</guid>
		<description><![CDATA[Hey! Silicon Valley, Pipe it Down Already Will Ya? We&#8217;re working over here! Thanks to our noisy friends in &#8220;The Valley,&#8221; we here in &#8220;The Alley,&#8221; need to crank it up a few decibels in the blogosphere. This is one of my contributions. Requirements for this list: must have started this business after the dot-com-kaboom [...]]]></description>
			<content:encoded><![CDATA[<p>Hey! Silicon Valley, Pipe it Down Already Will Ya? We&#8217;re working over here!</p>
<p>Thanks to our noisy friends in &#8220;The Valley,&#8221; we here in &#8220;The Alley,&#8221; need to crank it up a few decibels in the blogosphere. This is one of my contributions.</p>
<p><span id="more-82"></span></p>
<p>Requirements for this list: must have started this business after the dot-com-kaboom in 2001 and not been bought by Google, Yahoo!, MS (or any other Internet behemoth).</p>
<p><a href="http://www.tumblr.com/">tumblr</a> &#8211; Rapid-blogging</p>
<p><a href="http://www.etsy.com/ ">Etsy</a> &#8211; Artsy Ecommerce, Web 2.0 Style.</p>
<p><a href="http://www.oddcast.com/">Oddcast</a> &#8211; Talking Avatars</p>
<p><a href="http://www.instantinformation.com/">Instant Information</a> &#8211; Information Management</p>
<p><a href="http://adaptiveblue.com/">AdaptiveBlue</a> &#8211; Browsing enhancement for Firefox browsers.</p>
<p><a href="http://www.joost.com/">Joost</a> &#8211; Real TV with the Internet&#8217;s social spin.</p>
<p><a href="http://www.paltalk.com/">Paltalk</a> &#8211; Serious Video Instant Messaging</p>
<p><a href="http://www.clickable.com/">Clickable</a> &#8211; Online Advertising management</p>
<p><a href="http://www.tacoda.com/">Tacoda</a> &#8211; Targeted Marketing</p>
<p><a href="http://cooperbricolage.pbwiki.com/">CooperBricolage</a> &#8211; Co-Creative, Collaborating, Shared Workspace with Killer Cuban Cuisine.</p>
<p><a href="http://www.angelsoft.net/">Angelsoft, LLC</a> &#8211; CRM for Angel Investors</p>
<p><a href="http://www.rosenfeldmedia.com/">Rosenfeld Media</a> &#8211; Agile Book Publishing head up by Information Architecture Expert, Lou Rosenfield</p>
<p><a href="http://www.kickapps.com/">KickApps</a> &#8211; Social Apps made easy.</p>
<p><a href="http://www.alleyinsider.com/">Silicon Alley Insider</a> &#8211; Reporting on all the Action</p>
<p><a href="http://www.blip.tv/">blip.tv</a> &#8211; Helps to the budding videoblogger, podcaster, or Internet TV producer.</p>
<p><a href="http://vimeo.com/">Vimeo</a> &#8211; Video Sharing, for tight-knit groups OR the public at large.</p>
<p><a href="http://www.centernetworks.com/">CenterNetworks</a> &#8211; News and information for Web 2.0ish entrepreneurs and  start-ups.</p>
<p><a href="http://www.hatchedby.us/index.html">The Hatchery</a> &#8211; Bringing the spirit of innovation through collaboration to NYC.</p>
<p><a href="http://www.swatchbox.com/">swatchbox</a> &#8211; Design tools to help contractors, interior decorators, retail stores, and homeowners build their projects. (spotlight project: <a href="http://www.designmyroom.com/">DesignMyRoom.com</a>)</p>
<p>Got somebody you want to ad? Go for it, contact me with a description.</p>
<p>On this list and want more info here? Send it in.</p>
<p>I goofed something up? Not the first time. Just let me know, and I&#8217;ll look into it.</p>
<p>I started a ma.gnolia group too. <a title="Visit Silicon Alley at Ma.gnolia" href="http://ma.gnolia.com/groups/silicon-alley-2-0"><img src="http://ma.gnolia.com/images/badges/magnolia_badge_group.gif" alt="View Silicon Alley on Ma.gnolia" /></a></p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=List+of+Silicon+Alley+Start-Ups+http%3A%2F%2Fchrispalle.com%2F%3Fp%3D82" title="Post to Twitter"><img class="nothumb" src="http://www.chrispalle.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a></p></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.chrispalle.com%2F2007%2F09%2F01%2Fa-list-of-silicon-alley-start-ups%2F&amp;title=List%20of%20Silicon%20Alley%20Start-Ups" id="wpa2a_8"><img src="http://www.chrispalle.com/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.chrispalle.com/2007/09/01/a-list-of-silicon-alley-start-ups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Blue Flavor Announces iPhone Apps Service &#8211; Leaflets</title>
		<link>http://www.chrispalle.com/2007/07/16/blue-flavor-announces-iphone-apps-service-leaflets/</link>
		<comments>http://www.chrispalle.com/2007/07/16/blue-flavor-announces-iphone-apps-service-leaflets/#comments</comments>
		<pubDate>Mon, 16 Jul 2007 15:14:07 +0000</pubDate>
		<dc:creator>chrispy</dc:creator>
				<category><![CDATA[Mobile Web]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.chrispalle.com/?p=68</guid>
		<description><![CDATA[Wow. Here&#8217;s an interestingly bold move by Seattle-based mobile Web design firm, Blue Flavor. Brian Fling, CEO, announced a sweet collection of Web 2.0 favorites implemented for iPhone-iddy goodness. Check the discussion Here&#8217;s the site: Blue Flavor Leaflets Frankly, it&#8217;s a tight little app collection. Just as Fling noted that the iPhone has set the [...]]]></description>
			<content:encoded><![CDATA[<p>Wow. Here&#8217;s an interestingly bold move by Seattle-based mobile Web design firm, Blue Flavor. Brian Fling, CEO, announced a sweet collection of Web 2.0 favorites implemented for iPhone-iddy goodness.</p>
<p>Check the <a href="http://tech.groups.yahoo.com/group/mobiledesign/message/515">discussion</a> Here&#8217;s the site: <a href="http://www.getleaflets.com" title="Blue Flavor's Leaflets">Blue Flavor Leaflets</a></p>
<p>Frankly, it&#8217;s a tight little app collection. Just as Fling noted that the iPhone has set the bar for what Mobile Design can be, Blue Flavor set a pretty good precedence for just what that said design could be like.</p>
<div class="tweetthis" style="text-align:left;"><p> <a target="_blank" rel="nofollow" class="tt" href="http://twitter.com/intent/tweet?text=Blue+Flavor+Announces+iPhone+Apps+Service+%E2%80%93+Leaflets+http%3A%2F%2Fchrispalle.com%2F%3Fp%3D68" title="Post to Twitter"><img class="nothumb" src="http://www.chrispalle.com/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter.png" alt="Post to Twitter" /></a></p></div><p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.chrispalle.com%2F2007%2F07%2F16%2Fblue-flavor-announces-iphone-apps-service-leaflets%2F&amp;title=Blue%20Flavor%20Announces%20iPhone%20Apps%20Service%20%26%238211%3B%20Leaflets" id="wpa2a_10"><img src="http://www.chrispalle.com/wp-content/plugins/add-to-any/share_save_171_16.gif" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.chrispalle.com/2007/07/16/blue-flavor-announces-iphone-apps-service-leaflets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

