<?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>Seifi.org &#187; business</title>
	<atom:link href="http://www.seifi.org/category/business/feed" rel="self" type="application/rss+xml" />
	<link>http://www.seifi.org</link>
	<description>A Web Development Blog by Joe Seifi - seifi.org</description>
	<lastBuildDate>Thu, 26 Jan 2012 01:08:13 +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>What the Captcha? or why TicketMaster is lame</title>
		<link>http://www.seifi.org/business/what-the-captcha-or-why-ticketmaster-is-lame.html</link>
		<comments>http://www.seifi.org/business/what-the-captcha-or-why-ticketmaster-is-lame.html#comments</comments>
		<pubDate>Thu, 18 Sep 2008 22:26:27 +0000</pubDate>
		<dc:creator>Joe Seifi</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[design]]></category>

		<guid isPermaLink="false">http://www.seifi.org/?p=689</guid>
		<description><![CDATA[I don&#8217;t know about you, but I&#8217;m really tired of trying to read those reCaptcha messages when going through TicketMaster sales screens. But hey at least they are helping a non-profit build an internet library which is great right? As if it is not bad enough that they have a pretty annoying and unusable multi-step, [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.seifi.org/wp-content/uploads/2008/09/wtfcaptcha.gif" alt="" title="Jibberish" width="306" height="310" class="alignright size-full wp-image-690" hspace="15" align="right" />I don&#8217;t know about you, but I&#8217;m really tired of trying to read those reCaptcha messages when going through TicketMaster sales screens. But hey at least they are helping a non-profit build an internet library which is great right? </p>
<p>As if it is not bad enough that they have a pretty annoying and unusable multi-step, multi-page ticket sales process, recently they are starting to give out some borderline non-sense captcha validation images. How many people would just say &#8220;forget it&#8221; and leave? Well not many, since TM is an undocumented Monopoly for ticket sales in my opinion. Pretty bad user experience overall. I would love if they at least put the reCaptcha page on the same page as the ticket search form to cut down page loads. Better yet, make the whole process an ajax based system so you never have to leave the order page. It sucks to go through a blinding <a href="http://recaptcha.net/">reCaptcha</a> page and then get the dreaded &#8220;You&#8217;re Screwed&#8221; all sold out page. Just tell me right upfront: &#8220;Hey Don&#8217;t bother, no seats are available mr!&#8221; and don&#8217;t waste my time. I mean I have to pay an inflated ticket price + order processing fees + convenience fees + delivery fees. Can we at least get a convenient to use website?</p>
<p>I went ahead and did a 2 minute reshuffling of the order form for TicketMaster and this is what I came up with. Just put all forms on one page and got rid of the clutter. Progress bar and search results would appear on the same page.</p>
<p><img src="http://www.seifi.org/wp-content/uploads/2008/09/tm_redesign.gif" alt="" title="TicketMaster Redesign" width="419" height="361" class="alignnone size-full wp-image-695" vspace="25" /></p>
<p>I noticed also that there are now TicketMaster hosted auctions and scalping services on site. Wonder how far they have to push the envelope before regulators are forced to step in.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seifi.org/business/what-the-captcha-or-why-ticketmaster-is-lame.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>JavaScript Arguments</title>
		<link>http://www.seifi.org/javascript/javascript-arguments.html</link>
		<comments>http://www.seifi.org/javascript/javascript-arguments.html#comments</comments>
		<pubDate>Tue, 19 Aug 2008 23:16:20 +0000</pubDate>
		<dc:creator>Joe Seifi</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.seifi.org/?p=673</guid>
		<description><![CDATA[The arguments object in JavaScript is a local variable in any function that provides some nice features we can use in our code. Here is the list of its properties and related properties of the Function object. arguments itself returns an object that looks like an array (but not really an array) of the arguments [...]]]></description>
			<content:encoded><![CDATA[<p>The arguments object in JavaScript is a local variable in any function that provides some nice features we can use in our code. Here is the list of its properties and related properties of the Function object.</p>
<p><code>arguments</code> itself returns an object that looks like an array (but not really an array) of the arguments passed to the function.</p>
<p>Prior to JavaScript 1.4 the <code>Function</code> object also had a similar <code>arguments</code> property, which is now deprecated.</p>
<p>However the Function object comes with a few other useful properties that we can still use to get argument related data.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">function</span> callTaker<span style="color: #009900;">&#40;</span>a<span style="color: #339933;">,</span>b<span style="color: #339933;">,</span>c<span style="color: #339933;">,</span>d<span style="color: #339933;">,</span>e<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
  <span style="color: #006600; font-style: italic;">// arguments properties</span>
  console.<span style="color: #660066;">log</span><span style="color: #009900;">&#40;</span>arguments<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  console.<span style="color: #660066;">log</span><span style="color: #009900;">&#40;</span>arguments.<span style="color: #660066;">length</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  console.<span style="color: #660066;">log</span><span style="color: #009900;">&#40;</span>arguments.<span style="color: #660066;">callee</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  console.<span style="color: #660066;">log</span><span style="color: #009900;">&#40;</span>arguments<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  <span style="color: #006600; font-style: italic;">// Function properties</span>
 console.<span style="color: #660066;">log</span><span style="color: #009900;">&#40;</span>callTaker.<span style="color: #660066;">length</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  console.<span style="color: #660066;">log</span><span style="color: #009900;">&#40;</span>callTaker.<span style="color: #660066;">caller</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  console.<span style="color: #660066;">log</span><span style="color: #009900;">&#40;</span>arguments.<span style="color: #660066;">callee</span>.<span style="color: #660066;">caller</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  console.<span style="color: #660066;">log</span><span style="color: #009900;">&#40;</span>arguments.<span style="color: #660066;">callee</span>.<span style="color: #660066;">caller</span>.<span style="color: #660066;">caller</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  console.<span style="color: #660066;">log</span><span style="color: #009900;">&#40;</span>callTaker.<span style="color: #000066;">name</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
  console.<span style="color: #660066;">log</span><span style="color: #009900;">&#40;</span>callTaker.<span style="color: #660066;">constructor</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> callMaker<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
  callTaker<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;foo&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;bar&quot;</span><span style="color: #339933;">,</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #339933;">,</span>document<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> init<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
  callMaker<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>For demonstration purposes, you can <a href="" onclick="return initDemo();">run the init function</a> above and view the logs in FireBug.</p>
<h3>arguments object and its properties</h3>
<p><code><strong>arguments</strong></code> returns ["foo", "bar", Window, Document]</p>
<p><code><strong>arguments.length</strong></code> returns 4</p>
<blockquote class="note"><p>Note: even though our function has a signature with 5 arguments, length returns only 4 here. This is because the caller sent us only 4 arguments. See below for how we can use Function&#8217;s length property to find the number of expected arguments.</p></blockquote>
<p><code><strong>arguments.callee</strong></code> returns callTaker(a, b, c, d, e)</p>
<blockquote class="note"><p>Note: callee shows us the signature of the currently executing function and is useful when trying to make recursive calls to a function within its own body.</p></blockquote>
<p><code><strong>arguments[1]</strong></code> returns bar</p>
<blockquote class="note"><p>Note: arguments can also be set for functions in an array like format. For example you can set the second argument like this: <code><strong>arguments[1] = 'moo';</strong></code>
</p></blockquote>
<h3>Function object and its argument related properties</h3>
<p><code><strong>callTaker.length</strong></code> returns 5</p>
<blockquote class="note"><p>Note: This is the expected number of arguments.</p></blockquote>
<p><code><strong>callTaker.caller</strong></code> is the same as <code><strong>arguments.callee.caller</strong></code> and returns callMaker()</p>
<blockquote class="note"><p>Note: we can go up the stack trace and get the caller of the caller etc. For example we can find the function that called callMaker using <code>arguments.callee.caller.caller</code> which returns init().</p></blockquote>
<p><code><strong>callTaker.name</strong></code> returns callTaker</p>
<p><code><strong>callTaker.constructor</strong></code> returns Function()</p>
<blockquote class="note"><p>Note: Since we have not modified the basic behavior, we see the built in function that creates an object&#8217;s prototype for our function, which is the Function object.
</p></blockquote>
<h3>Basic Usage Sample</h3>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #003366; font-weight: bold;">var</span> dataArray <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span><span style="color: #3366CC;">&quot;One&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;Two&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;Three&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;Four&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">var</span> lister <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span> createList<span style="color: #009900;">&#40;</span>list<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
 <span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>arguments.<span style="color: #660066;">length</span> <span style="color: #339933;">==</span> <span style="color: #CC0000;">3</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
  <span style="color: #003366; font-weight: bold;">var</span> result <span style="color: #339933;">=</span> <span style="color: #3366CC;">&quot;&lt;&quot;</span> <span style="color: #339933;">+</span> arguments<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">&quot;&gt;&quot;</span><span style="color: #339933;">;</span>
  <span style="color: #000066; font-weight: bold;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">var</span> i <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span> i <span style="color: #339933;">&lt;</span> arguments<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">2</span><span style="color: #009900;">&#93;</span>.<span style="color: #660066;">length</span><span style="color: #339933;">;</span> i<span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
   result <span style="color: #339933;">+=</span> <span style="color: #3366CC;">&quot;&lt;li&gt;&quot;</span> <span style="color: #339933;">+</span> arguments<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">2</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">&quot;&lt;/li&gt;&quot;</span><span style="color: #339933;">;</span>
  <span style="color: #009900;">&#125;</span>
  result <span style="color: #339933;">+=</span> <span style="color: #3366CC;">&quot;&lt;/&quot;</span> <span style="color: #339933;">+</span> arguments<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">1</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">+</span> <span style="color: #3366CC;">&quot;l&gt;&quot;</span><span style="color: #339933;">;</span>
  document.<span style="color: #660066;">getElementById</span><span style="color: #009900;">&#40;</span>arguments<span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">innerHTML</span> <span style="color: #339933;">=</span> result<span style="color: #339933;">;</span>
 <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #003366; font-weight: bold;">function</span> makeList<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
 lister<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;list_HTML&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;ul&quot;</span><span style="color: #339933;">,</span>dataArray<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p><a href="" onclick="return makeListDemo();">Run the sample</a><br />
<span id="list_HTML"></span></p>
<p>References:<br />
<a href="http://eriwen.com/javascript/js-stack-trace/" target="_blank">JavaScript Stack Trace</a><br />
<a href="http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Global_Objects:Function" target="_blank">Function</a><br />
<a href="http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Functions:arguments" target="_blank">arguments</a></p>
<style>code strong{color:#F24C8B;font-family:verdana;font-weight:normal;}blockquote.note{margin:0 0 10px;}</style>
<p><script src="http://www.seifi.org/wp-content/uploads/2008/08/arguments.js"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.seifi.org/javascript/javascript-arguments.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Thoughts on App Store and Cocoa Touch for iPhone</title>
		<link>http://www.seifi.org/business/thoughts-on-app-store-and-cocoa-touch-for-iphone.html</link>
		<comments>http://www.seifi.org/business/thoughts-on-app-store-and-cocoa-touch-for-iphone.html#comments</comments>
		<pubDate>Fri, 07 Mar 2008 00:21:55 +0000</pubDate>
		<dc:creator>Joe Seifi</dc:creator>
				<category><![CDATA[apple]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[iphone]]></category>

		<guid isPermaLink="false">http://www.seifi.org/iphone/thoughts-on-app-store-and-cocoa-touch-for-iphone.html</guid>
		<description><![CDATA[Today, Apple has finally come out with it. Apple will run a store called App Store to sell your iPhone software for you to the general masses, through either iTunes, iPhone or iPod touch. So, every developer in the universe is going ape nuts trying to download the new 2GB iPhone SDK and gearing up [...]]]></description>
			<content:encoded><![CDATA[<p>Today, Apple has finally <a href="http://events.apple.com.edgesuite.net/rtp20e92/event/index.html?internal=pd4lje2fa" target="_blank">come out</a> with it. Apple will run a store called App Store to sell your iPhone software for you to the general masses, through either iTunes, iPhone or iPod touch. So, every developer in the universe is going ape nuts trying to download the new <a href="http://developer.apple.com/iphone/program/" target="_blank">2GB iPhone SDK</a> and gearing up for the June launch to the public. What about the business side of things?</p>
<p>Let&#8217;s take a look at the basics:</p>
<p><span id="more-621"></span><br />
70/30 -</p>
<ul>
<li>Developer gets:
<ul>
<li>Hosting</li>
<li>Credit Card Processing</li>
<li>Access to millions of iPhone and iPod touch customers</li>
<li>70% of what they sell online.</li>
<li>Paid out monthly</li>
<li>The SDK, Tools and Documentation</li>
</ul>
</li>
<li>Apple gets:
<ul>
<li>Subscription fees of $99 or $299</li>
<li>A vast Inventory of Apps</li>
<li>30% of the sales</li>
<li>Full Control over what apps are listed in its App Store</li>
<li>plus&#8230;</li>
</ul>
</li>
</ul>
<p>What else?</p>
<p>Well if you have an iPod touch, and not iPhone, You need to pay a &#8220;nominal&#8221; fee to upgrade your device to be able to get the App Store on it.</p>
<p>So why does Apple want to restrict its App sales to the App Store you ask? The reason given is that it is a security risk. People who sign up for a developer account are supposedly safer since Apple has their personal information on file such as credit card numbers and phone and such. So if someone does write some malicious app that gets into 2 million iPhones and causes world hunger, we can all point to the right person and demand justice.</p>
<p><img src="http://www.seifi.org/wp-content/uploads/2008/03/appstore.png" title="iPhon App Store" alt="iPhon App Store" align="left" hspace="15" vspace="15" />It might be unreasonable to conclude that if Apple is the single point of inspection, that no viruses will get through to its Store. Sure they will do a good job of inspecting all the stuff that comes in, but something somewhere will go wrong. And that is bound to happen.</p>
<p>Up until now Mac software has been distributed and sold by developers themselves. Not many Mac owners complain of a virus infection however. How is it that with a mobile device this changes?</p>
<p>One thing is for certain, Lots and Lots of money will be made on this by both Apple and top notch Cocoa programmers. Another side effect will be new coders coming to Cocoa Apple land and getting a taste of things in Cupertino. Xcode and other iPhone SDK development tools are Mac only tools, which could potentially boost Mac hardware sales as well. Oh and did I mention you need Leopard?</p>
<p>Finally, new apps mean new iPhone and iPod touch customers who up until now have not bothered switching to the land of apps and Apple. And more people hitting up the iTunes store looking for apps means more eyeballs that will most likely browse around the isles for other stuff like movie rentals and music downloads.</p>
<p>So we all are part of a major shift in technology usage and Apple is in the middle of it all as it builds its digital goods empire. This is probably the biggest shift we&#8217;ve seen since the personal computer was commercialized.</p>
<p>It makes perfect business sense, and seems like a winning business model for developers and Apple. I leave it up to you to determine how efficient and beneficial it is for consumers. My only question is then why did Apple wait over 9 months to release the SDK, and is waiting another 3 months to release it to the public? And what will Google Gears, Microsoft and Nokia do if anything to steal some of Steve&#8217;s spotlight?</p>
<p>A last thought: What happens if I buy an app for my iPhone and want to put it on my iPod touch? Will I have to pay for it again?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seifi.org/business/thoughts-on-app-store-and-cocoa-touch-for-iphone.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Google Youtube Video Units Released</title>
		<link>http://www.seifi.org/searching/google-youtube-video-units-released.html</link>
		<comments>http://www.seifi.org/searching/google-youtube-video-units-released.html#comments</comments>
		<pubDate>Wed, 10 Oct 2007 05:24:23 +0000</pubDate>
		<dc:creator>Joe Seifi</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.seifi.org/money/google-youtube-video-units-released.html</guid>
		<description><![CDATA[AdSense Video Units is here! Get great video content from YouTube for your site and earn extra revenue along the way. So now you can make money and enhance your site with high quality, relevant video content from YouTube partners, and earn extra revenue along the way. To get started just log in to your [...]]]></description>
			<content:encoded><![CDATA[<p>
<img src='http://www.seifi.org/wp-content/uploads/2007/10/videodemo.jpg' align='left' alt='Google Youtube Video Units Demo' style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; margin: 0px 20px 0px 0px; border-right-width: 0px" />AdSense Video Units is here! Get great video content from YouTube for your site and earn extra revenue along the way. So now you can make money and enhance your site with high quality, relevant video content from YouTube partners, and earn extra revenue along the way. To get started just log in to your AdSense account and click on the AdSense Setup tab. You will see a new product listed there called Video Units.<br />
<span id="more-599"></span></p>
<p>Clicking on Video Units the first time will take you to a page where you are shown a video presentation on Video Units. here is the video:<br />
<object width="425" height="350"><param name="movie" value="http://www.youtube.com/v/CqXDziUCVWY"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/CqXDziUCVWY" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed></object></p>
<p>&nbsp; </p>
<p>So how do you actually make money with Video Units? The <a href="https://www.google.com/adsense/support/bin/topic.py?topic=12182&amp;sourceid=aso&amp;subid=ww-ww-et-asui&amp;medium=link">FAQ section</a>&nbsp;of Video Units talks about this. When you place a video unit on your website, you&#8217;ll earn revenue from two types of ad formats: <strong>companion ads</strong>, which sit above your video content within the player and can be either text or image-based, and <strong>text overlay ads</strong>, which appear in the bottom 20% of the video content area. Ads on video units can be paid on either a cost-per-click or cost-per-thousand impression basis.</p>
<p>So companion ads are like banner ads and text overlay ads are like AdWords ads.</p>
<p>The <a href="http://www.youtube.com/adsense_player" target="_blank">setup page</a>&nbsp;walks you through creating the code to place on your site and is quite simple to use. You just pick a color theme, the size of the video ad unit and you can also filter the content to be shown in your player. You can also save the player by giving it a name and description. </p>
<p>Video units come in 3 different sizes:</p>
<p><img src='http://www.seifi.org/wp-content/uploads/2007/10/videounits_layouts.gif' alt='Video Units Layouts' /></p>
<ul>
<li>400 x 415
<li>500 x 510
<li>780 x 560</li>
</ul>
<p>You can pick from 9 preset color schemes:</p>
<p><img src='http://www.seifi.org/wp-content/uploads/2007/10/videounits_colors.gif' alt='Video Units Colors' /></p>
<p>Click on Generate Code, Copy the code, and Paste it into your site. Below is a sample video unit which I&#8217;ve created for testing out the service.</p>
<div id='_ytplayer_vjVQa1PpcFOR6lddZw4OvPyGlZce6SA8M68etWbzGvc='><a href='http://www.youtube.com/browse'>Watch the latest videos on YouTube.com</a></div>
<p><script type="text/javascript" src="http://www.youtube.com/cp/vjVQa1PpcFOR6lddZw4OvPyGlZce6SA8M68etWbzGvc="></script></p>
<p>Some of the advantages of Video Units over regular ads are:</p>
<p>You will now deliver content to your site as opposed to ads. You can also make the content relevant by choosing from&nbsp;categories you wish to have shown. The ads in videos are not obtrusive and you make money from them. You are actually enhancing the user experience and helping to attract and retain users. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.seifi.org/searching/google-youtube-video-units-released.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YouTube Video Units coming to Google AdSense</title>
		<link>http://www.seifi.org/business/youtube-video-units-coming-to-google-adsense.html</link>
		<comments>http://www.seifi.org/business/youtube-video-units-coming-to-google-adsense.html#comments</comments>
		<pubDate>Sat, 29 Sep 2007 22:14:48 +0000</pubDate>
		<dc:creator>Joe Seifi</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.seifi.org/design/youtube-video-units-coming-to-google-adsense.html</guid>
		<description><![CDATA[Google seems to be finally gearing up to cash in on its $1.65 billion investment in YouTube.&#160;&#160;Google AdSense is&#160;going to be rolling out Video Units.&#160; Publishers will be able to&#160;make money from YouTube videos&#160;with embedded AdSense ads. The full details are yet to be released, but here is a preview of what we can expect. [...]]]></description>
			<content:encoded><![CDATA[<p>Google seems to be finally gearing up to cash in on its $1.65 billion investment in YouTube.&nbsp;&nbsp;Google AdSense is&nbsp;going to be <a href="http://www.youtube.com/adsense_learn" target="_blank">rolling out Video Units</a>.&nbsp; Publishers will be able to&nbsp;make money from YouTube videos&nbsp;with embedded AdSense ads. The full details are yet to be released, but here is a preview of what we can expect.<span id="more-597"></span>
<p>From what is available on the promo page it looks like you the ads&nbsp;will not be in the same area as the movie, but they appear as part of the YouTube player and outside of the video content to ensure a smooth user experience. <img src='http://www.seifi.org/wp-content/uploads/2007/09/adsense_preview.png' alt='YouTube AdSense Preview' align="left" hspace="10" vpace="5" /> Here is a sample screenshot of how the new YouTube video Ad Units&nbsp;will look like. You will also be able to <a href="http://www.youtube.com/custom_player" target="_blank">customize</a> the color scheme of the flash player to fit your blog or portals look and feel.
<p>The content of the ads will be relevant to the video itself, something that AdSense has already perfected down to a science. Let&#8217;s hope that publishers will&nbsp;have the option to&nbsp;choose specific videos to be shown, or at least choose from a narrow range of topics.
<p>This is&nbsp;a win-win deal for all the parties and&nbsp;great for you publishers, since it will allow you to not only improve your content by adding the YouTube content to your site, but also give you a new source of income.&nbsp; Checking my Google AdSense account, I am not seeing any information on these video ads yet. There is a mention of a &#8220;button&#8221; on the YouTube promo page, but the button is not there! Hopefully we will hear more from Google soon. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.seifi.org/business/youtube-video-units-coming-to-google-adsense.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPod Killer? Zune 30 GB Digital Media Player &#8211; Released</title>
		<link>http://www.seifi.org/business/ipod_killer_zune_30_gb_digital_media_player_-_released.html</link>
		<comments>http://www.seifi.org/business/ipod_killer_zune_30_gb_digital_media_player_-_released.html#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Joe Seifi</dc:creator>
				<category><![CDATA[business]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Zune is here! Here&#8217;s what the zune can do that the iPod can not: Simple wireless downloading and sharing Hi-defenition LCD screen Open and Simple audio &#38; video encodings Preloaded video cards, SD &#38; Flash to be available Microsoft software compatibility X-Box compatibility FM Radio (I think this is a big one for some people) [...]]]></description>
			<content:encoded><![CDATA[<p>Zune is here! Here&#8217;s what the zune can do that the iPod can not:</p>
<ul>
<li>Simple wireless downloading and sharing</li>
<li>Hi-defenition LCD screen</li>
<li>Open and Simple audio &amp; video encodings</li>
<li>Preloaded video cards, SD &amp; Flash to be available <span id="more-144"></span></li>
<li>Microsoft software compatibility</li>
<li>X-Box compatibility</li>
<li>FM Radio (I think this is a big one for some people)</li>
<li>Advanced Chips</li>
<li>Advanced audio quality</li>
</ul>
<p>but some other things I would like to know first are:</p>
<ul>
<li>Battery life (will it die faster with the LCD?)</li>
<li>Weight (is it a rock?)</li>
<li>Reliability (how often does it crash?)</li>
</ul>
<p>Many people including myself are already iPod owners and will probably not invest in another expensive device for some time. Zune Marketplace (the iTunes competition) is to be released tomorrow, so I will have to wait and see how the MS software competes with iTunes, because quite frankly I love what iTunes can do for me and think it will be tough to make a better product. From what I can see you have to buy Microsoft Points. I can see how they are trying to save money by consolidating credit card processing charges. Depending on the user interface this might also be a cumbersome workflow. Overall, Zune is good for the competition and good for consumers, wheter Microsoft wins or loses.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.seifi.org/business/ipod_killer_zune_30_gb_digital_media_player_-_released.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>All your Base are belong to us!</title>
		<link>http://www.seifi.org/business/all_your_base_are_belong_to_us.html</link>
		<comments>http://www.seifi.org/business/all_your_base_are_belong_to_us.html#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Joe Seifi</dc:creator>
				<category><![CDATA[business]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Watch out eBay, here comes Base, Google <a href="http://base.google.com/">Base</a> that is. Today the <a href="http://www.google.com/search?q=goog">GOOG</a> stock hit the $400 mark after the general public caught on.

It will be sometime before you can find your next <a href="http://base.google.com/base/search?q=tickets">concert ticket</a> on Google Base and purchase it from Google. Completion of Google Wallet will help.

<blockquote>
It remained to be seen how eBay, which owns a stake in craigslist, will react to the potential for Google to become a competitor. <small><a href="http://news.yahoo.com/s/afp/20051117/bs_afp/usinternetadvertise">&#62;&#62;</a></small>
</blockquote>
]]></description>
			<content:encoded><![CDATA[<p>Watch out eBay, here comes Base, Google <a href="http://base.google.com/">Base</a> that is. Today the <a href="http://www.google.com/search?q=goog">GOOG</a> stock hit the $400 mark after the general public caught on.</p>
<p>It will be sometime before you can find your next <a href="http://base.google.com/base/search?q=tickets">concert ticket</a> on Google Base and purchase it from Google. Completion of Google Wallet will help.</p>
<blockquote><p>It remained to be seen how eBay, which owns a stake in craigslist, will react to the potential for Google to become a competitor. <small><a href="http://news.yahoo.com/s/afp/20051117/bs_afp/usinternetadvertise">&gt;&gt;</a></small></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.seifi.org/business/all_your_base_are_belong_to_us.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Missed Tax Deductions</title>
		<link>http://www.seifi.org/business/missed_tax_deductions.html</link>
		<comments>http://www.seifi.org/business/missed_tax_deductions.html#comments</comments>
		<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate>
		<dc:creator>Joe Seifi</dc:creator>
				<category><![CDATA[business]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This is a great list of 55 commonly <a href="http://www.selfemployedweb.com/tax-omissions.htm" title="Missed Tax Deductions">Missed Tax Deductions</a>. Some of the most tricky ones I found are: <ul><li>Penalty on early withdrawal of savings </li><li>Failing to add the amount of reinvested funds (e.g., dividends) to your cost when computing gain or loss on the sale of mutual funds </li><li>Business gifts to a maximum of $25 per recipient </li><li>Mortgage prepayment penalties </li><li>Points or origination fees on a mortgage to purchase a residence </li><li>Accounting fees for tax preparation </li><li>Depreciation on home computers to the extent used for business or investments </li></ul>]]></description>
			<content:encoded><![CDATA[<p>This is a great list of 55 commonly <a href="http://www.selfemployedweb.com/tax-omissions.htm" title="Missed Tax Deductions">Missed Tax Deductions</a>. Some of the most tricky ones I found are:</p>
<ul>
<li>Penalty on early withdrawal of savings</li>
<li>Failing to add the amount of reinvested funds (e.g., dividends) to your cost when computing gain or loss on the sale of mutual funds</li>
<li>Business gifts to a maximum of $25 per recipient</li>
<li>Mortgage prepayment penalties</li>
<li>Points or origination fees on a mortgage to purchase a residence</li>
<li>Accounting fees for tax preparation</li>
<li>Depreciation on home computers to the extent used for business or investments</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.seifi.org/business/missed_tax_deductions.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

