<?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>kharkovyy [dot] com &#187; Blog</title>
	<atom:link href="http://kharkovyy.com/category/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://kharkovyy.com</link>
	<description>kharkovyy family blog</description>
	<lastBuildDate>Mon, 23 Jan 2012 03:17:10 +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>Adding iMessage Support to iOS Apps</title>
		<link>http://kharkovyy.com/2011/12/12/adding-imessage-support-to-ios-apps/</link>
		<comments>http://kharkovyy.com/2011/12/12/adding-imessage-support-to-ios-apps/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 03:29:43 +0000</pubDate>
		<dc:creator>AK</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[app development]]></category>
		<category><![CDATA[iMessage]]></category>
		<category><![CDATA[iMessage app]]></category>
		<category><![CDATA[iMessage ios]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iOS development]]></category>
		<category><![CDATA[sms app]]></category>
		<category><![CDATA[xcode]]></category>
		<category><![CDATA[Xcode project]]></category>

		<guid isPermaLink="false">http://kharkovyy.com/?p=191</guid>
		<description><![CDATA[Here&#8217;s few steps on how to add iMessage support to your Xcode project: Step 1: Add &#8220;MessageUI.framework&#8221; into your Xcode Project &#160; &#160; &#160; &#160; &#160; Step 2: Call the function in your ViewController.m file like so:   #import &#8220;MessageUI/MessageUI.h&#8221; Step 3: This code goes into your ViewController.m file: Step 4: Beneath that allow for the [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s few steps on how to add iMessage support to your Xcode project:</p>
<p><span id="more-191"></span></p>
<p><strong>Step 1:</strong> Add &#8220;MessageUI.framework&#8221; into your Xcode Project</p>
<p><a href="http://kharkovyy.com/wp-content/uploads/2011/12/imessagexcode1.png"><img class="size-full wp-image-192 alignleft" title="imessagexcode1" src="http://kharkovyy.com/wp-content/uploads/2011/12/imessagexcode1.png" alt="" width="400" height="149" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><strong>Step 2:</strong> Call the function in your ViewController.m file like so:   <strong>#import &#8220;MessageUI/MessageUI.h&#8221;</strong></p>
<p><strong>Step 3:</strong> This code goes into your ViewController.m file:</p>
<div class="box box-note">
<div class="box-inline">
<p>-(IBAction) sendInAppSMS:(id) sender</p>
<p>{</p>
<p>MFMessageComposeViewController *controller = [[[MFMessageComposeViewController alloc] init] autorelease];</p>
<p>if([MFMessageComposeViewController canSendText])</p>
<p>{</p>
<p>controller.body = @&#8221;Hello from  Andriy Kharkovyy&#8221;;</p>
<p>controller.recipients = [NSArray arrayWithObjects:@"1232221111", nil];</p>
<p>controller.messageComposeDelegate = self;</p>
<p>[self presentModalViewController:controller animated:YES];</p>
<p>}</p>
<p>}</p>
</div>
</div>
<p><strong>Step 4:</strong> Beneath that allow for the action to be terminated like so:</p>
<div class="box box-note">
<div class="box-inline">
<p>- (void) messageComposeViewController:(MFMessageComposeViewController *)</p>
<p>controller didFinishWithResult:(MessageComposeResult)result</p>
<p>{</p>
<p>UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@&#8221;MyApp&#8221; message:@&#8221;Unknown Error&#8221;</p>
<p>delegate:self cancelButtonTitle:@&#8221;OK&#8221; otherButtonTitles: nil];</p>
<p>switch (result) {</p>
<p>case MessageComposeResultCancelled:</p>
<p>NSLog(@&#8221;Cancelled&#8221;);</p>
<p>break;</p>
<p>case MessageComposeResultFailed:</p>
<p>[alert show];</p>
<p>break;</p>
<p>case MessageComposeResultSent:</p>
<p>break;</p>
<p>default:</p>
<p>break;</p>
<p>}</p>
<p>[alert release];</p>
<p>[self dismissModalViewControllerAnimated:YES];</p>
<p>}</p>
</div>
</div>
<p>&nbsp;</p>
<p>That&#8217;s about it.</p>
]]></content:encoded>
			<wfw:commentRss>http://kharkovyy.com/2011/12/12/adding-imessage-support-to-ios-apps/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Offline Windows Password &amp; Registry Editor</title>
		<link>http://kharkovyy.com/2011/12/08/offline-windows-password-registry-editor/</link>
		<comments>http://kharkovyy.com/2011/12/08/offline-windows-password-registry-editor/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 02:52:39 +0000</pubDate>
		<dc:creator>AK</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[password reset]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows password]]></category>
		<category><![CDATA[windows security]]></category>
		<category><![CDATA[winxp]]></category>

		<guid isPermaLink="false">http://kharkovyy.com/?p=178</guid>
		<description><![CDATA[Let me just say I hate dealing with old windows computers, but once in a while you come across a computer that needs some help and Re-Installing Windows is not an option. It has been a rare instance for me and typically I just ended up re-installing but in this particular instance there were just [...]]]></description>
			<content:encoded><![CDATA[<p>Let me just say I hate dealing with old windows computers, but once in a while you come across a computer that needs some help and Re-Installing Windows is not an option. It has been a rare instance for me and typically I just ended up re-installing but in this particular instance there were just too many machines with some information that was going to be too difficult to replace so I thought to finally find a solution.<br />
<span id="more-178"></span><br />
After lots of googling I found a site that provides a bootable cd/usb/floppy (yes, floppy) with help of which you can reset or re-enable local user accounts. This is particularly handy when you took a Windows XP machine off the domain and do not know Administrator password or all the passwords were cashed on the server.</p>
<p>So this is what I did, I went to this site: <a href="http://pogostick.net/~pnh/ntpasswd/">http://pogostick.net/~pnh/ntpasswd/</a><br />
Downloaded the iso there. Burned it with my Mac and booted into it on the Win Xp box. Then you run thought some fairly straight forward menus and you&#8217;re all set.<br />
This tool saved me hours of re-installing! So i hope it&#8217;ll help others as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://kharkovyy.com/2011/12/08/offline-windows-password-registry-editor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Puppy relaxing</title>
		<link>http://kharkovyy.com/2011/11/09/puppy-relaxing/</link>
		<comments>http://kharkovyy.com/2011/11/09/puppy-relaxing/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 01:43:26 +0000</pubDate>
		<dc:creator>AK</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[keira]]></category>

		<guid isPermaLink="false">http://kharkovyy.com/2011/11/09/puppy-relaxing/</guid>
		<description><![CDATA[&#160; &#160; &#160; apparently she had a hard day&#8230;]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>apparently she had a hard day&#8230;<span id="more-176"></span></p>
<p><a href="http://kharkovyy.com/wp-content/uploads/2011/11/20111108-204224.jpg"><img class="alignnone size-full" src="http://kharkovyy.com/wp-content/uploads/2011/11/20111108-204224.jpg" alt="20111108-204224.jpg" width="672" height="504" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://kharkovyy.com/2011/11/09/puppy-relaxing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comcast SMC and Airport Extreme</title>
		<link>http://kharkovyy.com/2011/08/25/comcast-smc-and-airport-extreme/</link>
		<comments>http://kharkovyy.com/2011/08/25/comcast-smc-and-airport-extreme/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 02:04:47 +0000</pubDate>
		<dc:creator>AK</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[airport extreme]]></category>
		<category><![CDATA[comcast]]></category>
		<category><![CDATA[comcast business class]]></category>
		<category><![CDATA[hsi]]></category>
		<category><![CDATA[smc gateway]]></category>

		<guid isPermaLink="false">http://kharkovyy.com/?p=160</guid>
		<description><![CDATA[So, recently I switched to Comcast Business Class internet due to my work causing me to go over those ridiculous 250gb caps. But ever since they put in that SMC modem I have been hating the fact that now the modem was acting as a DHCP server and not my Airport Extreme, this was causing [...]]]></description>
			<content:encoded><![CDATA[<p>So, recently I switched to Comcast Business Class internet due to my work causing me to go over those ridiculous 250gb caps. But ever since they put in that SMC modem I have been hating the fact that now the modem was acting as a DHCP server and not my Airport Extreme, this was causing some issues with &#8220;BackToMac&#8221; amongst other things..</p>
<p><span id="more-160"></span></p>
<p><a href="http://kharkovyy.com/wp-content/uploads/2011/08/LittleSnapper.png"><img class="size-full wp-image-165 alignleft" title="LittleSnapper" src="http://kharkovyy.com/wp-content/uploads/2011/08/LittleSnapper.png" alt="" width="531" height="376" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Here&#8217;s what i did to solve this:</p>
<p>I unchecked everything under Lan and Firewall and made sure that the Comcast SMC box is really acting just as a modem. I kept the default 10.1.10.1 IP and the subnet mask. Since I don&#8217;t subscribe to the Comcast static IP i will be still stuck with the IP the modem passes on ( 10.1.10&#8230;.) but at least modem isn&#8217;t the one handing over the IP&#8217;s so i have more options..</p>
<p><a href="http://kharkovyy.com/wp-content/uploads/2011/08/Firefox.png"><img class="aligncenter size-full wp-image-164" title="Firefox" src="http://kharkovyy.com/wp-content/uploads/2011/08/Firefox.png" alt="" width="526" height="372" /></a></p>
<p>Then on the airport utility i manually told it to use router address 10.1.10.1 and assigned it address on the same subnet (even though SMC box is not handing anything out anymore)</p>
<p><a href="http://kharkovyy.com/wp-content/uploads/2011/08/AirPort-Utility.png"><img class="aligncenter size-full wp-image-163" title="AirPort Utility" src="http://kharkovyy.com/wp-content/uploads/2011/08/AirPort-Utility.png" alt="" width="401" height="313" /></a><br />
Then i told the Airport to distribute range of IP&#8217;s (if you use option of sharing public ip you will get some NAT translation conflicts) and that&#8217;s it. So now my SMC is just handling internet traffic and the airport handing out IPs and NAT stuff.</p>
<p><a href="http://kharkovyy.com/wp-content/uploads/2011/08/AirPort-Utility-2.png"><img class="aligncenter size-full wp-image-162" title="AirPort Utility 2" src="http://kharkovyy.com/wp-content/uploads/2011/08/AirPort-Utility-2.png" alt="" width="409" height="304" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://kharkovyy.com/2011/08/25/comcast-smc-and-airport-extreme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>downtown san diego from the ocean</title>
		<link>http://kharkovyy.com/2011/01/31/downtown-san-diego-from-the-ocean/</link>
		<comments>http://kharkovyy.com/2011/01/31/downtown-san-diego-from-the-ocean/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 21:51:43 +0000</pubDate>
		<dc:creator>AK</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://kharkovyy.com/2011/01/31/downtown-san-diego-from-the-ocean/</guid>
		<description><![CDATA[downtown san diego from the ocean, originally uploaded by andriy kharkovyy. went out an a boat into san diego bay the other night&#8230;more pictures on flickr]]></description>
			<content:encoded><![CDATA[<div style="text-align: left; padding: 3px;"><a title="photo sharing" href="http://www.flickr.com/photos/kharkovyy/5401982736/"><img class="alignnone" src="http://farm6.static.flickr.com/5175/5401982736_bda11b29b5.jpg" alt="" width="500" height="333" /></a><span style="font-size: 0.8em; margin-top: 0px;"><a href="http://www.flickr.com/photos/kharkovyy/5401982736/">downtown san diego from the ocean</a>, originally uploaded by <a href="http://www.flickr.com/people/kharkovyy/">andriy kharkovyy</a>.</span></p>
</div>
<p>went out an a boat into san diego bay the other night&#8230;more pictures on flickr</p>
]]></content:encoded>
			<wfw:commentRss>http://kharkovyy.com/2011/01/31/downtown-san-diego-from-the-ocean/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>morning in Minneapolis</title>
		<link>http://kharkovyy.com/2011/01/29/morning-in-minneapolis/</link>
		<comments>http://kharkovyy.com/2011/01/29/morning-in-minneapolis/#comments</comments>
		<pubDate>Sat, 29 Jan 2011 15:45:15 +0000</pubDate>
		<dc:creator>AK</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[air]]></category>
		<category><![CDATA[personal]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://kharkovyy.com/2011/01/29/morning-in-minneapolis/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><span id="more-150"></span><br />
<a href="http://kharkovyy.com/wp-content/uploads/2011/01/20110129-093031.jpg"><img src="http://kharkovyy.com/wp-content/uploads/2011/01/20110129-093031.jpg" alt="" class="alignnone size-full" /></a><br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://kharkovyy.com/2011/01/29/morning-in-minneapolis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wsj website issue exposes emails?</title>
		<link>http://kharkovyy.com/2011/01/28/wsj-website-problems-exposing-user-email-addresses/</link>
		<comments>http://kharkovyy.com/2011/01/28/wsj-website-problems-exposing-user-email-addresses/#comments</comments>
		<pubDate>Fri, 28 Jan 2011 15:25:25 +0000</pubDate>
		<dc:creator>AK</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[site issues]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wsj]]></category>

		<guid isPermaLink="false">http://kharkovyy.com/?p=125</guid>
		<description><![CDATA[Over the last week wsj.com has had some issues. when clicking on the articles the webpage would loose it&#8217;s formatting and display bunch of gibberish. Personally i think for an enterprise this large, issues lasting this long are unacceptable but what&#8217;s more troublesome is the information they are displaying on these corrupted pages. Below are [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last week wsj.com has had some issues. when clicking on the articles the webpage would loose it&#8217;s formatting and display bunch of gibberish. Personally i think for an enterprise this large, issues lasting this long are unacceptable but what&#8217;s more troublesome is the information they are displaying on these corrupted pages.</p>
<p><span id="more-125"></span><br />
Below are some screenshots of random user email addresses that are being displayed near the newsletter subscription box. It appears that anyone can go in and harvest these emails for all sorts of reasons.</p>
<p>All this drama surrounding <a href="http://www.dailytech.com/ATTs+Gaping+Hole+Exposes+114000+iPad+3G+Buyers+Email+Addresses/article18670.htm">iPad user emails being displayed</a> to some hackers and here it is on wall street journal and you dont&#8217; need to do any hacking to see this info&#8230;</p>
<div class="galleria medium" style="width:760px; height:600px; margin: auto;">
<img title="" alt="" src="http://kharkovyy.com/wp-content/uploads/2011/01/Google-Chrome.png"><br />
<img title="" alt="" src="http://kharkovyy.com/wp-content/uploads/2011/01/Google-Chrome-4.png"><br />
<img title="" alt="" src="http://kharkovyy.com/wp-content/uploads/2011/01/Google-Chrome-3.png">
</div>
<p><a href="http://kharkovyy.com/wp-content/uploads/2011/01/Google-Chrome-2.png"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://kharkovyy.com/2011/01/28/wsj-website-problems-exposing-user-email-addresses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>keira &#8220;guarding&#8221; my bed</title>
		<link>http://kharkovyy.com/2011/01/25/keira-guarding-my-bed/</link>
		<comments>http://kharkovyy.com/2011/01/25/keira-guarding-my-bed/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 03:19:49 +0000</pubDate>
		<dc:creator>AK</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[dog]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[keira]]></category>
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://kharkovyy.com/2011/01/25/keira-guarding-my-bed/</guid>
		<description><![CDATA[my dog, she&#8217;s almost 2]]></description>
			<content:encoded><![CDATA[<p><span id="more-86"></span></p>
<div style="text-align: left; padding: 3px;"><a title="photo sharing" href="http://www.flickr.com/photos/kharkovyy/5386096456/"><img style="border: solid 2px #000000;" src="http://farm6.static.flickr.com/5219/5386096456_9eb20ed14c.jpg" alt="" /></a></p>
<p>my dog, she&#8217;s almost 2</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://kharkovyy.com/2011/01/25/keira-guarding-my-bed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WGO Case &#8211; Winnebago Case &#8211; BSAD-689</title>
		<link>http://kharkovyy.com/2008/07/28/wgo-case-winnebago-case-bsad-689/</link>
		<comments>http://kharkovyy.com/2008/07/28/wgo-case-winnebago-case-bsad-689/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 15:47:35 +0000</pubDate>
		<dc:creator>AK</dc:creator>
				<category><![CDATA[Academic]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[academics]]></category>
		<category><![CDATA[assignments]]></category>
		<category><![CDATA[bsad]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[school]]></category>
		<category><![CDATA[schoolofbusiness]]></category>
		<category><![CDATA[wgo]]></category>
		<category><![CDATA[winnebago]]></category>

		<guid isPermaLink="false">http://kharkovyy.com/?p=141</guid>
		<description><![CDATA[Problem Statement Winnebago is facing withering sales in the RV industry. Economic forces have led to increase gas prices and high interest rates that caused significant increase in logistic cost, low production levels, and decreasing sales. Symptoms 1. Increasing gas prices. An average gas price in the US in July 2002 was around $1.32 per [...]]]></description>
			<content:encoded><![CDATA[<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px 'Times New Roman'} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 10.8px Calibri; min-height: 13.0px} p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 9.8px 'Times New Roman'} p.p4 {margin: 0.0px 0.0px 0.0px 0.0px; font: 8.4px Calibri} p.p5 {margin: 0.0px 0.0px 0.0px 0.0px; font: 7.7px Arial} p.p6 {margin: 0.0px 0.0px 0.0px 0.0px; font: 9.8px Calibri; min-height: 11.0px} p.p7 {margin: 0.0px 0.0px 0.0px 0.0px; font: 10.8px 'Times New Roman'} p.p8 {margin: 0.0px 0.0px 0.0px 0.0px; font: 10.8px Arial; color: #424242} span.s1 {font: 7.9px 'Times New Roman'} span.s2 {font: 6.5px 'Times New Roman'} span.s3 {font: 12.0px Symbol} span.s4 {font: 7.0px 'Times New Roman'} span.Apple-tab-span {white-space:pre} --><strong>Problem Statement</strong></p>
<p>Winnebago is facing withering sales in the RV industry. Economic forces have led to increase gas prices and high interest rates that caused significant increase in logistic cost, low production levels, and decreasing sales.</p>
<p><span id="more-141"></span></p>
<div class="box box-info">
<div class="box-inline">
<div class="box-title">Download PDF of the WGO Handout</div>
<p><a class="downloadlink" href="http://kharkovyy.com/sandbox/5" title="Version1.4 downloaded 56 times" >WGO Case Handout (56)</a></p>
</div>
</div>
<div class="box box-note">
<div class="box-inline">
<div class="box-title">Download PDF of the WGO Case here</div>
<p><a class="downloadlink" href="http://kharkovyy.com/sandbox/6" title="Version2.0 downloaded 135 times" >WGO Case Report Paper (135)</a></p>
</div>
</div>
<p><strong>Symptoms</strong></p>
<p>1. Increasing gas prices. An average gas price in the US in July 2002 was around $1.32 per gallon and has increased to an average of $4.10 per gallon in the US in July 2008 <em>(Exhibit 1).</em></p>
<p>2. Increase in interest rates has resulted to low purchasing power for consumers in the market to purchase big items <em>(Exhibit 2).</em></p>
<p>3.	Poor gas mileage. A Class-A Winnebago gets an average of 6 miles to the gallon1. 4.	Inventory increased by 31.3% in August 20072. 5. Net Sales decreased 12.86% in August 2006 from the previous year and has only increased 0.67% in August 2007 <em>(Exhibit 3)</em>. <strong>Mission Statement</strong></p>
<p>Mission statement can be found in <em>Exhibit 4</em>. Winnebago has a strong mission statement. It mentions the company’s devotion to quality in its product and services. It declares the type of products or services that the company provides to their customer and thus it clearly shows the type of industry that the firm is in. In its mission statement, Winnebago does not address any environmental concerns. The firms should indicate that it would put its best effort to protect the environment.</p>
<p>1 http://www.edmunds.com/fueleconomy/ 2 Inventories, as of 8/25/07, were $101.21 million. Inventories, as of 8/26/06, were $77.08 million. &lt;http://finance.yahoo.com/&gt;</p>
<p><strong>Background</strong>3 In 1958, businessman John K. Hanson and his colleagues convinced a California</p>
<p>company to open a travel trailer factory in Forest City, Iowa. In 1960, the company’s name was changed to Winnebago Industries. Winnebago is now a leading manufacturer of motor home and uses state-of-the-art computer-aided design and manufacturing systems. The company owns its land, buildings, and equipment and thus it doesn’t have any long-term debt. Winnebago has strong brand recognition. In fact, Winnebago is considered synonymous with the term motor home. Furthermore, Winnebago is a company that strives to a higher standard of ethics and has established a 13-point code of ethics in its company. Winnebago has a strong commitment to quality and sees quality as a journey and not a destination.</p>
<p><strong>Assumptions</strong></p>
<p>•	Gas Prices will continue to increase in the future. • New technology will allow for different alternative fuels, which will minimize</p>
<p>environmental footprint since they would be more efficient than gasoline. •	There will always be a market for recreational entertainment to target. •	Winnebago sees an alternative option to explore the opportunity in the market of renting</p>
<p>RVs.</p>
<p>3 http://www.winnebagoind.com/company/about-us/story.php</p>
<p><strong>External Factor Evaluation (EFE) Matrix</strong></p>
<p><strong>Internal Factor Evaluation Matrix</strong></p>
<p><strong>SWOT Matrix</strong></p>
<p><strong>Alternatives</strong></p>
<p>•	100% Customization. A major benefit to this alternative is that it will give the customer freedom to choose options that they feel would best meet their needs. The disadvantage</p>
<p><strong>$%&amp;(2)%,+#-#$</strong></p>
<p><strong>!(&#8217;42(++(+#-#!</strong></p>
<p>!</p>
<p>&#8220;#$%&amp;&#8217;(()*(+,&#8217;%#-*&#8217;.+$/*%+0*1*.&#8217;&amp;2#%3</p>
<p>!</p>
<p>4#&amp;+*-)$&#8217;.5,*+6*-#35/$</p>
<p>7</p>
<p>8%&amp;+$/*9&amp;&#8217;$-*&amp;#,+/$5:+$</p>
<p>7</p>
<p>;$,&amp;#&#8217;3#*5$*5$&lt;#$%+&amp;)</p>
<p>1</p>
<p>;.0(#.#$:$/*$#=*%#,&gt;$+(+/)</p>
<p>1</p>
<p>?&#8217;,2*+6*6@#(*#A,5#$,)</p>
<p>B</p>
<p>C++-*,+&amp;0+&amp;&#8217;%#*,@(%@&amp;#*&#8217;$-*#%&gt;5,3</p>
<p>B</p>
<p>?&#8217;,2*+6*-5&lt;#&amp;35%)*+$*.&#8217;$'/#.#$%* D/&amp;+@0%&gt;5$2E</p>
<p>F</p>
<p>G.0&gt;&#8217;353*+$*,@3%+.5H&#8217;:+$</p>
<p>F</p>
<p>I#,&amp;#&#8217;3#*5$*3&#8242;(#3</p>
<p>J</p>
<p>GK,#((#$%*L@&#8217;(5%)*&#8217;$-*,@3%+.#&amp;*3#&amp;&lt;5,#</p>
<p>J</p>
<p>I#,&amp;#&#8217;3#*5$*$#%*5$,+.#</p>
<p>M</p>
<p>N+*(+$/*%#&amp;.*-#9%*D,&#8217;05%&#8217;(*+=$#&amp;3&gt;50E</p>
<p>M</p>
<p>GK0#$35&lt;#*O&amp;+-@,%3</p>
<p>P</p>
<p>I53%&amp;59@:+$*%&gt;&amp;+@/&gt;*(&#8216;&amp;/#*-#&#8217;(#&amp;3&gt;503</p>
<p>Q</p>
<p>C&amp;#&#8217;%*RSI*0&amp;+/&amp;&#8217;.*T*0&amp;+-@,%*%#3:$/</p>
<p>!U</p>
<p>GA,5#$%*.&#8217;$'/#.#$%*+6*5$6+&amp;.&#8217;:+$* 3)3%#.</p>
<p>!!</p>
<p>C&amp;#&#8217;%*L@&#8217;(5%)*,+$%&amp;+(</p>
<p>!7</p>
<p>C++-*&lt;&#8217;(@#*,&gt;&#8217;5$*&#8217;$'()353*%&gt;&#8217;%*:#3*%+* 3%&amp;&#8217;%#/5,*/#+/&amp;&#8217;0&gt;5,*0+35:+$</p>
<p>!1</p>
<p>V&#8217;&amp;5#%)*+6*0&amp;+-@,%3*T*1*-5W#&amp;#$%*25$-3* +6*0&amp;+-@,%*,(&#8217;335X,&#8217;:+$3</p>
<p><strong>.//0&amp;%12*3(+#-#.</strong></p>
<p><strong>$.#$%&amp;&#8217;%()*(+</strong></p>
<p><strong>!.#$%&amp;&#8217;%()*(+</strong></p>
<p>!</p>
<p>G.#&amp;/5$/*RV*&amp;#$%&#8217;(*.&#8217;&amp;2#%*D&#8221;&amp;@53#* 4.#&amp;5,&#8217;E</p>
<p>!</p>
<p>4,L@5&amp;#*,+$%&amp;&#8217;,%3*=5%&gt;*1*.&#8217;Y+&amp;*RV* &amp;#$%&#8217;(*,+.0&#8242;$5#3Z*D87[*8!1[*\!E</p>
<p>!</p>
<p>G$%#&amp;*'*,+$%&amp;',%*=5%&gt;*]+$-&#8217;*6+&amp;*@35$/* &gt;)-&amp;+/#$*6@#(*D^1[*\1E</p>
<p>7</p>
<p>_'&lt;+&amp;'9(#*-#.+/&amp;5,*%&amp;#$-*D;$,&amp;#'3#*5$* &amp;#:&amp;##3E</p>
<p>7</p>
<p>I#&lt;#(+0*.'&amp;2#:$/*,'.0'5/$*%'&amp;/#:$/* 3#$5+&amp;*,5:H#$3*T*'-&lt;#&amp;:3#*5$*44RO* .'/'H5$#[*%&lt;*,+..#&amp;,5'(3[*#%,Z*D87[* \7E</p>
<p>7</p>
<p>\@%3+@&amp;,#*&amp;#$%'(*,+$%&amp;',%3*%+* G$%#&amp;0&amp;53#*%+*&amp;#-@,#*5$&lt;#$%+&amp;)*D^7[* \!E</p>
<p>1</p>
<p>;$$+&lt;':+$*+6*$#=*%#,&gt;$+(+/)</p>
<p>1</p>
<p>I#&lt;#(+0*$#=*3)3%#.*%&gt;'%*3@00+&amp;%*%&gt;#* `C+*C&amp;##$`*5$5:':&lt;#*D81[*\1[*\BE</p>
<p>1</p>
<p>R#-#35/$*RVa3*9+-)*3%&amp;@,%@&amp;#b#K%#&amp;5+&amp;* @35$/*"4I*3)3%#.*D^![*\1E</p>
<p>B</p>
<p>^5-#*',,#0%'$,#*+6*`C+*C&amp;##$* 0&amp;+/&amp;'.`</p>
<p>B</p>
<p>"&amp;#'%#*'$-*5.0(#.#$%**5$%#&amp;$'(*`C+* C&amp;##$`*,'.0'5/$*D8B[*\BE</p>
<p>B</p>
<p>"+$-@,%*'*6+,@3/&amp;+@0*3%@-)*%+* /#$#&amp;'%#*5-#'3*+6*#K,##-5$/*,@3%+.#&amp;* #K0#,%':+$*D^B[*\FE</p>
<p>F</p>
<p>O&amp;+-@,%*,@3%+.5H':+$*'95(5%)</p>
<p>F</p>
<p>;.0(#.#$%*'*1TI*0#&amp;3+$'(5H':+$* 0+&amp;%'(*%+*9#*@3#-*=&gt;#$*+&amp;-#&amp;5$/*D81[* 8F[*8!![*\FE*</p>
<p>F</p>
<p>"&amp;#'%#*'$-*5.0(#.#$%**5$%#&amp;$'(*`C+* C&amp;##$`*,'.0'5/$*D^F[*\BE</p>
<p><strong>",&amp;('%+#-#"</strong></p>
<p><strong>$"#$%&amp;'%()*(+</strong></p>
<p><strong>!"#$%&amp;'%()*(+</strong></p>
<p>!</p>
<p>4(%#&amp;$':&lt;#*6+&amp;.3*+6*%&amp;'&lt;#(*D&amp;#3+&amp;%3[* ,&amp;@53#3[*&gt;+%#(3[*#%,ZE</p>
<p>!</p>
<p>Purchase ad space in travel websites (expedia, priceline, etc.) to promote its RV products (S2, S13, T1)</p>
<p>!</p>
<p>\@%3+@&amp;,#*&amp;#$%'(*,+$%&amp;',%3*%+* G$%#&amp;0&amp;53#*%+*&amp;#-@,#*5$&lt;#$%+&amp;)*D^7[* ^M[*c1[*cBE</p>
<p>7</p>
<p>B*.'5$*,+.0#:%+&amp;3*TT*"+',&gt;.'$[* _(##%=++-[*d+$',+*"+',&gt;[*c&gt;+&amp;</p>
<p>7</p>
<p>"&amp;#'%#*'*&lt;5-#+*6+&amp;*%&gt;#*-#'(#&amp;3&gt;50*'$-* %&gt;#*X&amp;.a3*=#935%#*-#.+3$%&amp;':$/*%&gt;#* #K,#((#$%*L@'(5%)*'$-*%&gt;#*/&amp;#'%* ,@3%+.#&amp;*3#&amp;&lt;5,#*D8J[*8P[*c7E</p>
<p>7</p>
<p>Enter a contract with Honda for using hydrogen fuel (W3, T4)</p>
<p>1</p>
<p>;$-@3%&amp;)*%&amp;#$-*+6*5$,&amp;#'35$/*5$&lt;#$%+&amp;)* '$-*-#,&amp;#'35$/*&amp;#&lt;#$@#*/&amp;+=%&gt;</p>
<p>1</p>
<p>G$%#&amp;*'*,+$%&amp;',%*=5%&gt;*]+$-&#8217;*6+&amp;*@35$/* &gt;)-&amp;+/#$*6@#(*D81[*cFE</p>
<p>1</p>
<p>Redesign RV&#8217;s body structure/exterior using CAD system (W3, T4)</p>
<p>B</p>
<p>G,+$+.5,*6+&amp;,#3*TT*&gt;5/&gt;*/&#8217;3*0&amp;5,#[* -#,(5$#*5$*0@&amp;,&gt;&#8217;35$/*0+=#&amp;[*#,+$+.5,* -#,(5$#</p>
<p>B</p>
<p>Create and implement internal &#8220;Go Green&#8221; campaign (W5,T2, T5)</p>
<p>F</p>
<p>;$,&amp;#&#8217;3#*5$*#$&lt;5&amp;+$.#$%&#8217;(*,+$,#&amp;$</p>
<p>associated with this is that the factory is no longer to mass produce; causing increased</p>
<p>manufacturing costs and inefficiencies. •	“Go Green” program. This alterative will result in good PR and show the company being</p>
<p>social responsible to the community and the environment. The alternative will give their products differentiation from competitors and may also draw in new customers. The only downside to the alternative is the project will be costly. This program will take time and energy to develop and implement in order for it to benefit the company in the long run.</p>
<p>• Enter New Markets. Instead of just building RVs, Winnebago can branch out to manufacturing buses and minibuses. This alternative broadens Winnebago’s market by entering other markets of travel.	Entering new markets will have their challenges; the largest is the operational cost of expanding the factory to compensate the new product lines.</p>
<p><strong>Recommendation</strong></p>
<p>Based on the Quantitative Strategic Planning Matrix, the best strategic alternative, which will allow Winnebago to differentiate their product from their competitors and capitalize on internal strengths and external opportunities would be selecting “Go Green” alternative. The alternative is also in line with Winnebago’s continuing efforts in increasing quality in their products. <strong>Implementation</strong></p>
<p>As shown in exhibit 10, implementation will consist of specific steps and will take place over the next four years. Although working with VP of product development and marketing VP will be integral to this process, implementation and further development of partnership with Honda will be central to the success of this proposal.</p>
<p><strong>Exhibit 1</strong>4</p>
<p><strong>Exhibit 2</strong>5</p>
<p>4 www.gasbuddy.com 5 http://www.marketwatch.com/tools/pftools/rates/?dist=skey</p>
<p><strong>Exhibit 3</strong><strong>6</strong></p>
<p><strong>Exhibit 4</strong><strong>7</strong></p>
<p><strong><em>Mission Statement</em></strong></p>
<p>“Winnebago Industries, Inc. is the leading United States manufacturer of motor homes and related products and services. Our mission is to continually improve our products and services to meet or exceed the expectations of our customers. We emphasize employee teamwork and involvement in identifying and implementing programs to save time and lower production costs while maintaining the highest quality of products. These strategies allow us to prosper as a business with a high degree of integrity and to provide a reasonable return for our shareholders, the ultimate owners of our business.”</p>
]]></content:encoded>
			<wfw:commentRss>http://kharkovyy.com/2008/07/28/wgo-case-winnebago-case-bsad-689/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WSJ &#8211; VZW &#8211; Article Review</title>
		<link>http://kharkovyy.com/2007/11/28/wsj-vzw-article-review/</link>
		<comments>http://kharkovyy.com/2007/11/28/wsj-vzw-article-review/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 02:00:49 +0000</pubDate>
		<dc:creator>AK</dc:creator>
				<category><![CDATA[Academic]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Business]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[academics]]></category>
		<category><![CDATA[assignments]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[school]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[verizon]]></category>

		<guid isPermaLink="false">http://kharkovyy.com/?p=55</guid>
		<description><![CDATA[BSAD355 Additional Assignment – Journal Article Review 1.         Article Summary This particular article published by Wall Street Journal on Tuesday, November 27th was somewhat intriguing. I have always thought of Verizon Wireless as a company that lost its consumer appeal and user friendliness years ago. What was worse was the fact that company management did [...]]]></description>
			<content:encoded><![CDATA[<p>BSAD355</p>
<p>Additional Assignment – Journal Article Review</p>
<p><strong>1.         Article Summary</strong></p>
<p>This particular article published by Wall Street Journal on Tuesday, November 27<sup>th</sup> was somewhat intriguing. I have always thought of Verizon Wireless as a company that lost its consumer appeal and user friendliness years ago. What was worse was the fact that company management did not seem to be doing anything to ensure company’s competitiveness in the future. But yesterday’s article in Wall Street Journal changed some of my earlier opinions.</p>
<p><span id="more-55"></span>Verizon, a joint venture of Verizon Communications Inc. and Vodafone Group PLC, announced that it would open up its wireless network for third-party devices. This move will allow customer to purchase the handset or any other mobile device in any retail outlet they wish and be able to use it on Verizon network. Prior to the move, customers were able to use only the devices sold and outfitted by Verizon itself.</p>
<p>Article goes to discuss several of the US cellular companies and in essence create a side-by-side comparison that points out some of the potential implications this move might have on the company. In addition, article describes Verizon Wireless management’s reluctance to cooperate with open standards protocols proposed by Google to the FCC. Its not surprising that amidst Verizon’s opposition to the proposed <em>“open network”</em> standards that would allow customers use any device they wish Verizon’s latest move to open up their own network seems like a strategically reacting move.</p>
<p>As article continues, it reveals Verizons plans to publish the specific details of system infrastructure that will allow developers that create mobile devices to better design their devices for seamless use on the Verizon network. Although publishing company’s system specifics is not something new, typically it comes after significant litigation and normally is preceded by a court order as it was the case in Microsoft’s European monopoly proceedings. This latest move by Verizon is seen as its managements attempt to gain a corner on the market of open standards for communications that Google is so insistent on pursuing.</p>
<p>Although Verizons decision might have a relatively large impact in terms of managerial restructuring and customer service for the company itself. This move also marks an important stepping-stone for wireless industry as a whole. Wireless industry in the United States is perhaps on a path to become more decentralized, flexible and more compatible with its European counterparts.</p>
<ol>
<li><strong>2. </strong><strong>Personal Reaction</strong></li>
</ol>
<p>I believe that this article has great value to business management students as it points out the importance of proactive management. Although Verizon Wireless is moving towards somewhat de-centralized wireless network model, many networks that are operating in the US today area already experiencing the benefits that this model brings. For example, AT&amp;T allows handsets that are not sold by it’s retail stores to be used on it’s wireless networks causing many customers to switch to AT&amp;T simply due to large variety of devices the network supports. Verizon has held on to the outdated business model that did not keep the customer in mind and now the company is attempting to play catch up.</p>
<p>Although Verizon will undoubtedly gain some consumer confidence and perhaps a larger market share as a result of this move, I believe the company has much larger issues. Verizon seemingly has done very little to create a network that is more compatible with other worldwide carriers. As opposed to AT&amp;T’s GSM network Verizon Wireless still uses an outdated analog signal in some of it’s towers, as well as incompatible digital spectrum that is not used anywhere also in the world. I think that these are some of the issues that Verizon Wireless management team must consider in order for company to succeed. While opening the network for third-party devices is a step in the right direction, Verizon needs to do more to ensure that consumers see the company as a viable communication choice amidst growing competition.</p>
<p>One positive and innovative idea that I see coming out of this article is the fact that Verizon Wireless management is considering the history in predicting the future and is trying to speculate where technology is going to end up. One of the key remarks in the article is the fact that Verizon hopes that the wireless standards become a way of life the same way the Internet has. Verizon says that it hopes to have anything that would like to be linked to the company network on board, including computers, wireless book readers, and possibly, kitchen appliances.</p>
<p>I think this article shows a reality of today’s competitive and dynamic market. It shows that management no longer is able to survive simply on reactive strategies and only responding to issues and challenges as they arise. Today’s technologically savvy consumers expect more from service industry, they are no longer willing to be bound by irrational company standards of limited choices. It seems to me that if a company like Verizon were to be successful, it absolutely must engage in proactive and maybe even aggressive advancements. No longer is the best quality the only factor that captures consumer spending. Today, choices and options play overwhelmingly important role in the consumer spending decisions.</p>
<p>Verizon as well as many other technology companies must stay sensitive to consumer needs that go beyond the obvious quality of service. As technology industry grows it continues to offer low barriers to entry thus creating healthy competition for consumer dollars. Consumers, now more than ever before focus on environmental impact psychological appeal and physical appearance when making technology purchases. Apple Inc. has been doing a great job in capturing consumer attention with its innovative products that appeal to all levels of consumer interests. Cell phone companies must shift their thinking paradigm and begin to employ a management style that would allow them to adapt quickly to consumer needs.</p>
<p><strong>Reference:</strong></p>
<p>Almon S. &amp; Dionne, S. (2007). Verizon to Open Cell Networks to Other’s Phones.</p>
<p><em>Wall Street Journal Online</em>. Retrieved November 28, 2007, from http://online.wsj.com/article/SB119617188870905241.html</p>
]]></content:encoded>
			<wfw:commentRss>http://kharkovyy.com/2007/11/28/wsj-vzw-article-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

