<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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" version="2.0">

<channel>
	<title>CyrusKazemi.com</title>
	
	<link>http://cyruskazemi.com</link>
	<description>Seattle area startups, web design, and college life</description>
	<pubDate>Mon, 10 Nov 2008 00:01:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/cyruskazemi" type="application/rss+xml" /><item>
		<title>Don’t Bring Your Laptop to Class</title>
		<link>http://cyruskazemi.com/2008/11/09/dont-bring-your-laptop-to-class/</link>
		<comments>http://cyruskazemi.com/2008/11/09/dont-bring-your-laptop-to-class/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 00:00:32 +0000</pubDate>
		<dc:creator>Cyrus</dc:creator>
		
		<category><![CDATA[College]]></category>

		<category><![CDATA[laptop]]></category>

		<category><![CDATA[lecture]]></category>

		<category><![CDATA[note-taking]]></category>

		<category><![CDATA[study habits]]></category>

		<guid isPermaLink="false">http://cyruskazemi.com/?p=97</guid>
		<description><![CDATA[Wow, it has been a long time since I&#8217;ve written in this blog. The last two months have been incredibly busy for me. Now that I have a little more free time, this blog should recieve more attention.
Anyways, the other day I was reading a blog entry from David Cole on the Britannica Blog called [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, it has been a long time since I&#8217;ve written in this blog. The last two months have been incredibly busy for me. Now that I have a little more free time, this blog should recieve more attention.</p>
<p>Anyways, the other day I was reading a blog entry from David Cole on the Britannica Blog called <a href="http://www.britannica.com/blogs/2008/10/why-i-ban-laptops-in-my-classroom/">Why I Ban Laptops in My Classroom</a>. This article illustrated a point that I comment on constantly. Anytime I have a discussion about studying and learning methods, I always say that students should NEVER bring their laptops to lectures. <span id="more-97"></span></p>
<p>Typing on a laptop isn&#8217;t nearly as effective as writing information down by hand. Students go into &#8220;stenographic mode,&#8221; as Cole says, when they type notes. Most college students can type deftly without processing the information they are recording. Think about this comparison:  If someone watches a film adaptation of Phantom of the Opera and is asked the name of Phantom a week later, that person may or may be able to recall that fact. However if the same person takes a lead role in a play of the same story, they will instantly tell you that the Phantom&#8217;s name is Erik and they will probably remember that fact for the rest of their life. Handwriting notes versus typing them is similar. Physical writing requires that a student think about the topic at hand.</p>
<p>Also, a laptop is a huge distraction. A student with a laptop is tempted to surf the Internet, play Solitaire, chat on IM, play with Photoshop, watch TV and movies, etc. You name it. A piece of paper, on the other hand, offers no entertaining alternative to writing. You can doodle if you want, but even that only serves as a reminder that you should be taking notes. Students have a hard enough time paying attention and trying not to fall asleep without a large, bright screen begging them to do anything but pay attention. </p>
<p>Finally, a laptop is a distraction to the people around the user. If a person is using their laptop below me or next to me, the brightness of the screen encourages me to look at whatever they&#8217;re doing, which usually isn&#8217;t taking notes. Once I am pulled in, I stop paying attention to confidence intervals and start wondering if anyone left me comments on my Facebook. Even if I can&#8217;t directly see a laptop, the sound of typing above and around me is enough to be distracting.</p>
<p>Because of these reasons, I recommend leaving your laptop at home. Your productivity will increase dramatically and you will have to study less because you will remember more from lecture.</p>
<p><strong>Do you bring your laptop to lectures?</strong></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcyruskazemi.com%2F2008%2F11%2F09%2Fdont-bring-your-laptop-to-class%2F';
  addthis_title  = 'Don%26%238217%3Bt+Bring+Your+Laptop+to+Class';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://cyruskazemi.com/2008/11/09/dont-bring-your-laptop-to-class/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Indenting in CSS</title>
		<link>http://cyruskazemi.com/2008/08/31/indenting-in-css/</link>
		<comments>http://cyruskazemi.com/2008/08/31/indenting-in-css/#comments</comments>
		<pubDate>Sun, 31 Aug 2008 23:38:14 +0000</pubDate>
		<dc:creator>Cyrus</dc:creator>
		
		<category><![CDATA[Web Design]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[styling]]></category>

		<guid isPermaLink="false">http://cyruskazemi.com/?p=86</guid>
		<description><![CDATA[I was doing some styling in CSS for a project recently and had an idea for changing the way I write CSS. I have been learning and using CSS for about 2 years. Up until now, I have written CSS in a very straightforward way, only indenting declarations, but never selectors. The end result looks [...]]]></description>
			<content:encoded><![CDATA[<p>I was doing some styling in CSS for a project recently and had an idea for changing the way I write CSS. I have been learning and using CSS for about 2 years. Up until now, I have written CSS in a very straightforward way, only indenting declarations, but never selectors. The end result looks something like this:<span id="more-86"></span><br />
<code>
<pre>
p {
  attribute: value;
  attribute: value;
  ...
}

p span {
  attribute: value;
  attribute: value;
  ...
}
</pre>
<p></code><br />
Very plain and simple CSS. But I noticed that as my projects become larger and larger, it becomes hard to determine which elements are at the top level and which elements are descendants and if so, what elements they are descendants of. Well-structured HTML (as well as Java, Python, PHP and pretty much every other language) makes use of indenting to easily identify the order of elements.</p>
<p>I wondered if applying these indenting rules to CSS would make it any easier to read. The new CSS file would read like this:</p>
<pre>p {
  attribute: value;
  attribute: value;
  ...
}
  p img {
      attribute: value;
      attribute: value;
      ...
  }

  p span {
    attribute: value;
    attribute: value;
    ...
  }

    p span em{
      attribute: value;
      attribute: value;
      ...
    }</pre>
<p>Applied to a large file, I think this method makes reading CSS much easier, especially for an outside person looking at the code for the first time.</p>
<p>What about you? What methods, if any, do you use while writing CSS (or other code)?</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcyruskazemi.com%2F2008%2F08%2F31%2Findenting-in-css%2F';
  addthis_title  = 'Indenting+in+CSS';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://cyruskazemi.com/2008/08/31/indenting-in-css/feed/</wfw:commentRss>
		</item>
		<item>
		<title>GetHundos Targets UW Students With Themed Contests</title>
		<link>http://cyruskazemi.com/2008/07/29/gethundos-targets-uw-students-with-themed-contests/</link>
		<comments>http://cyruskazemi.com/2008/07/29/gethundos-targets-uw-students-with-themed-contests/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 05:06:32 +0000</pubDate>
		<dc:creator>Cyrus</dc:creator>
		
		<category><![CDATA[College]]></category>

		<category><![CDATA[Startups]]></category>

		<category><![CDATA[Apple Cup]]></category>

		<category><![CDATA[Competition]]></category>

		<category><![CDATA[Football]]></category>

		<category><![CDATA[GetHundos]]></category>

		<category><![CDATA[Greek]]></category>

		<category><![CDATA[Hundos]]></category>

		<category><![CDATA[Husky]]></category>

		<category><![CDATA[SuperVote]]></category>

		<category><![CDATA[University of Washington]]></category>

		<category><![CDATA[UW]]></category>

		<category><![CDATA[Voting]]></category>

		<guid isPermaLink="false">http://cyruskazemi.com/?p=73</guid>
		<description><![CDATA[
GetHundos is a startup that has recently gone into beta. GetHundos is a social networking site for college students. Right now it is open exclusively to University of Washington students and their friends. Today, I signed up for this fun service and tested it out. So far it has been pretty humorous and very engaging.

To [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gethundos.com/"><img src="http://www.gethundos.com/img/logo-main.png" alt="GetHundos" /></a><br />
<a href="http://www.gethundos.com/">GetHundos</a> is a startup that has recently gone into beta. GetHundos is a social networking site for college students. Right now it is open exclusively to University of Washington students and their friends. Today, I signed up for this fun service and tested it out. So far it has been pretty humorous and very engaging.</p>
<p><span id="more-73"></span></p>
<p>To sign up for the service, you must have a valid University of Washington email address. Registration was quick and painless. No unnecessary data is required, just basic registration information. The interface is easy, intuitive, and looks great.</p>
<p>The main idea of the site is to pit users against each other and see who can come up with the wittiest answer to a question posed by GetHundos in 160 characters or less. An example of a contest is: &#8220;How do you know when you are obsessed with Husky football?&#8221; Users come up with responses and other users vote up the ones they like and vote down the responses they think are lame. A picture can be uploaded with the response to enhance the message and make it funnier. Whichever entry garners the most votes at the end of the time period nets $100 dollars (hence the name GetHundos). Users also have the options of SuperVoting and Bombing entries, which count as +10 and -10 votes, respectively.</p>
<p>Users can earn &#8220;hundos&#8221; for entering and winning contests as well. Hundos are like currency and are used to buy more SuperVotes and Bombs at the GetHundos store. They also determine your rank in the GetHundos community. Like any other social network, users can befriend others and grow their network. In addition, users can become Fans or Haters of other people and establish alliances.</p>
<p>GetHundos is a simple but extremely entertaining site for college students. Once it gets bigger and looks beyond the UW campus, GetHundos should be very popular. If you are a UW student you should sign up right now. If you already have, what do you think of the site? What contests have you entered so far? What contests should be posted there?</p>
<p>Find me on GetHundos using the name <strong>cyruskazemi</strong></p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcyruskazemi.com%2F2008%2F07%2F29%2Fgethundos-targets-uw-students-with-themed-contests%2F';
  addthis_title  = 'GetHundos+Targets+UW+Students+With+Themed+Contests';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://cyruskazemi.com/2008/07/29/gethundos-targets-uw-students-with-themed-contests/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Why I Don’t Really Harp On Vista</title>
		<link>http://cyruskazemi.com/2008/07/25/why-i-dont-really-harp-on-vista/</link>
		<comments>http://cyruskazemi.com/2008/07/25/why-i-dont-really-harp-on-vista/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 07:51:41 +0000</pubDate>
		<dc:creator>Cyrus</dc:creator>
		
		<category><![CDATA[College]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[laptop]]></category>

		<category><![CDATA[student]]></category>

		<category><![CDATA[vista]]></category>

		<guid isPermaLink="false">http://cyruskazemi.com/?p=46</guid>
		<description><![CDATA[In light of Microsoft&#8217;s $300 million dollar counterattack to Apple&#8217;s hilarious commercials, the Vista vs. OS X (vs. Linux) battle seems to be at an all time high. I have been thinking about this for a long time. And to tell the truth, I don&#8217;t think Vista is that bad. And I&#8217;m going to venture [...]]]></description>
			<content:encoded><![CDATA[<p>In light of Microsoft&#8217;s <a href="http://blogs.zdnet.com/Bott/?p=499">$300 million dollar counterattack</a> to Apple&#8217;s hilarious commercials, the Vista vs. OS X (vs. Linux) battle seems to be at an all time high. I have been thinking about this for a long time. And to tell the truth, <em>I don&#8217;t think Vista is that bad</em>. And I&#8217;m going to venture a guess that more than million college students nationwide agree with me.<span id="more-46"></span> Here&#8217;s my reasoning: </p>
<p>The US Bureau of Labor Statistics estimates that of the 3 million annual high school graduates, about 2 million are enrolled in some sort of college the following October. <a href="http://www.bls.gov/news.release/hsgec.nr0.htm">(Source)</a> Now say half of those students got a new laptop, divided into half Windows and half Macs. Vista was released in January 2007 and was widely distributed by the time the class of 2007 graduated in June. Half a million incoming freshmen and half a million sophomores with year-old laptops makes roughly a million students with Vista laptops; probably a conservative estimate. If these million students are like me, they probably find Vista is sufficient for what they do on their computers.</p>
<p>I bought my laptop in July 2007. It came with 2GB of RAM and a decent Core2Duo dual core processor. This makes it like the majority of laptops sold since then. After using Vista for a year, I have only reinstalled it once, but that was completely my fault (I was messing with Linux and accidentally deleted my Windows partition&#8230; oops). Vista doesn&#8217;t slow down with prolonged use as long as the user does a bit of tidying here and there.</p>
<p>Here are some things I rather like about Vista:</p>
<ul>
<li>
<p><strong>Aesthetics:</strong> Vista just plain looks really nice. The Aero interface is beautiful. With 2 gigs of ram, Windows runs just as fast with Aero turned on. Vista&#8217;s interface makes XP look ugly and OS X look kind of boring. OS X looks decent but certain elements like the blue scroll bars definitely detract from its look. Vista is very polished and clean all around.</p>
</li>
<li>
<p><strong>Search functionality:</strong> Being able to search for a specific file or subfolder in any folder is a great feature. It has made me enormously more efficient. Even for running programs I don&#8217;t use often, I don&#8217;t even need to use the mouse. I just press the Windows button and type the beginning of the name of the program in and press Enter when it pops up.</p>
</li>
<li>
<p><strong>Wireless connectivity:</strong> Some people complain about this interface but I find it much easier to use than in XP. Just let your computer boot up and look for available networks then connect to whatever network you want. Easy.</p>
</li>
</ul>
<p>I regularly simultaneously use Textpad, an FTP client, Photoshop, iTunes or Windows Media Player and Firefox with many tabs open and my system runs quickly and fluidly. I certainly don&#8217;t see why everyone complains about Vista being slow. If it isn&#8217;t slow doing all of those things, you&#8217;d have to really go out of your way to see it lag.</p>
<p>This is just my two cents on a heavily debated topic. I covered what I like about Vista, but it definitely isn&#8217;t perfect. What do you think of Vista? Do you like it? Tolerate it? Think it should be totally wiped off the face of the planet? If so, what do you use instead and why?</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcyruskazemi.com%2F2008%2F07%2F25%2Fwhy-i-dont-really-harp-on-vista%2F';
  addthis_title  = 'Why+I+Don%26%238217%3Bt+Really+Harp+On+Vista';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://cyruskazemi.com/2008/07/25/why-i-dont-really-harp-on-vista/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Welcome to my new blog!</title>
		<link>http://cyruskazemi.com/2008/07/23/welcome-to-my-new-blog/</link>
		<comments>http://cyruskazemi.com/2008/07/23/welcome-to-my-new-blog/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 21:50:17 +0000</pubDate>
		<dc:creator>Cyrus</dc:creator>
		
		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://cyruskazemi.com/?p=27</guid>
		<description><![CDATA[Hello all! I finally decided to get a dedicated site to host my blog. It gives me greater flexibility and the ability to tinker with WordPress. It also looks more professional, I&#8217;d say. I moved some of my favorite old posts to this blog.
This blog will be similar in subject matter to my last blog. [...]]]></description>
			<content:encoded><![CDATA[<p>Hello all! I finally decided to get a dedicated site to host my blog. It gives me greater flexibility and the ability to tinker with WordPress. It also looks more professional, I&#8217;d say. I moved some of my favorite old posts to this blog.<span id="more-27"></span></p>
<p>This blog will be similar in subject matter to my last blog. However, there will be more of an emphasis on startups located in the greater Seattle area. Since this is where I live and go to school, Seattle startups are of the most interest to me.</p>
<p>To learn more about me, visit the About Me page. Be sure to leave comments on posts you enjoy and subscribe to the RSS feed!</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcyruskazemi.com%2F2008%2F07%2F23%2Fwelcome-to-my-new-blog%2F';
  addthis_title  = 'Welcome+to+my+new+blog%21';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://cyruskazemi.com/2008/07/23/welcome-to-my-new-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Howcast.com: Instructional Videos You’ll Actually Want to Watch</title>
		<link>http://cyruskazemi.com/2008/02/08/howcast-instructional-videos-youll-actually-want-to-watch/</link>
		<comments>http://cyruskazemi.com/2008/02/08/howcast-instructional-videos-youll-actually-want-to-watch/#comments</comments>
		<pubDate>Sat, 09 Feb 2008 01:42:30 +0000</pubDate>
		<dc:creator>Cyrus</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<category><![CDATA[Startups]]></category>

		<category><![CDATA[Web 2.0]]></category>

		<category><![CDATA[DIY]]></category>

		<category><![CDATA[How-To]]></category>

		<category><![CDATA[howcast]]></category>

		<category><![CDATA[instructions]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://houseoflions.wordpress.com/?p=20</guid>
		<description><![CDATA[Howcast is a startup company founded by ex-Googlers Jason Liebman, Daniel Blackman and Sanjay Raman. All three worked on Google Video and YouTube before creating Howcast. The site launched on February 6th, 2008 along with an announcement of an $8 million series A funding led by Tudor Investment Group. Howcast provides instructional how-to videos on [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.howcast.com">Howcast</a> is a startup company founded by ex-Googlers Jason Liebman, Daniel Blackman and Sanjay Raman. All three worked on Google Video and YouTube before creating Howcast. The site launched on February 6th, 2008 along with an announcement of an $8 million series A funding led by Tudor Investment Group. Howcast provides instructional how-to videos on everything from How To Paint A Wall to How To Pretend You&#8217;re A Real New Yorker.<span id="more-15"></span></p>
<p>One might wonder why someone would try to create a site based solely on how-to guides when thousands of such videos can be found on YouTube. What sets apart Howcast from the competition (which includes Instructables, Expert Village and 5min in addition to other people YouTube) is the quality of the videos. The majority of the videos on the site so far are actually produced by Howcast&#8217;s own studio. Once users register they can suggest new topics and even write up and edit instructions for those topics.</p>
<p>The site also includes a wiki section. I find this especially helpful for instructions that are easier to visualize in my head than to watch in a video (such as How To Do A Kickflip). The wiki section is where users can submit their write ups. If Howcast chooses to make a video out of a certain wiki, they either shoot it in their own studio in New York or pay film students to shoot the footage then Howcast voices it over and makes it pretty.</p>
<p>Revenue is  driven by embedded ads in the instructional videos. These ads are much more effective in my opinion. When I watch a video online, I don&#8217;t want to wait 15, 30 or 60 seconds to start the video. Placing a small ad at the bottom of the video grabs the user&#8217;s attention without being too annoying. It&#8217;s similar to driving a car: for some reason it feels more efficient to be moving slowly than to be stuck at a red light before driving off quickly.</p>
<p>Howcast looks promising. It offers a broad range of topics with the potential user involvement of a wiki with the entertainment of online video.</p>
<p>What are some your favorite Howcast how-tos? Do you think Howcast seems like a service you would want to use?</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcyruskazemi.com%2F2008%2F02%2F08%2Fhowcast-instructional-videos-youll-actually-want-to-watch%2F';
  addthis_title  = 'Howcast.com%3A+Instructional+Videos+You%26%238217%3Bll+Actually+Want+to+Watch';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://cyruskazemi.com/2008/02/08/howcast-instructional-videos-youll-actually-want-to-watch/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cloud Computing and the MacBook Air</title>
		<link>http://cyruskazemi.com/2008/01/29/cloud-computing-and-the-macbook-air/</link>
		<comments>http://cyruskazemi.com/2008/01/29/cloud-computing-and-the-macbook-air/#comments</comments>
		<pubDate>Wed, 30 Jan 2008 00:06:19 +0000</pubDate>
		<dc:creator>Cyrus</dc:creator>
		
		<category><![CDATA[Internet]]></category>

		<category><![CDATA[apple]]></category>

		<category><![CDATA[cloud computing]]></category>

		<category><![CDATA[eee pc]]></category>

		<category><![CDATA[macbook air]]></category>

		<category><![CDATA[n810]]></category>

		<category><![CDATA[web apps]]></category>

		<guid isPermaLink="false">http://houseoflions.wordpress.com/?p=18</guid>
		<description><![CDATA[In the last couple of years, the idea of cloud computing has begun to show itself. Cloud computing is the idea of using the Internet as a hub to access applications and personal files instead of relying on local hard drives, etc. Advances in wireless network accessibility, &#8220;web technologies&#8221; like AJAX, and laptop performance (and [...]]]></description>
			<content:encoded><![CDATA[<p>In the last couple of years, the idea of cloud computing has begun to show itself. Cloud computing is the idea of using the Internet as a hub to access applications and personal files instead of relying on local hard drives, etc. Advances in wireless network accessibility, &#8220;web technologies&#8221; like AJAX, and laptop performance (and popularity) all can be attributed to the rise in popularity of cloud computing.<span id="more-13"></span></p>
<p>More and more, people are relying on web-based applications instead of desktop apps. Map applications are popular for getting directions, sites like <a href="http://www.expensr.com">expensr</a> and <a href="http://www.mint.com">mint</a> and helping individuals with financial matters, and Google Docs and Spreadsheets is gaining ground on the Microsoft Office suite. The popularity and availability of these web apps means people can get more accomplished in a variety of settings.</p>
<p>Earlier this month, Apple announced the <a href="http://www.apple.com/macbookair">MacBook Air</a>. This ultra-compact laptop was designed with the wireless lifestyle in mind. It ranges from 0.16 to 0.76 inches thick, which is incredibly small for a computer of any size. It features a 13.3&#8243; 1280 x 800 pixel widescreen display, full keyboard, Core2 Duo processor, 80 GB hard drive and 2 GB of RAM. It even has the option to replace the hard drive with a (pricey) 64 GB solid state drive. All in all, it is a great notebook and at only 3 pounds can be taken just about anywhere.</p>
<p>However, the MacBook Air is quite pricey compared to other ultra-portable laptops and wireless devices. The <a href="http://eeepc.asus.com/us/product.htm">Asus eee PC</a> retails for $300-400 and, with a 7&#8243; screen and a total weight of just over 2 pounds, is even more portable. The <a href="http://www.nseries.com/index.html#l=products,n810">Nokia N810</a> features a 4.3&#8243; touch screen, slide out QWERTY keyboard and a Linux-based OS with a Mozilla-based browser for $399. Even the iPhone/iPod Touch is a good alternative, with a 3.5&#8243; multi-touch screen, Safari and Mail and 8-16 GB of storage space. The point is that there are other devices that are much, much cheaper but still have the necessary functionality and large enough screens to be efficient.</p>
<p>I think cloud computing will be very popular in the future. However, I think Apple was premature in releasing such a high-end wireless device that has trouble operating as a traditional laptop (only 1 USB port, no ethernet, etc) and is many times more expensive than its competitors. What is your opinion on the MacBook Air?</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcyruskazemi.com%2F2008%2F01%2F29%2Fcloud-computing-and-the-macbook-air%2F';
  addthis_title  = 'Cloud+Computing+and+the+MacBook+Air';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://cyruskazemi.com/2008/01/29/cloud-computing-and-the-macbook-air/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Review: Canon PowerShot SD1000</title>
		<link>http://cyruskazemi.com/2008/01/13/review-canon-sd1000/</link>
		<comments>http://cyruskazemi.com/2008/01/13/review-canon-sd1000/#comments</comments>
		<pubDate>Sun, 13 Jan 2008 08:13:15 +0000</pubDate>
		<dc:creator>Cyrus</dc:creator>
		
		<category><![CDATA[Reviews]]></category>

		<category><![CDATA[camera]]></category>

		<category><![CDATA[canon]]></category>

		<category><![CDATA[PowerShot]]></category>

		<category><![CDATA[SD1000]]></category>

		<category><![CDATA[ultra compact]]></category>

		<guid isPermaLink="false">http://houseoflions.wordpress.com/2008/01/13/review-canon-sd1000/</guid>
		<description><![CDATA[For Christmas, I received a digital camera. It was no surprise; I had spent a long time researching which camera I wanted. I knew I wanted something really compact to carry around campus and outings but still delivered decent performance. My family previously owned a Canon PowerShot A95 and I own a Canon GL2 camcorder, [...]]]></description>
			<content:encoded><![CDATA[<p>For Christmas, I received a digital camera. It was no surprise; I had spent a long time researching which camera I wanted. I knew I wanted something really compact to carry around campus and outings but still delivered decent performance. My family previously owned a Canon PowerShot A95 and I own a Canon GL2 camcorder, so I am a big fan of Canon&#8217;s performance and reliability. After weighing pros and cons, I settled on the Canon PowerShot SD1000.<span id="more-12"></span></p>
<h3>Overview</h3>
<p>The SD1000 is a 7.1 megapixel point-and-shoot camera with 3x optical zoom. It has a 2.5 inch LCD screen, which I find plenty big enough, given the size of the camera. It also features automatic face detection and red-eye correction.</p>
<p>The SD1000 has a tiny form factor for a digital camera. It is an ultra-compact that measures  3.4 x 2.1  x 0.8 inches and weighs only 4.3 ounces. In fact, I can only think coming across only one camera that is significantly thinner in its class (it was a Sony, I believe). The size makes the camera very easy to put anywhere, even in a baggy jean pocket.</p>
<h3>The Good</h3>
<p><strong>Menus/UI: </strong>The biggest problem I had with my old A95 was the confusing controls. The menus weren&#8217;t very intuitive and it was hard to figure out how to do much without consulting the manual. However, the user interface for the SD1000 is much improved. I was able to access all of the different shooting modes, change the shutter speed, etc. without reading the manual. The UI also has cool-looking transparent menus and nice transitions. Very aesthetically pleasing.</p>
<h3>The Bad</h3>
<p><strong>Low Light Shooting: </strong>The SD1000 fairs poorly in low-light conditions where a flash can&#8217;t be used. The picture becomes grainy and blurry, even with image stabilization on. However, this is a common problem with most point-and-shoot cameras. I made the picture look a great deal better by turning the ISO speed way up.<br />
<strong>Small buttons: </strong>The SD1000 might not be for everyone simply because it is a very small camera. I think someone with big hands would have trouble operating the minuscule controls.<br />
<strong>Low Battery Indicator: </strong>The camera doesn&#8217;t give you any indication of remaining battery power until it is very low. It would be nice if there was an on-screen indicator so the user had a better idea of how much life was left.</p>
<h3>The Verdict</h3>
<p>Overall, I think the Canon PowerShot SD1000 is an excellent camera. It was designed to be portable and take reasonably good pictures. Given the right lighting conditions and settings, the SD1000 takes awesome pictures. I am very happy with mine and definitely recommend it. Just make sure to buy 2 batteries if you plan on using it frequently.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcyruskazemi.com%2F2008%2F01%2F13%2Freview-canon-sd1000%2F';
  addthis_title  = 'Review%3A+Canon+PowerShot+SD1000';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://cyruskazemi.com/2008/01/13/review-canon-sd1000/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How-To: Quickly Resize Multiple Pictures in Photoshop</title>
		<link>http://cyruskazemi.com/2007/12/28/resize-multiple-pics-in-photoshop/</link>
		<comments>http://cyruskazemi.com/2007/12/28/resize-multiple-pics-in-photoshop/#comments</comments>
		<pubDate>Sat, 29 Dec 2007 05:05:40 +0000</pubDate>
		<dc:creator>Cyrus</dc:creator>
		
		<category><![CDATA[How-To]]></category>

		<category><![CDATA[batch]]></category>

		<category><![CDATA[image]]></category>

		<category><![CDATA[photoshop]]></category>

		<category><![CDATA[resize]]></category>

		<guid isPermaLink="false">http://houseoflions.wordpress.com/2007/12/28/resize-multiple-pics-in-photoshop/</guid>
		<description><![CDATA[I was working on a project recently and needed to resize a lot of pictures to make them suitable for a standard DV video (720&#215;480). I found a way that Photoshop can resize all the pictures in a certain folder with one command. Granted, this probably isn&#8217;t the most time-efficient way to resize a lot [...]]]></description>
			<content:encoded><![CDATA[<p>I was working on a project recently and needed to resize a lot of pictures to make them suitable for a standard DV video (720&#215;480). I found a way that Photoshop can resize all the pictures in a certain folder with one command. Granted, this probably isn&#8217;t the most time-efficient way to resize a lot of pictures, but I didn&#8217;t want to use a second program.<span id="more-8"></span> Here are the steps:</p>
<ol>
<li>Open the first picture you want to resize</li>
<li>Open the Actions palette by clicking Window -&gt; Actions</li>
<li>Click the page-turning button left of the garbage can button in the Actions palette</li>
<li>Give the new action a name (like Resize Picture)</li>
<li>Press the Record button, which is the red circle.</li>
<li>Resize the image by clicking Image -&gt; Image Size or Alt + Ctrl + I</li>
<li>Save the newly resized image</li>
<li>Press the Stop button in the Actions palette</li>
</ol>
<p>Now you have a new action for resizing pictures. To use it follow these steps:</p>
<ol>
<li>File -&gt; Automate -&gt; Batch</li>
<li>Leave Set at Default Actions, set Action to whatever you called your action (mine is Resize Pics)</li>
<li>Set Source to Folder, press Choose&#8230; and navigate to the folder where your pictures are then check Include All Subfolders</li>
<li>Set Destination to Folder, press Choose&#8230; to pick where you want the resized pictures to be stored</li>
<li>Press OK</li>
</ol>
<p>You will see Photoshop automatically open and resize each picture. Once no more pictures appear, it is finished. Enjoy!<br />
The original article can be found &lt;a href=&#8221;http://www.vbulletin.com/forum/archive/index.php/t-177759.html&#8221;&gt;here&lt;/a&gt;.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fcyruskazemi.com%2F2007%2F12%2F28%2Fresize-multiple-pics-in-photoshop%2F';
  addthis_title  = 'How-To%3A+Quickly+Resize+Multiple+Pictures+in+Photoshop';
  addthis_pub    = '';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://cyruskazemi.com/2007/12/28/resize-multiple-pics-in-photoshop/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
