
<?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>Bryce McDonnell &#124;&#124; Freelance Web Application Developer &#187; technology</title>
	<atom:link href="http://www.brycemcdonnell.com/topics/technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brycemcdonnell.com</link>
	<description>bryce mcdonnell is a freelance web application developer specializing in PHP, Ruby on Rails and MySQL</description>
	<lastBuildDate>Fri, 26 Feb 2010 18:18:48 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Samba Server Integration</title>
		<link>http://www.brycemcdonnell.com/2009/07/samba-server-integration/</link>
		<comments>http://www.brycemcdonnell.com/2009/07/samba-server-integration/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 23:46:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Stuff I'm Working On]]></category>
		<category><![CDATA[portfolio]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[charity]]></category>
		<category><![CDATA[Deployment]]></category>
		<category><![CDATA[iptables]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[MS]]></category>
		<category><![CDATA[samba]]></category>

		<guid isPermaLink="false">http://blog.thedevranch.net/?p=142</guid>
		<description><![CDATA[I recently returned from a trip to Beirut, Lebanon where I had been doing some humanitarian and mission work. One of my responsibilities was to create a file sharing server for a humanitarian organization.
Given the budget of next to nothing and the relatively small size of the office, I decided it was best to proceed [...]]]></description>
			<content:encoded><![CDATA[<p>I recently returned from a trip to <a href="http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Beirut,+Lebanon&amp;sll=45.517682,-122.90135&amp;sspn=0.009683,0.017445&amp;ie=UTF8&amp;ll=33.870416,35.507813&amp;spn=23.406692,35.727539&amp;t=h&amp;z=5&amp;iwloc=A" target="_blank">Beirut, Lebanon</a> where I had been doing some humanitarian and mission work. One of my responsibilities was to create a file sharing server for a humanitarian organization.</p>
<p>Given the budget of next to nothing and the relatively small size of the office, I decided it was best to proceed with a Linux based Samba server. Although their office is 100% Microsoft (a mix of XP and Vista machines), Linux would be a great light weight solution. The added benefit was we re-purposed an ancient workstation (circa 1996) to run the Samba server so no new hardware was purchased and we prevented another machine from polluting a land fill.</p>
<p><span id="more-142"></span></p>
<p>We created three shared drives for the business.</p>
<ol>
<li>A share <strong>everyone</strong> in the office could access</li>
<li>A share <strong>o</strong><strong>nly the executive</strong> could access</li>
<li>A share for the exclusive purpose of <strong>backing up</strong> everyone&#8217;s workstation</li>
</ol>
<p>I simply installed <a href="http://www.centos.org/" target="_blank">Centos 5.2</a> distribution on the old workstation, created three distinct user accounts and group permissions, enabled the samba service, and locked down access through <strong>iptables </strong>firewall.</p>
<p>Creating a secure, readable, smb.conf file was really important to me. Not only for readability but also because I won&#8217;t be supporting this server after installation. Any other administrator should be able to walk into the office and quickly &amp; clearly see how to make edits for upgrades or changes.</p>
<p>The smb.conf file:</p>

<div class="wp_syntax"><div class="code"><pre class="ini" style="font-family:monospace;">#smb.conf
&nbsp;
<span style="color: #000066; font-weight:bold;"><span style="">&#91;</span>global<span style="">&#93;</span></span>
	#set up what the end user would see on their desktop
	<span style="color: #000099;">workgroup</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> H4LSharedFiles</span>
	server string <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> common files for H4L</span>
&nbsp;
	#general user perms
	<span style="color: #000099;">security</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> user</span>
	passdb backend <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> tdbsam</span>
&nbsp;
	#printing support
	load printers <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> no</span>
        <span style="color: #000099;">printing</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> bsd</span>
        printcap name <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> /dev/null</span>
        show add printer wizard <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> no</span>
        disable spools <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> yes</span>
&nbsp;
<span style="color: #000066; font-weight:bold;"><span style="">&#91;</span>AllSharedFiles<span style="">&#93;</span></span>
	<span style="color: #000099;">comment</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> Files for everyone to share</span>
	<span style="color: #000099;">path</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> /sambashares/allAccess</span>
	<span style="color: #000099;">writeable</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> yes</span>
	<span style="color: #000099;">browseable</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> yes</span>
	guest ok <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> yes</span>
	write list <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> +allemployees</span>
&nbsp;
<span style="color: #000066; font-weight:bold;"><span style="">&#91;</span>Backup<span style="">&#93;</span></span>
	<span style="color: #000099;">comment</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> Files to back up everyone's computer</span>
	<span style="color: #000099;">path</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> /sambashares/backups</span>
	<span style="color: #000099;">writeable</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> yes</span>
	<span style="color: #000099;">browseable</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> yes</span>
	guest ok <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> yes</span>
	write list <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> +allemployees</span>
&nbsp;
<span style="color: #000066; font-weight:bold;"><span style="">&#91;</span>AdminOnly<span style="">&#93;</span></span>
	<span style="color: #000099;">comment</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> Access for sensitive files</span>
	<span style="color: #000099;">path</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> /sambashares/admins</span>
	<span style="color: #000099;">writeable</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> yes</span>
	<span style="color: #000099;">browseable</span> <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> yes</span>
	guest ok <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> no</span>
	write list <span style="color: #000066; font-weight:bold;">=</span><span style="color: #660066;"> +administrators</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.brycemcdonnell.com/2009/07/samba-server-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web 2.0 on a Plane</title>
		<link>http://www.brycemcdonnell.com/2009/03/web-20-on-a-plane/</link>
		<comments>http://www.brycemcdonnell.com/2009/03/web-20-on-a-plane/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 17:22:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[technology]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.brycemcdonnell.com/?p=78</guid>
		<description><![CDATA[<a href=http://www.brycemcdonnell.com/2009/03/web-20-on-a-plane/><img src=http://blog.thedevranch.net/wp-content/uploads/2009/03/picture-2.png class=imgtfe hspace=5 align=left width=100  border=0></a>Kevin Rose, founder at Digg.com was flying from SFO to New York city this morning when he connected to Virgin America&#8217;s on board wi-fi connection and began streaming his trip from 30,000 feet.
Utilizing twitter, he sent out a tweet with a link to where people could view his stream. Interacting with the audience of over [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://kevinrose.com/" target="_blank">Kevin Rose</a>, founder at <a href="http://www.digg.com" target="_blank">Digg.com</a> was flying from SFO to New York city this morning when he connected to <a href="http://twitter.com/VirginAmerica/status/1306227060" target="_blank">Virgin America&#8217;s</a> on board wi-fi connection and began <a href="http://www.ustream.tv/" target="_blank">streaming</a> his trip from 30,000 feet.</p>
<p>Utilizing <a href="http://www.twitter.com" target="_blank">twitter</a>, he sent out a tweet with a link to where people could view his stream. Interacting with the audience of over 700, he gave a quick tour of the plane from his seat, showed his viewers his neighbor and the view from his window.</p>
<p>A very cool interactive experience which shows that the Internet is becoming more ubiquitous all the time.</p>
<p><a href="http://blog.thedevranch.net/wp-content/uploads/2009/03/picture-2.png"><img class="aligncenter size-full wp-image-79" title="Kevin-rose-on-a-plane" src="http://blog.thedevranch.net/wp-content/uploads/2009/03/picture-2.png" alt="Kevin Rose U-Streams from a plane" width="500" height="211" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.brycemcdonnell.com/2009/03/web-20-on-a-plane/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tough Day For Microsoft</title>
		<link>http://www.brycemcdonnell.com/2009/01/tough-day-for-microsoft/</link>
		<comments>http://www.brycemcdonnell.com/2009/01/tough-day-for-microsoft/#comments</comments>
		<pubDate>Fri, 02 Jan 2009 22:46:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[business/entrepreneurship]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Consumer Technology]]></category>

		<guid isPermaLink="false">http://blog.brycemcdonnell.com/?p=72</guid>
		<description><![CDATA[More information can be found at the links provided, but Microsoft is not starting the year off strong. Most media outlets led with a story about how the Zune, Microsoft&#8217;s digital music player, was hit with a glitch in how its internal clock accounts for leap year. Then, it&#8217;s industry leading web browser, Internet Explorer, [...]]]></description>
			<content:encoded><![CDATA[<p>More information can be found at the links provided, but Microsoft is not starting the year off strong. Most media outlets led with a story about how the <a href="http://www.zune.net/en-US/?WT.mc_id=PaidSearch-BRD_goog" target="_blank">Zune</a>, <a href="http://www.microsoft.com/en/us/default.aspx" target="_blank">Microsoft</a>&#8217;s digital music player, was hit with a glitch in how its internal clock accounts for leap year. Then, it&#8217;s industry leading web browser, <a href="http://en.wikipedia.org/wiki/Internet_explorer" target="_blank">Internet Explorer</a>, lost some major market share. An unfortunate start to 2009 for Microsoft.</p>
<p>Zune article: <a href="http://bits.blogs.nytimes.com/2008/12/31/the-day-microsoft-zunes-stood-still/" target="_blank">http://bits.blogs.nytimes.com/2008/12/31/the-day-microsoft-zunes-stood-still/</a></p>
<p>IE losing market share:<a href="http://online.wsj.com/article/SB123092719894149695.html#articleTabs%3Dcomments" target="_blank"> http://online.wsj.com/article/SB123092719894149695.html#articleTabs%3Dcomments</a></p>
<p> </p>
<p> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.brycemcdonnell.com/2009/01/tough-day-for-microsoft/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Linux Suitable For Consumer?</title>
		<link>http://www.brycemcdonnell.com/2008/12/linux-suitable-for-consumer/</link>
		<comments>http://www.brycemcdonnell.com/2008/12/linux-suitable-for-consumer/#comments</comments>
		<pubDate>Wed, 17 Dec 2008 08:46:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[business/entrepreneurship]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.brycemcdonnell.com/?p=68</guid>
		<description><![CDATA[I recently read this article at FastCompany&#8217;s website about Linux: the open source, freely available operating system. While it technically competes with Windows and Mac OS X, most users have probably never heard of it. Most data center admins probably couldn&#8217;t live without it. It has a commanding lead in the enterprise hosting space and [...]]]></description>
			<content:encoded><![CDATA[<p>I recently read <a href="http://www.fastcompany.com/blog/chris-dannen/techwatch/2009-year-linux-revolution" target="_blank">this article</a> at<a href="http://www.fastcompany.com"> FastCompany&#8217;s</a> website about Linux: the open source, freely available operating system. While it technically competes with Windows and Mac OS X, most users have probably never heard of it. Most data center admins probably couldn&#8217;t live without it. It has a commanding lead in the enterprise hosting space and is responsible for hosting most of the websites on the Internet today. This website, for example, is hosted on a Linux box somewhere in Texas.</p>
<p>The article was profound in explaining Linux&#8217;s potential power play in the netbook arena; netbooks are small low power laptops. They&#8217;re great for surfing the web, doing emails and many other normal, everyday, tasks. Their low power makes them very affordable but has a major shortcoming when it comes to loading an operating system. Without a lot of memory (Ram) or hard drive space, large operating systems with many background processes would cripple the tiny netbook and render them useless.</p>
<p><span id="more-68"></span></p>
<p>Enter Linux. Linux is a highly configurable dream of an operating system that technologists love to play with. Because of its configurability, it&#8217;s a perfect candidate to run on a netbook. Processes that are never used can be shut off automatically. Shutting down processes means 1) more memory to do web surfing 2) more processor cycles for web surfing and 3) less space taken up on the hard drive.</p>
<p>Another very important consideration is spyware/malware. Linux is a very secure system by its very nature. The kernel (the brains of the OS) is more protected by its very design. Because of its seemingly insignificant market penetration, spammers and malware developers don&#8217;t have any incentive to develop their bugs for this OS. Linux wins again.</p>
<p>Finally, slapping Linux on the netbook follows a bigger trend in the commodization of hardware. Computers are getting cheaper and cheaper as business processes become more efficient and components become less expensive. The operating system has become a bigger slice of the total purchase price of a system. As hardware continues to become more of a commodity, vendors like <a href="http://www.ibm.com">IBM</a>, <a href="http://www.hp.com">HP</a> and <a href="http://www.dell.com">DELL</a> will look for ways to jettison the proportionately higher cost of the OS.</p>
<p>As netbooks become more popular, Linux will become more familiar. This familiarity will enhance a seemingly insignificant player in the consumer operating system battle and that could really change the game.</p>
<p>original link:</p>
<p><a href="http://www.fastcompany.com/blog/chris-dannen/techwatch/2009-year-linux-revolution">http://www.fastcompany.com/blog/chris-dannen/techwatch/2009-year-linux-revolution</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.brycemcdonnell.com/2008/12/linux-suitable-for-consumer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Android News</title>
		<link>http://www.brycemcdonnell.com/2008/08/android-news/</link>
		<comments>http://www.brycemcdonnell.com/2008/08/android-news/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 21:25:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Telephony]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://blog.brycemcdonnell.com/?p=51</guid>
		<description><![CDATA[Over the last several weeks, Google has been announcing snippets of information related to their mobile phone endevor: Android.
Google announced today it will also be releasing a Android Market, a service designed in the image of the iTunes Store with YouTube functionality. An interesting market shift is taking place which could quite possibly be looked [...]]]></description>
			<content:encoded><![CDATA[<p>Over the last several weeks, <a href="http://google.com">Google</a> has been announcing snippets of information related to their mobile phone endevor: Android.</p>
<p>Google announced today it will also be releasing a <a title="Android" href="http://www.talkandroid.com/152-android-market/" target="_blank">Android Market</a>, a service designed in the image of the <a href="http://iTunes.com">iTunes Store</a> with <a href="http://www.youtube.com">YouTube</a> functionality. An interesting market shift is taking place which could quite possibly be looked in hindsight as the great mobile revolution. First, it was the laptop, coming up next the mobile phone that acts like a laptop?</p>
<p>Mobile developers have been going nuts over development of iPhone applications and <a href="http://digg.com/apple/App_Store_bringing_in_strong_revenue_for_some_iPhone_devs">they have been making a mint doing so</a>. Some reports have the Store making <a href="http://www.washingtonpost.com/wp-dyn/content/article/2008/08/11/AR2008081100440.html" target="_blank">$1M per day</a>. Wow. Google joins the fray today in their announcement albeit with a slightly more open source bend. They will at first accept only free applications with the paid-for apps coming at a later date.</p>
<p>Expanding the development of mobile apps from a few scattered developers, say, on <a href="http://www.rim.com" target="_blank">Research In Motion</a>&#8217;s Blackberry devices to many many developers all over the world on Android and the iPhone are setting up a potential for a Brave New World of mobile phone functionality.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brycemcdonnell.com/2008/08/android-news/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOW-TO: Compile PHP/Apache2.2 on OS X Leopard</title>
		<link>http://www.brycemcdonnell.com/2008/03/how-to-compile-phpapache22-on-os-x-leopard/</link>
		<comments>http://www.brycemcdonnell.com/2008/03/how-to-compile-phpapache22-on-os-x-leopard/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 16:43:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://blog.brycemcdonnell.com/?p=31</guid>
		<description><![CDATA[I&#8217;ve been fighting my Leopard installation recently with getting the IMAP libraries compiled correctly. I wanted the IMAP features so that I could use my sugarCRM application better. After a lot of fighting, compiling and adjusting, I finally got a stable installation of Apache 2.2 and PHP-5.2.5 with IMAP. Here&#8217;s how I did it:
I didn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been fighting my Leopard installation recently with getting the IMAP libraries compiled correctly. I wanted the IMAP features so that I could use my <a href="http://www.sugarcrm.com/">sugarCRM</a> application better. After a lot of fighting, compiling and adjusting, I finally got a stable installation of Apache 2.2 and PHP-5.2.5 with IMAP. Here&#8217;s how I did it:</p>
<p>I didn&#8217;t want to ruin the installation of Apache2.2 that comes native on Leopard, so I started from scratch:</p>
<blockquote><p>cd /usr/local<br />mkdir src<br />curl -O http://www.mirrorgeek.com/apache.org/httpd/httpd-2.2.8.tar.gz<br />tar -zxvf httpd-2.2.8.tar.gz  # a bunch of output will fly by; that&#8217;s normal<br />cd httpd-2.2.8<br />./compile &#8211;enable-so &#8211;prefix=/usr/local/apache2 # a ton more output will fly by<br />make<br />sudo make install</p></blockquote>
<p>Now we have a new apache install in your /usr/local directory. If you want to connect this installation to your usual web directory on your mac, you need to edit your httpd.conf to direct your web root folder to /Library/WebServer/Documents. You do this by executing the following commands:</p>
<blockquote><p>sudo vi /usr/local/apache2/conf/httpd.conf<br />Change DocumentRoot &#8220;/usr/local/apache2/htdocs&#8221; to: DocumentRoot &#8220;/Library/WebServer/Documents&#8221;<br />Next, change <directory usr="" local="" apache2="" htdocs=""> to <directory library="" webserver="" documents=""><br />issue the vi command :wq</directory></directory></p></blockquote>
<p><directory usr="" local="" apache2="" htdocs=""><directory library="" webserver="" documents=""></p>
<p>Your Apache Installation should be set to go now.</p>
<p>Before we can install php, we need to cimpile the IMAP c libraries. Go to and download these libraries at ftp://ftp.cac.washington.edu/imap/ . Then, move them to your source directory with the following command:</p>
<p></directory></directory><br />
<blockquote>mv ~/Downloads/[your-imap-download] /usr/local/src<br />./compile &#8211;prefix=/usr/local/imap<br />make<br />sudo make install</p></blockquote>
<p>When this finishes, you can install php</p>
<p>PHP Installation:</p>
<p>Go to http://us3.php.net/get/php-5.2.5.tar.gz/from/a/mirror and download a package<br />On Leopard, you would issue the following command to move the package to our source directory:</p>
<blockquote><p>mv ~/Downloads/php-5.2.5.tar.gz /usr/local/src</p></blockquote>
<p>Now, we compile:</p>
<blockquote><p>tar -zcvf php-5.2.5.tar.gz<br />cd php-5.2.5<br />./configure &#8211;prefix=/usr/local/apache2/php &#8211;with-apx2=/usr/local/apache2/bin/apxs &#8211;with-imap=/usr/local/imap &#8211;with-mysql=/usr/local/mysql<br />make<br />sudo make install</p></blockquote>
<p>Following the completion of this install, you should be able to issue the command:<br />
<blockquote>sudo /usr/local/apache2/bin/apachectl start</p></blockquote>
<p>and your installation is complete. SugarCRM should recognize the imap libraries and php should run smoothly.</p>
<p>Please note that this is not a particularly secure installation, but will work great for local intranets to keep your users involved with the crm.</p>
<p>Please post comments if you run into trouble.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brycemcdonnell.com/2008/03/how-to-compile-phpapache22-on-os-x-leopard/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How Skype Can Help You Save Money on Phones</title>
		<link>http://www.brycemcdonnell.com/2008/01/how-skype-can-help-you-save-money-on-phones/</link>
		<comments>http://www.brycemcdonnell.com/2008/01/how-skype-can-help-you-save-money-on-phones/#comments</comments>
		<pubDate>Wed, 16 Jan 2008 06:39:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://blog.brycemcdonnell.com/?p=26</guid>
		<description><![CDATA[<a href=http://www.brycemcdonnell.com/2008/01/how-skype-can-help-you-save-money-on-phones/><img src=http://c.skype.com/i/images/logos/skype_logo.png class=imgtfe hspace=5 align=left width=100  border=0></a>I&#8217;ve been using Skype now for quite awhile. It&#8217;s an excellent way to keep in touch with others without using your cell phone minutes. It&#8217;s also a free way to video conference, chat and make voice calls.

Lauri&#8217;s parents live in California and Skype makes it really easy to video conference with them. We did this [...]]]></description>
			<content:encoded><![CDATA[<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://c.skype.com/i/images/logos/skype_logo.png"><img style="float:left; margin:0 10px 10px 0;cursor:pointer; cursor:hand;width: 120px;" src="http://c.skype.com/i/images/logos/skype_logo.png" border="0" alt="" /></a><br />I&#8217;ve been using Skype now for quite awhile. It&#8217;s an excellent way to keep in touch with others without using your cell phone minutes. It&#8217;s also a <span class="Apple-style-span" style="font-weight: bold;">free</span> way to video conference, chat and make voice calls.
<div></div>
<div>Lauri&#8217;s parents live in California and Skype makes it really easy to video conference with them. We did this during the Christmas of 2006. It was great because we couldn&#8217;t make it down to California, but the video quality and voice clarity allowed us to communicate as if we were there in the room with them.</div>
<div></div>
<div>Wanna try it out just for fun? It&#8217;s free forever. Just go to <a href="http://www.skype.com">www.skype.com</a> and click the download button. Once you get it downloaded, click on my &#8220;Call Me&#8221; button at the top of this page. It will automatically connect your skype account to mine and we can have a little chat.</div>
<div></div>
<div>This is a great way to keep in touch with distant relatives and friends. My friend Jeremy is in the Marines and will be stationed in Japan soon. We&#8217;ll use Skype to keep in touch and make free international calls to each other. It&#8217;s great for Mac and PC.</div>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.brycemcdonnell.com/2008/01/how-skype-can-help-you-save-money-on-phones/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where Microsoft Lost its Way</title>
		<link>http://www.brycemcdonnell.com/2008/01/where-microsoft-lost-its-way/</link>
		<comments>http://www.brycemcdonnell.com/2008/01/where-microsoft-lost-its-way/#comments</comments>
		<pubDate>Wed, 02 Jan 2008 18:00:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://blog.brycemcdonnell.com/?p=24</guid>
		<description><![CDATA[Microsoft has pioneered a software revolution that has forever changed the face of business. Millions of workers can now do more each day and stay in closer contact as a direct result of the innovations by Bill Gates. All this said, I am a mac user. Microsoft, despite its celebrity status as a great company [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft has pioneered a software revolution that has forever changed the face of business. Millions of workers can now do more each day and stay in closer contact as a direct result of the innovations by Bill Gates. All this said, I am a mac user. Microsoft, despite its celebrity status as a great company has wavered in recent years to the point where <a href="http://www.PCWorld.com/">PC World</a>, a popular PC users magazine, has named <a href="http://www.windowsvista.com/">Vista</a> the <a href="http://www.pcworld.com/article/id,140583-page,5-c,techindustrytrends/article.html">biggest disappointment of 2007</a>. Ouch. Here&#8217;s a video clip from YouTube:
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/tLa3Wac4O2A&amp;rel=1"><param name="wmode" value="transparent"><embed src="http://www.youtube.com/v/tLa3Wac4O2A&amp;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></div>
<div>
<div></div>
<div>While so popular in the early 80&#8217;s and 90&#8217;s where did Microsoft go wrong? I submit that they quit KISSing. Keeping It Simple Stupid is the shortest business philosophy I&#8217;ve heard so far. As I&#8217;ve learned in my most recent venture, <a href="http://www.labcoatinnovations.com/?src=brycemcd">Lab Coat Innovations</a>, businesses succeed when they remain focused on their core competencies and earn more than they spend.</div>
<div> </div>
<div>Microsoft has been playing in too many sandboxes for too long. Their venture into gaming and search, for example, are illustrative of distractions preventing their core business of operating systems and office suites from more frequent releases and value added services. Xbox the original has still not broken even on the balance sheet and their search product holds only <a href="http://blog.compete.com/2007/12/12/search-market-share-november-google-yahoo-ask-msn-live/">single digit market share points</a>. Both of these ventures require programmers and product managers that could have been used on operating systems.</div>
<div></div>
<div> </div>
<div>Narrowing the focus does not sacrifice the growth potential Microsoft has been aiming at. Contrastingly, consider Google and their business model. As I&#8217;ve said before, I&#8217;m usually impressed with their work. Their business model is simple: sell advertising by coupling it with what people want to do. They used this model to grow into a search giant quickly. They expanded this model not by offering a gaming console or<a href="http://www.microsoft.com/surface/"> an expensive computer surface no one can afford</a> but by providing us with more online content we want. We look at email a lot every day. They put adds there and we click on them. We like watching video&#8217;s online. They bought YouTube and put adds there too. Soon, they will expand their product to handheld phones. I wrote about that too. Google&#8217;s business has been growing with the narrow focus of getting us to click on adds. Microsoft is reacting to new trends hoping to make some &#8220;me-too&#8221; dollars.</div>
<div> </div>
<div></div>
<div>Here is Google&#8217;s market value compared with the S&amp;P 500, Dow Jones Industrial Average and Microsoft. Microsoft is the green line below all the others:</div>
<div></div>
<div><a href="http://finance.google.com/finance?chdnp=0&amp;chdd=1&amp;chds=1&amp;chdv=1&amp;chvs=Linear&amp;chdeh=0&amp;chfdeh=0&amp;chdet=1199307600000&amp;chddm=332350&amp;cmpto=INDEXSP:.INX;INDEXDJX:.DJI;NASDAQ:MSFT&amp;q=NASDAQ:GOOG">graph</a></div>
<div></div>
<div>Microsoft, for all their recent negative press, is an excellent company that could be even better if they subscribed to the KISS philosophy and kept constant focus on operating system, server and business application software.</p>
<p></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.brycemcdonnell.com/2008/01/where-microsoft-lost-its-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HOWTO: Connect AOL DSL to a Linksys Router</title>
		<link>http://www.brycemcdonnell.com/2007/12/howto-connect-aol-dsl-to-a-linksys-router/</link>
		<comments>http://www.brycemcdonnell.com/2007/12/howto-connect-aol-dsl-to-a-linksys-router/#comments</comments>
		<pubDate>Thu, 27 Dec 2007 21:07:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HowTo]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[Consumer Technology]]></category>
		<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://blog.brycemcdonnell.com/?p=23</guid>
		<description><![CDATA[<a href=http://www.brycemcdonnell.com/2007/12/howto-connect-aol-dsl-to-a-linksys-router/><img src=http://bp1.blogger.com/_urWDhUi-Oe8/R3QV0LtrYLI/AAAAAAAAAEE/5ptcUbXg4XU/s400/PPOEsetup-1.png class=imgtfe hspace=5 align=left width=100  border=0></a>To connect your AOL high speed internet service to a router is fairly simple if you have good information. AOL tech support gave me some bad advice in the beginning which caused me about an hour of headache before I called them back. To connect takes a couple of AOL specific setup instructions which I&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>To connect your AOL high speed internet service to a router is fairly simple if you have good information. AOL tech support gave me some bad advice in the beginning which caused me about an hour of headache before I called them back. To connect takes a couple of AOL specific setup instructions which I&#8217;ll show you here:</p>
<div></div>
<div>
<ol>
<li>Log into your Linksys router. To do this, open a web browserand type: http://192.168.1.1 an authentication box will open and you willneed to type in admin for the username and admin for the password.</li>
<li>Once logged in, you will need to change the Internet Connection Type to PPPoE. <span class="Apple-style-span" style="font-style: italic;"><span class="Apple-style-span" style="font-weight: bold;">This is only if you are using a DSL connection</span></span>. <img id="BLOGGER_PHOTO_ID_5148764260233076914" style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp1.blogger.com/_urWDhUi-Oe8/R3QV0LtrYLI/AAAAAAAAAEE/5ptcUbXg4XU/s400/PPOEsetup-1.png" border="0" alt="" /></li>
<li>You will need to set a User name and Password. Both are the phone number you use to dial your DSL connection (probably your home number). The user name is your phone number @ aol-hs while the password is just your phone number. An example user name and password would be: u:5035552424@aol-hs p: 5035552424 . The other settings are pre-set and work fine. You can click on the picture above for more detail.</li>
<li>The next step is to actually initiate the connection. Click on the Status tab at the top of the screen. In the middle of the page, you will need to click the connect button. The router will attempt to connect to your DSL service. This may take a couple of minutes. If you entered the user name and password correctly, the router should connect and everything should be useable.   <img id="BLOGGER_PHOTO_ID_5148765522953461954" style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;" src="http://bp3.blogger.com/_urWDhUi-Oe8/R3QW9rtrYMI/AAAAAAAAAEM/qKN_4ukqYUU/s400/PPPOEstatus.png" border="0" alt="" /> After the login succeeds, the Login Status will show &#8220;Connected&#8221; and you should be connected to the Internet.</li>
</ol>
<div>Please feel free to post questions in the comments if you run into any trouble.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.brycemcdonnell.com/2007/12/howto-connect-aol-dsl-to-a-linksys-router/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Music and Genomes: Pandora Nails It!</title>
		<link>http://www.brycemcdonnell.com/2007/12/music-and-genomes-pandora-nails-it/</link>
		<comments>http://www.brycemcdonnell.com/2007/12/music-and-genomes-pandora-nails-it/#comments</comments>
		<pubDate>Fri, 14 Dec 2007 17:04:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://blog.brycemcdonnell.com/?p=20</guid>
		<description><![CDATA[Many artists don&#8217;t get math. Conversely, a lot of mathematicians can&#8217;t do art. It&#8217;s rare to find a person who appreciates both and even more inimitable to replicate the synthesis of art and science Pandora has created. 

 
Pandora is not just an online music station, it&#8217;s also a music genome project combing through the irreducible aspects of millions of [...]]]></description>
			<content:encoded><![CDATA[<p>Many artists don&#8217;t get math. Conversely, a lot of mathematicians can&#8217;t do art. It&#8217;s rare to find a person who appreciates both and even more inimitable to replicate the synthesis of art and science <a href="http://www.pandora.com/">Pandora</a> has created. 
<div>
<div> </div>
<div>Pandora is not just an online music station, it&#8217;s also a music genome project combing through the irreducible aspects of millions of songs and discovering the nuances of why we listeners like a particular song. Log on to Pandora and type in an artist you like. A song starts playing and you rate if they chose well for you. If not, you get a new song. If so, the song plays through and then Pandora creates a playlist for you on the fly according to your musical tastes. As more songs play, you continue to rate the songs you hear. Pandora evolves a customized playlist that you are sure to like.</div>
<div></div>
<div> </div>
<div>Staffers of Pandora are combing through millions of songs and tagging each song with a series of more than 400 attributes. As you, the user, indicate which songs you like, a personalized list of attributes are created and the service is able to recommend songs to you based on your previous judgements. It&#8217;s a customized radio station just for you without ads!</div>
<div></div>
<div> </div>
<div>The Music Genome Project is a clever name for such an innovative service. Members of Pandora are helping the program to learn the science of why we like music. It&#8217;s the science and personalization of art. Give it a try at <a href="http://www.pandora.com/">www.pandora.com</a> ; user registration is free well worth the music experience.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.brycemcdonnell.com/2007/12/music-and-genomes-pandora-nails-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
