<?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>AmberWeinberg.com &#187; reviews</title> <atom:link href="http://www.amberweinberg.com/tag/reviews/feed/" rel="self" type="application/rss+xml" /><link>http://www.amberweinberg.com</link> <description>Design, Development and Freelance Articles and Tutorials</description> <lastBuildDate>Mon, 06 Feb 2012 21:09:07 +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>January&#8217;s 12412: Researching LESS &amp; SASS</title><link>http://www.amberweinberg.com/januarys-12412-researching-less-sass/</link> <comments>http://www.amberweinberg.com/januarys-12412-researching-less-sass/#comments</comments> <pubDate>Tue, 31 Jan 2012 10:55:03 +0000</pubDate> <dc:creator>Amber Weinberg</dc:creator> <category><![CDATA[blog]]></category> <category><![CDATA[development]]></category> <category><![CDATA[CSS]]></category> <category><![CDATA[javascript]]></category> <category><![CDATA[preprocessor]]></category> <category><![CDATA[reviews]]></category><guid
isPermaLink="false">http://www.amberweinberg.com/?p=5292</guid> <description><![CDATA[My first 12412 project was to research and learn about SASS. After the recommendation from several people, I also decided to check into LESS. I&#8217;d been hearing a lot about the two techniques and was quite skeptical &#8211; in fact it seems I&#8217;m often skeptical of new things out on the web. Most frameworks, shims [...]]]></description> <content:encoded><![CDATA[<p>My first <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovLzEyNDEyLm9yZw==">12412</a> project was to research and learn about<a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3Nhc3MtbGFuZy5jb20v" target=\"_blank\"> SASS</a>. After the recommendation from several people, I also decided to check into <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2xlc3Njc3Mub3JnLw==" target=\"_blank\">LESS</a>. I&#8217;d been hearing a lot about the two techniques and was quite skeptical &#8211; in fact it seems I&#8217;m often skeptical of new things out on the web. Most frameworks, shims and other &#8220;add-on&#8221;s are only a passing faze and tend to do more harm than good &#8211; and so with some trepidations I jumped in.</p><h3>What is SASS &amp; LESS?</h3><p>Both SASS &amp; LESS are CSS preprocessors, basically they&#8217;re created to help you code CSS quicker by allowing the use of basic programming principles. Both allow you to use variables, mixins, nested elements, functions and operators.</p><p>You basically put your CSS into a special file, and then when finished, your CSS is run through the preprocessor and it kicks out &#8220;normal&#8221; CSS. Huh.</p><p>I found LESS to be a lot easier to understand and install, although both of them worked pretty much the same way. You&#8217;re able to create variables within your CSS so you can reuse certain elements (for example, a hex code), and if it needs changing, you only have to do it in one place. Here&#8217;s where my inner-awesome-developer-sense kicks in. You can pretty much already do this with a basic class.</p><p>Another major feature in both SASS and LESS is the use of nesting, where you can &#8220;save&#8221; on repeating code by indenting elements instead of having to retype them, for example, if you indented p {} underneath an id of #header, then the CSS that&#8217;s printed out is actually #header p {}</p><p>While this seems pretty cool at first, I can easily see this as becoming cumbersome and crazy really quickly. When you&#8217;re not paying attention to what&#8217;s being outputted, your&#8217;re more likely to be lax in your coding.</p><h3>Important Questions</h3><p>I had several important questions before and after I read up on the technologies, and most of them really weren&#8217;t answered by any of the articles I read:</p><ol><li>What happens if another developer needs to edit the CSS and doesn&#8217;t know or realize a preprocessor is being used? How do you sync the two?</li><li>When no longer writing CSS yourself, how do you control the structure and organization of the code? How do you ensure you&#8217;re optimizing it correctly?</li><li>What happens if JS is down?</li><li>Does it work with one line CSS?</li></ol><p>All in all, I don&#8217;t think I&#8217;ll be using either SASS or LESS. Installation time, upkeep and the fact that it ruins the simplicity of CSS will keep me away. If you&#8217;re a developer who&#8217;s spent a lot of time optimizing your code and really learning the in&#8217;s of CSS (not just top level stuff), then you&#8217;ll find this pretty useless, as you already can quickly do the type of code it spits out.</p><p>I&#8217;m also worried on our recent reliance on Javascript and the trend of forcing languages and browsers to do something they&#8217;re not meant to do. It wasn&#8217;t even a year ago that everyone was worried about best practices and making sure we didn&#8217;t rely on Javascript for anything but the beauty layer. Now this is one more thing that can break.</p><p>Some of the features, like mixins and operators actually made the code a lot more convoluted an jumbled, and seemed to take a lot more code than if you were just to type it out correctly in the first place. I also don&#8217;t see the point of operators &#8211; CSS isn&#8217;t a programming language and you can&#8217;t dynamically update styles so why not just type in the correct number in the first place?</p><h3>Final Thoughts</h3><p>Perhaps I&#8217;m wrong and you disagree &#8211; maybe you think SASS or LESS is the greatest thing since sliced bread. It&#8217;s just not for me. I would love your thoughts on it though!</p> <img
src="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=5292" width="1" height="1" style="display: none;" />]]></content:encoded> <wfw:commentRss>http://www.amberweinberg.com/januarys-12412-researching-less-sass/feed/</wfw:commentRss> <slash:comments>15</slash:comments> </item> <item><title>12412 &#8211; Experience and Learn 12 New Web Technologies in 12 Months</title><link>http://www.amberweinberg.com/12412-experience-and-learn-12-new-web-technologies-in-12-months/</link> <comments>http://www.amberweinberg.com/12412-experience-and-learn-12-new-web-technologies-in-12-months/#comments</comments> <pubDate>Wed, 04 Jan 2012 14:04:25 +0000</pubDate> <dc:creator>Amber Weinberg</dc:creator> <category><![CDATA[blog]]></category> <category><![CDATA[development]]></category> <category><![CDATA[business]]></category> <category><![CDATA[CSS3]]></category> <category><![CDATA[HTML5]]></category> <category><![CDATA[improvement]]></category> <category><![CDATA[productivity]]></category> <category><![CDATA[reviews]]></category> <category><![CDATA[strategy]]></category> <category><![CDATA[wordpress]]></category><guid
isPermaLink="false">http://www.amberweinberg.com/?p=5208</guid> <description><![CDATA[I stumbled across 12412.org when looking at Paul Davis&#8217;s work. Consisting of three developers including Paul, Anthony Killeen, and Stephen Fulljames, 12412 aims to log their activities throughout 2012 as they choose a new technology or technique every month to learn and play with. I thought this was a fantastic idea. I&#8217;ve had an insanely [...]]]></description> <content:encoded><![CDATA[<p><img
class="alignleft size-large wp-image-5226" title="920701-11201244524am" src="http://www.amberweinberg.com/wp-content/uploads/2011/12/920701-11201244524am.png" alt="" /></p><p>I stumbled across <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovLzEyNDEyLm9yZy8=">12412.org</a> when looking at <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=cGF1bGFkYW1kYXZpcy5jb20=" target=\"_blank\">Paul Davis&#8217;s</a> work. Consisting of three developers including Paul, <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL21ycXdlc3QuY28udWs=" target=\"_blank\">Anthony Killeen</a>, and <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2Z1bGxqYW1lcy5uZXQ=" target=\"_blank\">Stephen Fulljames</a>, 12412 aims to log their activities throughout 2012 as they choose a new technology or technique every month to learn and play with.</p><p>I thought this was a fantastic idea. I&#8217;ve had an insanely busy 2011 and haven&#8217;t spent much time learning new things like I should. What better way than to make a goal to learn something new every month? I thought I&#8217;d take their idea and list out a few items of my own that I want to do some research on and learn.</p><h3>January</h3><p>January&#8217;s going to be a short and busy month for me, due to moving across the seas to London. So I thought I&#8217;d start the year off a bit easy by doing some research on SASS. I&#8217;m very skeptical on this technique, but promised to at least read about it.</p><h3>February</h3><p>Inspired by <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2plZmZjcm9mdC5jb20v" target=\"_blank\">Jeff Croft&#8217;s tumblog</a>, I want to make my own to house all of my social media updates. I plan to incorporate Twitter, Instagram, Ravelry, Pinterest, Goodreads, Dribbble, Foursuare and Codesnippit. Building this will force me to learn how to work with APIs, while extending my knowledge of PHP in tying them together.</p><h3>March</h3><p>I plan on finishing my Objective-C book that I&#8217;ve been working on for so long. After that, I need to make a decision whether to give iPhone development some serious commitment, or move on.</p><h3>April</h3><p>Build a premium WordPress theme with admin panels. I haven&#8217;t had a chance to build any custom admin panels before, so this will be another great learning experience.</p><h3>May</h3><p>Again I want to further my knowledge of PHP and create some kind of user submission gallery site. I&#8217;m thinking along the lines of responsive and CSS3 submissions.</p><h3>2012</h3><p>That&#8217;s all I&#8217;m planning for now. Who knows what the next few months will bring in our world. What do you think about 12412?</p> <img
src="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=5208" width="1" height="1" style="display: none;" />]]></content:encoded> <wfw:commentRss>http://www.amberweinberg.com/12412-experience-and-learn-12-new-web-technologies-in-12-months/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Review of CSS For Print Designers by JD Graffam</title><link>http://www.amberweinberg.com/review-of-css-for-print-designers-by-jd-graffam/</link> <comments>http://www.amberweinberg.com/review-of-css-for-print-designers-by-jd-graffam/#comments</comments> <pubDate>Mon, 12 Dec 2011 16:11:01 +0000</pubDate> <dc:creator>Amber Weinberg</dc:creator> <category><![CDATA[blog]]></category> <category><![CDATA[development]]></category> <category><![CDATA[CSS]]></category> <category><![CDATA[CSS3]]></category> <category><![CDATA[HTML]]></category> <category><![CDATA[HTML5]]></category> <category><![CDATA[reviews]]></category><guid
isPermaLink="false">http://www.amberweinberg.com/?p=5168</guid> <description><![CDATA[I met JD Graffam a few years back at Barcamp Memphis, though I doubt he remembers me. So I was fairly surprised to see his name when I picked up a copy of CSS for Print Designers. His book, targeted obviously to code newbies with a background of print design, was something I wouldn&#8217;t normally [...]]]></description> <content:encoded><![CDATA[<p><a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5hbWF6b24uY29tL2dwL3Byb2R1Y3QvMDMyMTc2NTg4NS9yZWY9YXNfbGlfc3NfdGw/aWU9VVRGOCZhbXA7dGFnPXBvcnRvZmFtYmV3ZWktMjAmYW1wO2xpbmtDb2RlPWFzMiZhbXA7Y2FtcD0xNzg5JmFtcDtjcmVhdGl2ZT0zOTA5NTcmYW1wO2NyZWF0aXZlQVNJTj0wMzIxNzY1ODg1JnF1b3Q7IHRhcmdldD0mcXVvdDtfYmxhbms="><img
class="alignleft size-medium wp-image-5171" title="41M9nWaLYCL" src="http://www.amberweinberg.com/wp-content/uploads/2011/12/41M9nWaLYCL-300x300.jpg" alt="" width="300" height="300" /></a>I met JD Graffam a few years back at Barcamp Memphis, though I doubt he remembers me. So I was fairly surprised to see his name when I picked up a copy of <a
title=\"Referral link to Amazon book\" href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5hbWF6b24uY29tL2dwL3Byb2R1Y3QvMDMyMTc2NTg4NS9yZWY9YXNfbGlfc3NfdGw/aWU9VVRGOCZhbXA7dGFnPXBvcnRvZmFtYmV3ZWktMjAmYW1wO2xpbmtDb2RlPWFzMiZhbXA7Y2FtcD0xNzg5JmFtcDtjcmVhdGl2ZT0zOTA5NTcmYW1wO2NyZWF0aXZlQVNJTj0wMzIxNzY1ODg1" target=\"_blank\">CSS for Print Designers</a>. His book, targeted obviously to code newbies with a background of print design, was something I wouldn&#8217;t normally read, but since I never pass up a book to read, I thought I&#8217;d give it a chance.</p><p><a
title=\"Referral link to Amazon book\" href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5hbWF6b24uY29tL2dwL3Byb2R1Y3QvMDMyMTc2NTg4NS9yZWY9YXNfbGlfc3NfdGw/aWU9VVRGOCZhbXA7dGFnPXBvcnRvZmFtYmV3ZWktMjAmYW1wO2xpbmtDb2RlPWFzMiZhbXA7Y2FtcD0xNzg5JmFtcDtjcmVhdGl2ZT0zOTA5NTcmYW1wO2NyZWF0aXZlQVNJTj0wMzIxNzY1ODg1" target=\"_blank\">CSS for Print Designers</a> was a quick read, at only 167 pages long in full color and large type. It sticks to the fairly basics, assuming you&#8217;ve absolutely never seen CSS and HTML before. I like the fact that it touches on the basics of HTML and semantics before jumping over to CSS. I think a lot of non-coders, especially print-turned-web designers, are lacking in proper HTML skills, and this gives you a good foundation to start on.</p><p>While the book certainly won&#8217;t make you an expert by far, it gets you started and is a good primer to learning how to read the code. I think it&#8217;s a great read before you pick up a more comprehensive coding book, as it will help to assage the anxiety one gets while staring at a bunch of gooble-de-gook (which I think aptly describes our code, don&#8217;t you?).</p><p>While the book does have many pluses, it also came up short for me in a lot of ways. The fact that it is so short and broad is also a negative. JD mentions a lot of ideas and pieces of code in the book, but then tells you to just &#8220;google it&#8221; instead of explaining. I think he should&#8217;ve either briefly explained the item or skipped mentioning it at all.</p><p>I also disagreed with some of the coding techniques he used, but that was more personal and since we all eventually develop our own way of coding, I was able to overlook those.</p><p>I recommend the book only if you&#8217;re an absolute beginner in terms of coding to the web. If you know basic HTML and CSS already, skip this one. <a
title=\"Referral link to Amazon book\" href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5hbWF6b24uY29tL2dwL3Byb2R1Y3QvMDMyMTc2NTg4NS9yZWY9YXNfbGlfc3NfdGw/aWU9VVRGOCZhbXA7dGFnPXBvcnRvZmFtYmV3ZWktMjAmYW1wO2xpbmtDb2RlPWFzMiZhbXA7Y2FtcD0xNzg5JmFtcDtjcmVhdGl2ZT0zOTA5NTcmYW1wO2NyZWF0aXZlQVNJTj0wMzIxNzY1ODg1" target=\"_blank\">You can get it on Amazon for $19.49</a> if interested.</p> <img
src="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=5168" width="1" height="1" style="display: none;" />]]></content:encoded> <wfw:commentRss>http://www.amberweinberg.com/review-of-css-for-print-designers-by-jd-graffam/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Update 2011 Conference Recap</title><link>http://www.amberweinberg.com/update-2011-conference-recap/</link> <comments>http://www.amberweinberg.com/update-2011-conference-recap/#comments</comments> <pubDate>Fri, 09 Sep 2011 17:27:11 +0000</pubDate> <dc:creator>Amber Weinberg</dc:creator> <category><![CDATA[blog]]></category> <category><![CDATA[development]]></category> <category><![CDATA[CSS]]></category> <category><![CDATA[CSS3]]></category> <category><![CDATA[design]]></category> <category><![CDATA[events]]></category> <category><![CDATA[HTML]]></category> <category><![CDATA[HTML5]]></category> <category><![CDATA[iphone]]></category> <category><![CDATA[mobile]]></category> <category><![CDATA[reviews]]></category><guid
isPermaLink="false">http://www.amberweinberg.com/?p=4648</guid> <description><![CDATA[I spent last week in beautiful England attending the Update 2011 Conference, thanks to all of your awesome donations last month. I wanted to make sure that I jotted as many notes and photos as possible for those of you who were unable to make the conference. The conference, put on by Aral Balkan, was [...]]]></description> <content:encoded><![CDATA[<p>I spent last week in beautiful England attending the Update 2011 Conference, thanks to all of your awesome donations last month. I wanted to make sure that I jotted as many notes and photos as possible for those of you who were unable to make the conference.</p><p>The conference, put on by <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3R3aXR0ZXIuY29tL2FyYWw=" target=\"_blank\">Aral Balkan</a>, was fantastic. I finally got to meet <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3R3aXR0ZXIuY29tL3Nhenp5" target=\"_blank\">Sarah Parmenter</a>, <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3R3aXR0ZXIuY29tL2FkYWN0aW8=" target=\"_blank\">Jeremy Keith</a>, <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3R3aXR0ZXIuY29tL2hlbGxvZ2VyaQ==" target=\"_blank\">Geri Coady</a> and <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3R3aXR0ZXIuY29tL3JlbQ==" target=\"_blank\">Remy Sharp</a>. I also made some new friends, <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3R3aXR0ZXIuY29tL2xhdXJha2FsYmFn" target=\"_blank\">Laura Kalba</a>g and <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3R3aXR0ZXIuY29tL2NyaWJibGU=" target=\"_blank\">Scott Coello</a>. I also enjoyed seeing the Clearleft office in person and having a long tea break discussing politics and religion with Aral.</p><p>I do admit that I missed the first set of talks due to the airline &#8220;forgetting&#8221; to put some luggage on the plane and the hubby not having anything to wear. Luckily, we made it there by the first break.</p><p>Let&#8217;s get started on the talks, shall we?</p><h3>One Web by Jeremy Keith</h3><p>I&#8217;ve read a lot of books by Jeremy, but never heard him speak until this conference. The man is as stubborn and loud as me and I loved it. His talk was very passionate and I was able to follow along. At one point, he even called iOS developers &#8220;fucking peasants&#8221;. It was fantastic.</p><p>Jeremy stated that the web was created to be open, and unlike anything else, you didn&#8217;t need permission from anyone to create content on it and that anything could be published. The links were open and you could link from one site to another without asking anyone for permission. The internet&#8217;s primary design was universality and was meant to be used on any device or with any handicap.</p><p>The problem with native app design is that it takes us back 20 years before the web was born. Native apps may be great, but how long will those resources lasts? When you create content on the web, it lasts for forever, as long as you pay for hosting, but it&#8217;s harder to keep content alive when it&#8217;s tied to a specific device. All a web needs is HTML, HTTP and a URL.</p><p>Back when the web was new, it&#8217;s competition came from CD-ROMs like Microsoft Incarta, but the web was able to succeed because of the links and it&#8217;s updatability. Today&#8217;s competition comes from apps, but it can be argued that because of links, web is really the &#8220;killer app&#8221;.</p><p>The internet is real time communication and it threatens publishers and content controllers like magazines, news providers, music and film makers because it allows anyone to publish. These outlets are excited about the popularity of native apps because it brings back control and exclusivity.</p><p>What is the web for? For for fun? For users? Merely to make money (which Jeremy argued, is no better than a prostitute)? The web is meant for humans in order to contribute to a better world.</p><p>Steve Jobs once said that you don&#8217;t need to be permission to be awesome &#8211; but you do with native apps.</p><h3>Geek Ninja Battle &#8211; or Jeremy Keith vs. Everyone Else</h3><p>This WAS the best talk of all, which was more like a debate between Jeremy Keith and everyone else on the panel. The other members were Aral, Kevin, Martin, Matt and Seb. Basically, the battle was about which is better, native or web apps. Jeremy being a hardcore web-only kind of guy, basically ended up arguing with everyone, especially Aral, and there was seriously a part where I though punches were about to be thrown. It truly was a battle and quite entertaining (and informative of course). It&#8217;s interesting to see how we all geek out over little stuff like this that the rest of the world never thinks or cares about.</p><p>Aral asked Martin, who works at Microsoft, why we should use their new Windows phone. Honestly, I thought the guy gave a pretty weak answer, which basically boiled down to &#8220;you can build apps quickly and we&#8217;re a big company&#8221;&#8230;riiiight&#8230;..</p><p>Matt, and iOS developer, thought it was important to just make the commitment to get something out and that it was more about delivery than the type of platform you used. He cited the example about how when you subscribe to a newspaper on the Kindle, it&#8217;s automatically delivered every morning.</p><p>Kevin, a Titanium developer, suggested that native was better, because in web it&#8217;s difficult to integrate with the phone&#8217;s system and all of its features. He suggested using something like Titanium, which is a cross-platform tool and allows you to be more productive by creating one app for all platforms.</p><p>Jeremy Keith said it was important to not focus on one platform and limit your user base, but to create a progressive website that can be accessed by everyone, even crappy browsers (at this, he pointed to Martin, the Microsoft guy). Jeremy said that by creating a baseline that worked for all devices and browsers and then enhancing it for a few, it gave you a competitive advantage against those that created an app for only a select few. He also stated that what you&#8217;re getting natively on apps now, is what will soon be the future of the web. He also stated that we need to stop trying to make web apps look native, in order to avoid confusion.</p><p>Seb agreed with Jeremy Keith&#8217;s view that progressive enhancement was a great tool for mobile, but that it&#8217;s limited and not for interactive apps.</p><p>At this point, it was less about questions from Aral, and more about a huge debate between Jeremy and everyone else. Aral and Jeremy debated about optimising for features, not devices, to which Jeremy disagreed with both. Aral brought up the issue of making money from web apps, which is not as easy to do as native apps are. Jeremy stated that making money this way is outdated. Not sure how I feel about that!</p><h3>Angry Exorcist &#8211; Seb Ly Delisle</h3><p>This talk was a step-by-step on how to make an Angry Birds clone in under 30 minutes using the Corona SDK. You can find the source code at <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5zZWIubHk=">Seb&#8217;s website</a> and <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy50d2l0dGVyLmNvbS9zZWJfbHk=">follow Seb on Twitter</a> to find out more about this hilarious project. Hopefully, he&#8217;ll post a video of how he did it, it was fantastic!</p><h3>Design Challenges &#8211; Sarah Parmenter</h3><p>Sarah Parmenter laid out 10 design challenges that you&#8217;ll face as an iOS designer.</p><ol><li><strong>Fluid design</strong> &#8211; She stated how important it was to make sure your designs are able to be stretched and to watch out for gradients and the slicing of buttons and background elements.</li><li><strong>Use familiar behaviors</strong> &#8211; A great touch reference can be found at <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5sdWtldy5jb20=">Luke W&#8217;s website</a>.</li><li><strong>Clean up your environment</strong> &#8211; Properly name your groups and layers, keep folders neat and keep a scratch folder for all the elements developer&#8217;s will need, like buttons.</li><li><strong>Progressive disclosure</strong> &#8211; Hide actions that don&#8217;t need to be shown. Clients often don&#8217;t like this, but users do. For example, the pull down to refresh action.</li><li><strong>Tap targets</strong> &#8211; Make sure they&#8217;re big enough for fingers to push without accidentally hitting something else. The minimum hit target is 44&#215;22 pixels.</li><li><strong>Orientations</strong> &#8211; Users have a preference for using either landscape or portrait, so don&#8217;t force them to use one or another. Make sure your app is flexible and can adapt. A popular layout technique is using 3 columns in landscape mode and 2 in portrait.</li><li><strong>Keep designs relevant to its OS.</strong></li><li><strong>Beyond human interface guides</strong> &#8211; Know the limits of the OS, even the smallest actions and gestures matter.</li><li><strong>Retina display</strong> &#8211; Don&#8217;t ignore the retina display, it only takes basic math to do. A trick is to use shapes in Photoshop, as this allows you to resize the PSD easily without distorting it.</li><li><strong>Automator</strong> &#8211; There&#8217;s an add on you can find online for adding the suffix to the file for the retina display to work.</li></ol><h3>Arse Over Tit or &#8220;How designers/developers have perfected the art of making things backwards&#8221; &#8211; Relly</h3><p>I wasn&#8217;t too big a fan of this talk, I&#8217;m not really interested too much in content myself and Relly talked much too quickly so it was really hard to understand her.</p><p>Relly noted that content strategists normally don&#8217;t come into a project until the end. She asked, &#8220;What if books were made like apps?&#8221; You would first decide to make a book, choose a format, design a cover, pick out fonts, figure out the type of paper you&#8217;d want to use, pick a title&#8230;.and then come up with the subject and content of the actual book??</p><p>You can&#8217;t make a hit app, but you can think up a plan for one. You&#8217;re only as good as the components you make and writing doesn&#8217;t scale. Relly suggested breaking up the large content projects into smaller pieces in order to get through them. She reminded us that the plan is not the work.</p><h3>Ronald Wayne</h3><p>Apparently there&#8217;s a third founder of Apple&#8211;I didn&#8217;t know that, did you? He met Steve Jobs while working at Atari (and Steve wrote my favorite game, Breakout). Ronald has never owned any Apple product, so he was present with an iPad 2 by the Update crew.</p><blockquote><p>&#8220;We are designing for humans and they are central to what we do&#8221;</p></blockquote><h3>Beyond Delicious &#8211; Joachim Bondo</h3><p>Delicious apps are those that devs put extra work into the UI. They&#8217;re the apps that users recommend, love and purchase.</p><ol><li><strong>Make code more beautiful than the UI.</strong> Delicious apps go beyond skin deep and into the code.</li><li><strong>Under-state, Over-deliver.  </strong>Move focus from the user interface to the user experience.</li><li><strong>Quality takes time.</strong> Respect users by taking your time in development.</li></ol><h3>The Digital Nature &#8211; Anna Debenham</h3><p>Studies show that students who use tech are better with their studies. Unfortunately, schools are more likely to over-monitor the students. For example, a teacher couldn&#8217;t show his students the &#8220;view source&#8221; feature in the student library  because it had been blocked by the school for &#8220;security risks&#8221;. Over monitoring of students pushes them to hack their way around the systems.</p><p>Computer science isn&#8217;t taught as a standard in the UK, instead they teach how to use the software, but not how it&#8217;s made. Interest in software development is lower than ever. Today&#8217;s software and hardware focuses on hiding its design, because it&#8217;s thought to be too scary for users.</p><p>You can view the slides of this talk at <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL21hYmFuLmNvLnVrL2Ru" target=\"_blank\">maban.co.uk/dn</a></p><p>&nbsp;</p><h3>Geek Ninja Battle 2 &#8211; Design Challenges</h3><p>Consisted of Joachim, Cennydd, Relly, Sarah, Remy and Aral.</p><p>Aral asked, &#8220;What are some of the unique design challenges to mobile?&#8221; Sarah answered that less is more and you should try to strip out the process to only three or four screens to make it easier for the user. Cennydd asked, &#8220;What do you mean by mobile? It could be the property of the device or user. Is the person using his iPhone at home mobile, or is the person using his laptop on a train mobile?&#8221;</p><p>Aral then asked, &#8220;What about ergonomics then?&#8221; Cennydd replied that ergonomics are limited, there&#8217;s a big difference between touch screen and using a keyboard and mouse. Anything more than one touch on a real mobile user is difficult to do. Joachim said to always strive for simplicity. Only put five buttons or less in the toolbar (which is in the Apple user guide).</p><p>&#8220;What are some copy restrictions?&#8221;, Aral asked. Relly said that the &#8220;people don&#8217;t read&#8221; belief actually depends on the context. Consider what the main task of what they&#8217;re doing is and how to let them get to that chunk of information. Mobile is &#8220;not what we can cut out, but what makes the most sense&#8221; to show.</p><p>Aral turned to Remy and asked him what some of the development challenges were? Remy said that if the app isn&#8217;t designed to be on the desktop, then it&#8217;s designed to be mobile. He recommended using libraries like jQuery mobile for quicker developer, although he also suggested using barebones development. If he can use a library to accomplish what he&#8217;s doing quickly though, he&#8217;ll use that. Apps should be as small and lean as possible. Cennydd said context is king in theory, but difficult to figure out in reality. Only way to figure out is by extensive researching.</p><h3>The Things of the Future &#8211; Cennydd  Bowles</h3><p>Many of the things of today don&#8217;t do anything. We plan for obsolesce now and we create a lot of crap and artificial demand. We;ve become complacent and allow advertisers to talk to us like idiots, making a dilution of value.</p><p>The audience is changing, however, only 12% of consumers have high opinions of big business. People are now more connected and can find out the truth about your products easily. They&#8217;re no longer satisfied with the consumer role. The web builds societies, educates and frees us.</p><p>The things of the future will:</p><ul><li>Be human and consider how products talk with the user.</li><li>Mobile phones will have sensory input</li><li>More clues for designers to interact with</li><li>Tackle wicked problems like energy consumption, health and financial management.</li><li>Disrupt by uprooting existing way of doing things</li></ul><p>Sites are now cross-channel where media, form and function are now separated. Users don&#8217;t see why they should be different from being in-store to on the web or in an app.</p><p>Designers should now forced to think about the entire lifestyle of an item and create fewer, better things.</p><h3>Photos from the Update Conference &amp; Royal Dinner</h3><a
href='http://www.amberweinberg.com/update-2011-conference-recap/dscn0878/' title='DSCN0878'><img
width="150" height="150" src="http://www.amberweinberg.com/wp-content/uploads/2011/09/DSCN0878-150x150.jpg" class="attachment-thumbnail" alt="DSCN0878" title="DSCN0878" /></a> <a
href='http://www.amberweinberg.com/update-2011-conference-recap/dscn0881/' title='DSCN0881'><img
width="150" height="150" src="http://www.amberweinberg.com/wp-content/uploads/2011/09/DSCN0881-150x150.jpg" class="attachment-thumbnail" alt="DSCN0881" title="DSCN0881" /></a> <a
href='http://www.amberweinberg.com/update-2011-conference-recap/dscn0882/' title='DSCN0882'><img
width="150" height="150" src="http://www.amberweinberg.com/wp-content/uploads/2011/09/DSCN0882-150x150.jpg" class="attachment-thumbnail" alt="DSCN0882" title="DSCN0882" /></a> <a
href='http://www.amberweinberg.com/update-2011-conference-recap/dscn0883/' title='DSCN0883'><img
width="150" height="150" src="http://www.amberweinberg.com/wp-content/uploads/2011/09/DSCN0883-150x150.jpg" class="attachment-thumbnail" alt="DSCN0883" title="DSCN0883" /></a> <a
href='http://www.amberweinberg.com/update-2011-conference-recap/dscn0884/' title='DSCN0884'><img
width="150" height="150" src="http://www.amberweinberg.com/wp-content/uploads/2011/09/DSCN0884-150x150.jpg" class="attachment-thumbnail" alt="DSCN0884" title="DSCN0884" /></a> <a
href='http://www.amberweinberg.com/update-2011-conference-recap/dscn0885/' title='DSCN0885'><img
width="150" height="150" src="http://www.amberweinberg.com/wp-content/uploads/2011/09/DSCN0885-150x150.jpg" class="attachment-thumbnail" alt="DSCN0885" title="DSCN0885" /></a> <a
href='http://www.amberweinberg.com/update-2011-conference-recap/dscn0887/' title='DSCN0887'><img
width="150" height="150" src="http://www.amberweinberg.com/wp-content/uploads/2011/09/DSCN0887-150x150.jpg" class="attachment-thumbnail" alt="DSCN0887" title="DSCN0887" /></a> <a
href='http://www.amberweinberg.com/update-2011-conference-recap/dscn0888/' title='DSCN0888'><img
width="150" height="150" src="http://www.amberweinberg.com/wp-content/uploads/2011/09/DSCN0888-150x150.jpg" class="attachment-thumbnail" alt="DSCN0888" title="DSCN0888" /></a> <a
href='http://www.amberweinberg.com/update-2011-conference-recap/img_0547/' title='IMG_0547'><img
width="150" height="150" src="http://www.amberweinberg.com/wp-content/uploads/2011/09/IMG_0547-150x150.jpg" class="attachment-thumbnail" alt="IMG_0547" title="IMG_0547" /></a> <a
href='http://www.amberweinberg.com/update-2011-conference-recap/img_0548/' title='IMG_0548'><img
width="150" height="150" src="http://www.amberweinberg.com/wp-content/uploads/2011/09/IMG_0548-150x150.jpg" class="attachment-thumbnail" alt="IMG_0548" title="IMG_0548" /></a> <a
href='http://www.amberweinberg.com/update-2011-conference-recap/img_0549/' title='IMG_0549'><img
width="150" height="150" src="http://www.amberweinberg.com/wp-content/uploads/2011/09/IMG_0549-150x150.jpg" class="attachment-thumbnail" alt="IMG_0549" title="IMG_0549" /></a> <a
href='http://www.amberweinberg.com/update-2011-conference-recap/img_0550/' title='IMG_0550'><img
width="150" height="150" src="http://www.amberweinberg.com/wp-content/uploads/2011/09/IMG_0550-150x150.jpg" class="attachment-thumbnail" alt="IMG_0550" title="IMG_0550" /></a> <a
href='http://www.amberweinberg.com/update-2011-conference-recap/img_0551/' title='IMG_0551'><img
width="150" height="150" src="http://www.amberweinberg.com/wp-content/uploads/2011/09/IMG_0551-150x150.jpg" class="attachment-thumbnail" alt="IMG_0551" title="IMG_0551" /></a><p><a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3d3dy5hbWJlcndlaW5iZXJnLmNvbS9vbi1vdXItd2F5LXRvLXRoZS11ay8=" target=\"_blank\">I again want to thank all of you who made it possible for me to come here!</a> It was fantastic!</p> <img
src="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=4648" width="1" height="1" style="display: none;" />]]></content:encoded> <wfw:commentRss>http://www.amberweinberg.com/update-2011-conference-recap/feed/</wfw:commentRss> <slash:comments>13</slash:comments> </item> <item><title>Think Vitamin Membership Review–Great Way to Expand Your Web Knowledge</title><link>http://www.amberweinberg.com/think-vitamin-membership-review%e2%80%93great-way-to-expand-your-web-knowledge/</link> <comments>http://www.amberweinberg.com/think-vitamin-membership-review%e2%80%93great-way-to-expand-your-web-knowledge/#comments</comments> <pubDate>Tue, 26 Jul 2011 13:30:33 +0000</pubDate> <dc:creator>Amber Weinberg</dc:creator> <category><![CDATA[blog]]></category> <category><![CDATA[development]]></category> <category><![CDATA[CSS]]></category> <category><![CDATA[CSS3]]></category> <category><![CDATA[design]]></category> <category><![CDATA[HTML]]></category> <category><![CDATA[HTML5]]></category> <category><![CDATA[iphone]]></category> <category><![CDATA[jQuery]]></category> <category><![CDATA[objective c]]></category> <category><![CDATA[php]]></category> <category><![CDATA[reviews]]></category> <category><![CDATA[tools]]></category><guid
isPermaLink="false">http://www.amberweinberg.com/?p=4564</guid> <description><![CDATA[I’ve been investing a lot of my time lately on learning new things. I prefer to stay a front-end developer, but I’ve always wanted to play in different languages and keep up to date with design trends. Following long how-to books really isn’t my thing, as I usually end up falling asleep before the first [...]]]></description> <content:encoded><![CDATA[<p>I’ve been investing a lot of my time lately on learning new things. I prefer to stay a front-end developer, but I’ve always wanted to play in different languages and keep up to date with design trends. Following long how-to books really isn’t my thing, as I usually end up falling asleep before the first chapter ends.</p><p>I’ve never been a big fan of video on the web either, since I’m never at my computer unless I’m working so I never have time to watch. However, upon learning that Think Vitamin created a new membership service, called Think Vitamin Membership, I was immediately interested.</p><p><a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2ZyZWVsYW5jZWZvbGRlci5jb20vZXhwYW5kaW5nLXlvdXItd2ViLWtub3dsZWRnZS13aXRoLWEtdGhpbmstdml0YW1pbi1tZW1iZXJzaGlwLw==" target=\"_blank\">Read the rest of my post on FreelanceFolder</a></p> <img
src="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=4564" width="1" height="1" style="display: none;" />]]></content:encoded> <wfw:commentRss>http://www.amberweinberg.com/think-vitamin-membership-review%e2%80%93great-way-to-expand-your-web-knowledge/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Google+: The Facebook Killer or another spam-inbox-to-death-with-notifications system?</title><link>http://www.amberweinberg.com/google-the-facebook-killer-or-another-spam-inbox-to-death-with-notifications-system/</link> <comments>http://www.amberweinberg.com/google-the-facebook-killer-or-another-spam-inbox-to-death-with-notifications-system/#comments</comments> <pubDate>Thu, 21 Jul 2011 14:06:35 +0000</pubDate> <dc:creator>John Clarke</dc:creator> <category><![CDATA[blog]]></category> <category><![CDATA[business]]></category> <category><![CDATA[reviews]]></category> <category><![CDATA[socialmedia]]></category> <category><![CDATA[trends]]></category><guid
isPermaLink="false">http://www.amberweinberg.com/?p=4546</guid> <description><![CDATA[A couple of days ago Google released their social network answer named Google+. For those that have yet to crawl out from under the rocks they have been living under, head on over to plus.google.com to signup and get access to it to see what it&#8217;s about. For the rest of us, read on&#8230; Google+ [...]]]></description> <content:encoded><![CDATA[<p>A couple of days ago Google released their social network answer named Google+. For those that have yet to crawl out from under the rocks they have been living under, head on over to <a
href="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL3BsdXMuZ29vZ2xlLmNvbQ==">plus.google.com</a> to signup and get access to it to see what it&#8217;s about. For the rest of us, read on&#8230;</p><p>Google+ was/is currently a invite only network, thus giving it that &#8220;exclusive&#8221; feel. From the get go, there are some really awesome features that they got right like circles (groups for the uninformed) which enables you when you share new posts via the network to set who sees what. Compared to FB and Twitter (or any other service for that matter), this is a big win for the privacy nuts among us &#8211; or the guys trying to hide posts they do instead of doing work at the office from the boss <img
src='http://www.amberweinberg.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p><p>But where is all this leading to? Without beating about the bush, it is obvious that Google is taking on Facebook, even though they might have the numbers (700+ million users), Google has proved time and again that they are one of the few companies on the Internet that users keep returning to. Will they beat them? I hope so. Looking from a statistics point only, it will seem that they would, as G+ took under 10 days to accumulate 10+ million users, whereas Twitter and FB took over 100 days each. But this alone doesn&#8217;t proof that they will win the social media war that is going on. As many researches have shown, G+ is still majorly crowded by the IT people, thus it is still clean from those horrible apps that we all have come to hate on Facebook (here is looking at you Zynga with that damn Farmville and its myriad of clones&#8230;)</p><p>So what would happen when it goes mainstream, i.e. when your dad/mom/sister/brother/grandad/dog/lizzard start getting onto it? What can we expect to see come from this? Google has always come to the game with innovative new ideas and technologies, so this geek is hoping they keep improving. As long as they keep it from going the route Facebook went, it should/would survive. But will it become the all-encompassing portal that we go to to keep in touch with everyone we know? That is the real question. I don&#8217;t have the answers, nor do any of these tech sites posting their predictions.</p><p>What would be interesting to see is what they will bring to the table to win more users over and start cutting into Facebook&#8217;s market share. I for one haven&#8217;t used Facebook in more than 2 weeks, I just go and check who&#8217;s birthday I might have missed, give them a call (note that I don&#8217;t post on their walls I actually call them, something that doesn&#8217;t seem to happen anymore).</p><p>So, what do you guys think? Will G+ win? Or will it go down in history as Google Wave version 2?</p> <img
src="http://www.amberweinberg.com/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=4546" width="1" height="1" style="display: none;" />]]></content:encoded> <wfw:commentRss>http://www.amberweinberg.com/google-the-facebook-killer-or-another-spam-inbox-to-death-with-notifications-system/feed/</wfw:commentRss> <slash:comments>12</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/40 queries in 0.027 seconds using disk: basic
Object Caching 1358/1473 objects using disk: basic

Served from: www.amberweinberg.com @ 2012-02-07 16:14:31 -->
