<?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>Computers &#38; Technology</title>
	<atom:link href="http://summitlake.com/wp_1computers/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://summitlake.com/wp_1computers</link>
	<description>a Summitlake.com Sites department</description>
	<lastBuildDate>Sat, 18 May 2013 05:34:56 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Card Games, Personal Security and Random Numbers</title>
		<link>http://summitlake.com/wp_1computers/?p=319</link>
		<comments>http://summitlake.com/wp_1computers/?p=319#comments</comments>
		<pubDate>Sat, 15 Sep 2012 21:40:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[Math]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[Perl]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://summitlake.com/wp_1computers/?p=319</guid>
		<description><![CDATA[Have you ever yelled at a computer game, "who shuffled this?" There's a dirty little secret in programming: generating truly random numbers is tough. If you don't play computer games, you still probably realize security passwords are also just random numbers and letters. There's a more serious side to this discussion. Random numbers are essential to secure password generation, encryption, and even national security. Read this post in <a href="http://summitlake.com/wp_1computers/?p=319">Computers &#038; Technology</a>. <a href="http://summitlake.com/wp_1computers/?p=319">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>There&#8217;s a dirty little secret in programming: generating truly random numbers is tough. When are random numbers really random?</p>
<p>Nearly everybody plays a computer game such as Solitaire from time to time. Have you ever had this deja vu feeling you&#8217;ve played this same game before? Did that initial &#8220;deal&#8221; look unsettlingly familiar?</p>
<p><strong>Have you ever yelled at a computer game, &#8220;who shuffled this?&#8221;</strong></p>
<p>My irritation with this led to remembering all the nasty little complications we&#8217;ll &#8220;overview&#8221; in this article.</p>
<p>There&#8217;s a reason for &#8220;bad shuffles.&#8221; To make each game unique, computers depend on random numbers.</p>
<p>If you don&#8217;t play computer games, you still probably realize security passwords are also just random numbers and letters. There&#8217;s a more serious side to this discussion. Random numbers are essential to secure password generation, encryption, and even national security.</p>
<p>The core idea to a series of random numbers is <em>unpredictability</em>. Knowing what one number is, should give us no clue what the next number will be.<br />
<span id="more-319"></span><br />
As explained in Wikipedia&#8217;s entry on <a href="http://en.wikipedia.org/wiki/Random_number_generation" target="_blank">Random number generation</a>, scientists, mathematicians, statisticians and programmers recognize two general &#8220;types&#8221; of random numbers:</p>
<p>1. &#8220;True&#8221; random numbers, generated by sampling some natural random process, such as the flip of a coin, toss of the dice, or sampling the states of quantum bits. But if you think about it, many physical phenomena in the real world that appear to be random are truly not. The shape of the lava blob at each instant in time in the popular 1960&#8242;s &#8220;Lava lamps&#8221; is always dependent on its shape in the previous instant.</p>
<p>&#8220;Wheels of fortune,&#8221; lottery ball tumblers, roulette wheels and card shuffling machines are examples of mechanical &#8220;true&#8221; random sequence generators which, when not rigged, do a better job than most of the &#8220;stock&#8221; functions supplied with personal computers and server-based user functions.</p>
<p>2. &#8220;Generated&#8221; random numbers use mathematical algorithms, some highly ingenious, to generate sequences that are for most purposes indistinguishable from true randomness. But, because they are generated by a predictable or programmable process, they are also called &#8220;quasi-random&#8221; numbers. Our desktop PC&#8217;s and Macs use simple random numbers to display arbitrary screensaver images on our monitors.</p>
<p>When I was in pre-computer high school math, we all used the &#8220;CRC Standard Mathematical Tables and Formulae&#8221; book. (<a href="http://www.amazon.com/Standard-Mathematical-Formulae-Mathematics-Applications/dp/1439835489" target="_blank">Amazon</a> still sells them!) There were pages and pages of random number tables in the back of the book. They were probably generated in some university laboratory somewhere. They were very random. But, if you had the tables, and you knew what the 2,573rd random number was, you always knew what the 2,574th number was going to be. To generate a UNIQUE random number series, you also had to devise an arbitrary random lookup scheme.</p>
<p>I&#8217;ve written any number of computer and web programs for personal and private use that depend in some way on random numbers. For simple tasks like a random quotations generator or photo banner carousel, one can call the Perl rand() function to pick a quote at random out of the entire collection. You can call another function to generate a random &#8220;seed&#8221; to plug into rand(), or you can just give it a &#8220;seed&#8221; like server time (&#8220;1347727038&#8243;) which increments uniquely every second.</p>
<p>The thing is, a poorly designed &#8220;seed&#8221; may always return the same starting number and random number sequence every time you start the program. This can lead to those &#8220;bad shuffles&#8221; of your card game. Or, the next time you call server time, one second in the future, it will return &#8220;1347727039&#8243; which means we are off to a bad start right away!</p>
<p>I NEVER try to write my own code for password generation, secure hashes, or anything involving identity protection, privacy or file and data security. Instead, I use canned industrial-strength functions like 128 and 256-bit MD5 (which itself can be hacked today if you have a powerful enough computer and enough time).</p>
<p>Having said all that, I once wrote my own random number generator to see how well I could do it.</p>
<p>The following isn&#8217;t a workshop or tutorial. It&#8217;s just to show you, very roughly, one or two simple techniques that might be used. Here&#8217;s a rough outline of what I remember doing (and it is very crude):</p>
<p>1. Pick a unique number, say, server time: 1347727039<br />
2. scramble the digits: 0719743723<br />
3. square it: 518031026797901000<br />
4. Extract the middle 10 digits: 3102679790<br />
5. square that: 9626621879274440000<br />
6. take your required number of digits out of the middle: &#8217;9&#8242;, or &#8217;218792744&#8242; or whatever you need.</p>
<p>The serious programmer or statistician can see several flaws in the assumptions my simple algorithm uses. For example, the &#8220;scramble&#8221; action itself assumes access to some sort of randomizing process. Ultimately, since any process, once guessed, can be repeated, these numbers are at best quasi-random.</p>
<p>Unless you have a doctorate in math theory, there are hidden pitfalls to trap the unwary, and that includes me. One would avoid division, for example. The fraction 5/9 generates the horribly un-random series .55555555555 &#8230; Seven is another weird divisor. If you subtract a preset number like &#8217;1&#8242; from a result that happens to end in &#8217;000&#8242;, you get &#8217;999&#8242; which is not what you were hoping for! Are your sequences always even numbers (bad)? Odd numbers (bad)? Do they include an expected distribution of prime numbers not divisible by anything else? (Good).</p>
<p>As the Wikipedia article emphasizes,</p>
<blockquote><p>A &#8220;random number generator&#8221; based solely on deterministic computation cannot be regarded as a &#8220;true&#8221; random number generator, since its output is inherently predictable.</p></blockquote>
<p>Nevertheless, it worked pretty well for whatever my requirement was at the time. But remember, home-brew techniques can&#8217;t be counted on to be truly random or truly secure (if security is your purpose).</p>
<p>Some years back I wrote a Perl password generator calling a stock MD5 checksum generator. I posted &#8220;<a href="http://www.summitlake.com/rand_pw.html" target="_blank">Random Password</a>&#8221; to this website where you can still find it in the Front Page  &#8220;Utility&#8221; menu. These days, most password vaults like <a href="https://agilebits.com/onepassword" target="_blank">1Password</a> will generate very secure unguessable passwords of arbitrary length.</p>
<p>A final word on security: password protection is <strong>NOT</strong> the same as encryption. A password just disables the <strong>file:open</strong> command until the password is authenticated at the document or application level. I&#8217;m sure you can still read many or most common pass-protected documents with one of the disk utilities that can read the hard drive directly, bit by bit. The thing is, you won&#8217;t know, because password program companies never guarantee file security. So, to protect against identity and data theft on a hard drive or other local storage media, NEVER entrust your personal financial, banking, medical or other sensitive files and data to a simple password.</p>
<p>Encryption scrambles the whole document or vault storage space with sophisticated algorithms that could take a NASA supercomputer weeks to crack. Password vaults like 1Password or RoboForm aren&#8217;t just password protected; they securely encrypt all data.</p>
<p>Lastly, if your card program doesn&#8217;t shuffle well enough, try another one!</p>
]]></content:encoded>
			<wfw:commentRss>http://summitlake.com/wp_1computers/?feed=rss2&#038;p=319</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do Juries Have No Place In the Patent System?</title>
		<link>http://summitlake.com/wp_1computers/?p=316</link>
		<comments>http://summitlake.com/wp_1computers/?p=316#comments</comments>
		<pubDate>Wed, 29 Aug 2012 21:49:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Legislation]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Law]]></category>
		<category><![CDATA[Patents]]></category>

		<guid isPermaLink="false">http://summitlake.com/wp_1computers/?p=316</guid>
		<description><![CDATA[I read a proposal today that essentially suggests taking expensive patent trials (a la Apple-Samsung) out of the jury system, putting these disputes into the loving hands of an "expert tribunal" instead. Read my reply in <a href="http://summitlake.com/wp_1computers/?p=316">Computers</a>. <a href="http://summitlake.com/wp_1computers/?p=316">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I read a proposal today that essentially suggests taking expensive patent trials (a la Apple-Samsung) out of the jury system, putting these disputes into the loving hands of an &#8220;expert tribunal&#8221; instead.</p>
<p>Readers are free to check their own resources and form their own conclusions. Below is my own comment, which I posted to GigaOM.com today. It is still in the moderation queue &#8211; a necessary evil these days &#8211; but I felt it worth repeating.</p>
<blockquote><p>I think the proposal to replace juries with a tribunal of experts in patent disputes is more dangerous than the ills it proposes to remedy. (1) the patent system is itself a legal process, and to exclude plaintiffs from due process would be wrong. (2) Empaneling a jury free of bias and susceptibility to being swayed is the job of the trial attorneys; (3) ”Experts” can be biased too, but there is no appeal from that, and (4) a panel of programmers would look at the code, determine that different subroutines and methods had been called, and conclude that therefore it is impossible that a look and feel issue could have been copied.&#8221;</p>
<p>&#8211; Alex Forbes
</p></blockquote>
<p>&#8212;&#8211;<br />
<strong>LINKS:</strong></p>
<ul>
<li>GigaOM: <a href="http://gigaom.com/2012/08/27/3-reasons-juries-have-no-place-in-the-patent-system/">3 reasons juries have no place in the patent system</a></li>
<li>Slashdot: <a href="http://yro.slashdot.org/story/12/08/28/1930211/why-juries-have-no-place-in-the-patent-system">Why Juries Have No Place In the Patent System</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://summitlake.com/wp_1computers/?feed=rss2&#038;p=316</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gone Amok: Software Slide Lock Patent Wars</title>
		<link>http://summitlake.com/wp_1computers/?p=311</link>
		<comments>http://summitlake.com/wp_1computers/?p=311#comments</comments>
		<pubDate>Fri, 06 Jul 2012 21:18:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Legislation]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[Law]]></category>
		<category><![CDATA[patent]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://summitlake.com/wp_1computers/?p=311</guid>
		<description><![CDATA[Summitlake.com takes a new look at an age-old issue. Can we patent drawer pulls on kitchen cabinets? What about childproof safety latches, or automobile radiator grill patterns? How far should litigation be allowed to go? Read about the Apple slide-to-unlock patent wars, in <a href="http://summitlake.com/wp_1computers/?p=311">Computers &#038; Technology</a>. <a href="http://summitlake.com/wp_1computers/?p=311">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://summitlake.com/wp_1computers/files/2012/07/child-proof-safety-cabinet-latches.jpg"><img class="alignleft size-full wp-image-312" title="child-proof safety cabinet latches" src="http://summitlake.com/wp_1computers/files/2012/07/child-proof-safety-cabinet-latches.jpg" alt="" width="115" height="115" /></a>Software &#8220;locks&#8221; have been with us for years. In fact, they&#8217;re just digital child-proof safety cabinet latches. </p>
<p>Litigation over who can own and patent design concepts, even when centuries old, is completely out of control.</p>
<p>It&#8217;s instructive to glance at a quick Google search for &#8220;slide lock patent&#8221; &#8212; you&#8217;ll get over 4 million hits.</p>
<p>Almost every &#8220;object&#8221; in our modern software graphic user interfaces has an exact analog in the old-fashioned mechanical world of cabinets, drawers, handles, pulls, latches, catches, files, folders, desktops, and locks.</p>
<p>From today&#8217;s <a href="http://yro.slashdot.org/story/12/07/05/1325241/in-uk-htc-defeats-apples-obvious-slide-unlock-patent">SlashDot</a>:</p>
<blockquote><p>&#8220;In a move that is likely to have wide-ranging implications for patent rulings around the world, a High Court Judge in the UK has ruled that HTC did not infringe on a number if Apple&#8217;s patents. &#8216;He said Apple&#8217;s slide-to-unlock feature was an &#8220;obvious&#8221; development in the light of a similar function on an earlier Swedish handset.&#8217; Two other patents that Apple had claimed were infringed were ruled invalid, while a third was found not to apply to HTC. A statement from the Taiwanese firm said: &#8216;HTC is pleased with the ruling, which provides further confirmation that Apple&#8217;s claims against HTC are without merit. We remain disappointed that Apple continues to favour competition in the courtroom over competition in the marketplace.&#8217; Apple declined to comment on the specifics of the case. Instead it re-issued an earlier statement, saying: &#8216;We think competition is healthy, but competitors should create their own original technology, not steal ours.&#8217;&#8221;</p></blockquote>
<p><a href="http://summitlake.com/wp_1computers/files/2012/07/cabinet-pull-10247vb.jpg"><img class="alignleft size-full wp-image-313" title="cabinet-pull-10247vb" src="http://summitlake.com/wp_1computers/files/2012/07/cabinet-pull-10247vb.jpg" alt="" width="200" height="200" /></a>I&#8217;m not taking sides here, partly because Asia is notorious for disrespecting American software copyrights and patents. Mostly, on a deeper level, something is horribly out of control across both oceans. We&#8217;re all trying to patent drawer pull analogs and the &#8220;look and feel&#8221; of natural woodgrain laminates.</p>
<p>The evolution of the software slide lock has been long in coming. Its design purpose was to provide a protective control someplace in between completely open access and a compete userid/password lockdown. The idea is to prevent the user from accidentally triggering an action or changing a setting they didn&#8217;t intend to, without being overly intrusive.</p>
<ul>
<li>DOS and Linux users will remember the ubiquitous command-line question &#8220;Are you sure (Y/N)?&#8221;</li>
<li>Mac and Windows users will remember the old two-button &#8220;dialog boxes&#8221; that used to pop up, asking us, &#8220;You are about to permanently change your Administrator Password,&#8221; presenting the iconic &#8220;OK&#8221; and Cancel buttons.</li>
<li>Since Snow Leopard or somewhat before, Apple had adopted a graphic symbol of a tiny padlock. You had to click that symbol before you could change a user setting or preference. You could click the symbol again to re-lock.</li>
<li>Currently I see the new &#8220;slide locks&#8221;in the Apple Store, and on my iPad. Its larger size facilitates &#8220;gesture&#8221; inputs on touch-screens. The requirement that we intentionally slide a slider to unlock, further safeguards against unintentional unlocks on either smart devices or older Mac and PC mouse-click technologies.</li>
</ul>
<p><a href="http://summitlake.com/wp_1computers/files/2012/07/322870-iphone-slide-to-unlock.jpg"><img class="alignleft size-full wp-image-314" title="322870-iphone-slide-to-unlock" src="http://summitlake.com/wp_1computers/files/2012/07/322870-iphone-slide-to-unlock.jpg" alt="" width="275" height="275" /></a>There are many ways to write a better or faster algorithm, app or entire operating system. I strongly support copyrights and patents for original software code. I&#8217;ll grant there are few things more discouraging than writing a snazzy new software slide lock, only to see it go viral a few months later. We also saw these same issues back in the 1950&#8242;s as car manufacturers shamelessly copied styles from others, but we never saw Buick suing Lincoln or Packard because of the occasional, more-than-passing resemblances of their chromed front grilles.</p>
<p>Making litigation even more fractious is the fact that patent systems differ worldwide. The same infringement lawsuits must often be filed in China, Holland, the UK, Belgium, and the USA.</p>
<p>I suspect a solution will need an international consortium of legal and industrial cooperation. It may require complete removal of protection for purely cosmetic enhancements which intentionally mimic older mechanical hardware analogs. Or, it may evolve a new limited-term patent category for intangible puffery, say, for one year. That would allow some design exclusivity without stymieing creative design.</p>
<p>Let&#8217;s think one last time about the cabinet and furniture hardware industry. For &#8220;pulls&#8221; &#8211; handles to open drawers, cabinet doors and the like &#8211; we can think of the hundreds and hundreds of available designs we&#8217;ve seen. Chromed. Brass. Round. Square Ornate old English, Scandinavian minimalist, and on and on. The older we are, the more designs we can remember. And then there are the matching hinges &#8211; concealed, ornate, heavy-duty, and so forth. How far should laws allow the patent system to go?</p>
<p>The basic design process was all the same: start with a mechanical drawing or wax sculpture. Make a die or investment casting. Stamp or cast them out by the hundreds of thousands, in catalogs featuring thousands of different designs. If we&#8217;d opened all those designs up to the patent and litigation process, would we ever have made it into the 21st century? Whether fabricated by investment casting or software subroutines, They&#8217;re all just handles, latches, pulls, and locks.</p>
<p>We need to clean up our byzantine, gone-amok legal systems that determine what can be patented, not to mention freeing up choked worldwide legal systems which really should be deploying their resources on much more pressing concerns.</p>
]]></content:encoded>
			<wfw:commentRss>http://summitlake.com/wp_1computers/?feed=rss2&#038;p=311</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Spam</title>
		<link>http://summitlake.com/wp_1computers/?p=308</link>
		<comments>http://summitlake.com/wp_1computers/?p=308#comments</comments>
		<pubDate>Fri, 20 Apr 2012 20:52:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[anti-spam]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://summitlake.com/wp_1computers/?p=308</guid>
		<description><![CDATA[We don't get a lot of Comments on Summitlake.com posts, but we DO get a lot you never see. If you ever wondered why we use those annoying CAPTCHA screening devices ("type the letters you see in the box"), read our post in <a href="http://summitlake.com/wp_1computers/?p=308"><em>Computers</em></a>! <a href="http://summitlake.com/wp_1computers/?p=308">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>We don&#8217;t get a lot of Comments on Summitlake.com posts, but we DO get a lot you never see. If you ever wondered why we use those annoying CAPTCHA screening devices (&#8220;type the letters you see in the box&#8221;), here&#8217;s a sampling of why:</p>
<ul>
<li>Thank you, I’ve just been searching for information about this subject for ages and yours is the greatest I have discovered till now. But, what about the bottom line? Are you positive in regards to the source?|What i do not realize is in fact how you’re no longer really a lot more smartly-preferred than you might be now. You are so intelligent.</li>
<li>I just like the helpful info you supply in your articles. I will bookmark your weblog and take a look at once more here regularly. I am fairly sure I will be told a lot of new stuff proper right here! Best of luck for the next!</li>
<li>Is there somematter that the internet cannot do? I’ve been able to get four commercial real estate classes in the past three days.</li>
<li>You are actually a excellent webmaster. The web site loading pace is amazing. It seems that you are doing any unique trick. Moreover, The contents are masterwork. you’ve performed a great task in this topic!</li>
<li>hi!,I really like your writing so so much! share we keep in touch more approximately your article on AOL? I require an expert in this house to solve my problem. Maybe that is you! Having a look forward to see you.</li>
<li>Generally I do not learn post on blogs, however I wish to say that this write-up very compelled me to try and do it! Your writing style has been surprised me. Thanks, quite nice article.</li>
</ul>
<p>As you can see, most of these bogus posts aren&#8217;t even scripted in the United States. They are inanely and generically friendly without saying anything about the article to which they might appear to be responding. That&#8217;s because they&#8217;re mass-mailed to blog-land, and linked to sleazy websites, some porno, some for trash products and services. If you click one, someone gets paid a fraction of a rupee or a yuan. It&#8217;s all a parasitical numbers game, fleas on the back of the great lumbering internet.</p>
<p>They also appear to be able to defeat or otherwise circumvent CAPTCHA, but I have a couple of other mechanisms that ensure they never get posted. I delete them periodically like a gardener pulling weeds.</p>
]]></content:encoded>
			<wfw:commentRss>http://summitlake.com/wp_1computers/?feed=rss2&#038;p=308</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Playing .wmv Video Clips on a Mac</title>
		<link>http://summitlake.com/wp_1computers/?p=294</link>
		<comments>http://summitlake.com/wp_1computers/?p=294#comments</comments>
		<pubDate>Wed, 01 Feb 2012 20:53:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Tidbit]]></category>
		<category><![CDATA[Utility]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://summitlake.com/wp_1computers/?p=294</guid>
		<description><![CDATA[This is for Mac people who want to play those .wmv files we receive ... I'm mostly on a Mac platform now, so I didn't have a way to view Microsoft .wmv movie files on my Mac. Apple uses QuickTime. I had to port the movie over to my PC. I found the solution at Microsoft. <a href="http://summitlake.com/wp_1computers/?p=294">See article and link to Microsoft in <em>Computers</em></a>. <a href="http://summitlake.com/wp_1computers/?p=294">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>This is for Mac people who want to play those .wmv files we receive &#8230; I&#8217;m mostly on a Mac platform now, so I didn&#8217;t have a way to view Microsoft .wmv movie files on my Mac. Apple uses QuickTime. I had to port the movie over to my PC.</p>
<p>There is a $29 conversion utility by Flip4Mac for Mac QuickTime, but I never edit movie files. I found a <a href=" http://www.microsoft.com/download/en/details.aspx?id=9442">free player-only version at Microsoft</a> (embedded below), and it worked seamlessly for me. (Reboot your Mac after installation):</p>
<p><iframe src="http://www.microsoft.com/download/en/details.aspx?id=9442" frameborder="0" width="600" height="400"></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://summitlake.com/wp_1computers/?feed=rss2&#038;p=294</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Danger: Stop Online Piracy Act (SOPA)</title>
		<link>http://summitlake.com/wp_1computers/?p=292</link>
		<comments>http://summitlake.com/wp_1computers/?p=292#comments</comments>
		<pubDate>Thu, 29 Dec 2011 23:07:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Legislation]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[copyright]]></category>
		<category><![CDATA[Industry]]></category>
		<category><![CDATA[Law]]></category>
		<category><![CDATA[SOPA]]></category>

		<guid isPermaLink="false">http://summitlake.com/wp_1computers/?p=292</guid>
		<description><![CDATA[The SOPA bill would allow copyright holders or the U.S. Justice Department to seek a court order which goes against internet providers (instead of just against individual offenders) when websites are accused of enabling copyright violations or counterfeited goods. SOPA would place intolerable enforcement and adjudication burdens on websites and internet providers. SOPA would block U.S. consumers from blacklisted websites, either software or pharmaceutical. By all accounts SOPA is badly written, overly-broad, and vaguely worded. SOPA wouldn't even accomplish its stated purpose. What it would accomplish instead is justifiably frightening.  SOPA isn't just bad law. It's a stealth attack on freedom - a very dangerous thing for the country and informed citizens of any political persuasion. <a href="http://summitlake.com/wp_1computers/?p=292 ">Read this article in <em>Computers</em>.</a> <a href="http://summitlake.com/wp_1computers/?p=292">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>We keep seeing articles about the new proposed Stop Online Piracy Act, or SOPA. I&#8217;ve long been opposed on principle to copyright piracy. As an author, webmaster and occasional utility software programmer, I have no sympathy for content pirates of any age or motivation. I agree that software piracy and other forms of intellectual property theft are a serious worldwide problem. On the other hand, previous industry efforts to combat piracy have been anally self-serving at the expense of end users. They penalized legitimate consumers and distributors,. They were flagrantly draconian. So, now that Congress is trying to get into the act again, I finally decided to read up on SOPA.</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Stop_Online_Piracy_Act#Threat_to_online_freedom_of_speech">SOPA &#8211; Wikipedia</a></li>
<li><a href="http://slashdot.org/index2.pl?fhfilter=sopa">Slashdot</a></li>
<li><a href="http://www.itproportal.com/2011/12/28/rackspace-sopa-deeply-flawed-piece-legislation">Rackspace CEO</a></li>
<li><a href="http://www.rackspace.com/cloud/blog/2011/12/24/why-rackspace-opposes-the-%E2%80%9Cstop-online-piracy-act%E2%80%9D/">Rackspace Blog</a></li>
</ul>
<p>This bill would allow copyright holders or the U.S. Justice Department to seek a court order which goes against internet providers (instead of just against individual offenders) when websites are accused of &#8220;enabling&#8221; copyright violations or counterfeited goods.</p>
<p>The bill does require a court order before enforcement of its provisions. But by all accounts the bill is poorly written and vaguely worded. So it should not be too hard to find sympathetic judges to issue those orders based on personal interpretations of loosely worded law.</p>
<p>One of my questions was: what would prevent copyright holders from seeking redress now? The Millennium Digital Copyright Act currently allows copyright holders to ask internet providers to take down specific content that&#8217;s in obvious violation of copyright law. In fairness, many providers view this as infringement of First Amendment rights, or an impossibly onerous burden of policing and adjudication, or both. Most would not be expected to be too cooperative with efforts to involve them in efforts to censor their subscribers&#8217; content in any way. And they have a point. This kind of censorship, so prevalent in the far east and parts of the middle east, is used to strengthen totalitarian regimes and neutralize or eliminate dissent. It appears SOPA would partially dismantle protections for websites that act in good faith.</p>
<p>We should not miss noticing this is <strong>just a new example</strong> of one segment of our &#8220;free enterprise system&#8221; trying to legally ensnare another segment into doing its bidding.</p>
<p>SOPA advocates claim the bill is not aimed at sites like YouTube which host all manner of content (usually excerpted snippets) uploaded by the public. But, SOPA does not appear to have any protections that would prevent action against a site on the YouTube model if a plaintiff felt like it.</p>
<p><span style="text-decoration: underline;">So it is strange indeed</span> that the SOPA bill was introduced by Lamar S. Smith, Republican U.S. Representative from Texas. Smith&#8217;s own website prominently banners his aim of <strong>&#8220;lifting the burden of regulations that is strangling small businesses.&#8221;</strong></p>
<p>The &#8220;counterfeited goods&#8221; provision is also interesting. It has nothing to do with online piracy as the public understands it; it has to do with the intellectual property of the pharmaceutical industry (drug patents), such as Pfizer, which is involved in committee hearings. SOPA could completely block U.S. citizens from gaining online access to Canadian and other international pharmaceutical sites. It is currently already illegal to ship prescription drugs from outside the U.S. whether or not a legitimate doctor&#8217;s prescription is supplied. SOPA could prevent you from even viewing those sites:</p>
<p><strong>True censorship:</strong> <div class="bgt"><div class="bgb"><blockquote class="center">SOPA would allow judges to order internet service providers to block access to certain websites to customers located in the United States by checking those customers&#8217; IP address, a method known as IP blocking. There have been concerns that such an order would require those providers to engage in &#8220;deep packet inspection&#8221;, which involves analyzing all of the content being transmitted to and from the user, and which could lead to an invasion of those customers&#8217; privacy. &#8212; Wikipedia <div class="a"></div></blockquote></div></div></p>
<p>When Congress placed new restrictions on fees banks could charge retailers for debit card usage, a Bank of America spokesman howled this was &#8220;unwarranted interference&#8221; with the bank&#8217;s ability to conduct its business. BofA then announced its intent to impose a $5 monthly &#8220;swipe fee&#8221; on its customers, but backed in face of a howl of public protest and boycotts.</p>
<p>The Republican Party, the party of favor for corporations and big business, has long charged moderates and liberals with exactly this kind of &#8220;unwarranted interference,&#8221; going so far as to claim Big Government is destroying America. Yet, <em>where their own business and lobbying interests are concerned</em>, conservatives and their sponsoring corporations are capable of being even more interventionist than their more moderate political opponents. SOPA isn&#8217;t just bad law. SOPA doesn&#8217;t actually accomplish what it claims to do. What it instead accomplishes is disturbing. It&#8217;s a stealth attack on freedom &#8211; a very dangerous thing for business, the country, and informed citizens of any political persuasion.</p>
]]></content:encoded>
			<wfw:commentRss>http://summitlake.com/wp_1computers/?feed=rss2&#038;p=292</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Office Outlook 2011 for Mac Error Code -3176</title>
		<link>http://summitlake.com/wp_1computers/?p=289</link>
		<comments>http://summitlake.com/wp_1computers/?p=289#comments</comments>
		<pubDate>Mon, 31 Oct 2011 22:13:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Network]]></category>

		<guid isPermaLink="false">http://summitlake.com/wp_1computers/?p=289</guid>
		<description><![CDATA[In researching the Office for Mac -3176 error (Outlook mail) I noted quite a bit of chatter from other Office for Mac users. I resolved my issue with what I call the "Dave Anguay Method." I deleted my 3 inoperative POP mail accounts and re-added them manually. Everything works fine. Thanks again, Dave. <a href="http://summitlake.com/wp_1computers/?p=289">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><div class="bgt"><div class="bgb"><blockquote class="center"><strong>Outlook cannot find the server. Verify the server information is entered correctly in the Account Settings, and that your DNS settings in the Network pane of System Preferences are correct. Error Code -3176</strong>&#8221;  <div class="a"></div></blockquote></div></div></p>
<p>In researching this error I noted quite a bit of chatter from other Office for Mac users. Microsoft&#8217;s own <a href="http://support.microsoft.com/kb/2409268">support page for this issue</a> was unhelpful. Google&#8217;s <a href="http://www.google.com/support/forum/p/gmail/thread?tid=2bfb55880f7492ca&amp;hl=en">Help forum</a> listed a similar issue but my problem was with my POP accounts, not with Google&#8217;s IMAP account. Solutions seemed in short supply. I had this problem on my MacBook Pro running Lion 10.7.2 &#8211; but not on my Mac Pro desktop with the same app, OS and settings.</p>
<p>Microsoft suggests checking to see you have an internet connection. If you are reading their web support page, they helpfully point out that you already do. They suggest checking your DNS setting in Networking, and rechecking your server and port settings in Outlook &#8220;Accounts.&#8221; All of mine were correct and agreed 100% with the Outlook for Mac 2011 settings on my Mac Pro.</p>
<p>My Apple MAIL works fine with the same settings. My settings also worked fine for years under Office 2007 and Windows 7.</p>
<p>Remember, this is Microsoft, not Apple. Others had tried all this without getting any closer to the problem.</p>
<p>I resolved my issue with what I call the &#8220;Dave Anguay Method.&#8221; Dave taught me this trick many years ago. He was setting up new networked workplace printers on our corporate PC laptops on a Windows server. If you can&#8217;t get the setting to work, don&#8217;t waste time asking your Administrator to &#8220;fix&#8221; it. Delete the bad account or connection, and re-add it.</p>
<p>I deleted my 3 inoperative POP mail accounts and re-added them manually. Everything works fine. Thanks again, Dave.</p>
]]></content:encoded>
			<wfw:commentRss>http://summitlake.com/wp_1computers/?feed=rss2&#038;p=289</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Evernote – Remember Everything</title>
		<link>http://summitlake.com/wp_1computers/?p=288</link>
		<comments>http://summitlake.com/wp_1computers/?p=288#comments</comments>
		<pubDate>Sun, 23 Oct 2011 06:13:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[reviews]]></category>

		<guid isPermaLink="false">http://summitlake.com/wp_1computers/?p=288</guid>
		<description><![CDATA[I am a great note–taker: to-do notes, checklists, reminders, dashed-out thoughts and drafts for that Great American Novel. As I use different machines for different locations and tasks, finding where I put that note is not always that easy. I’m so enamored of finding Evernote I’m already awarding it Summitlake’s Five Stars. <a href="http://summitlake.com/wp_1computers/?p=288">Read this article in <em>Computers</em></a>. <a href="http://summitlake.com/wp_1computers/?p=288">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="www.evernote.com/"><img class="alignleft size-full wp-image-1162" title="Click icon for link to Evernote Corporation web page" src="http://summitlake.com/wp-content/uploads/2011/10/Evernote-icon.jpg" alt="" width="99" height="99" /></a><strong>Evernote</strong> is &#8220;a suite of software and services designed for notetaking and archiving.&#8221; The corporation is described as a &#8220;Creator of a multi platform note taking application for mobile devices. The site include product information, a company blog, and support services.&#8221;</p>
<p>I am a great note&#8211;taker: to-do notes, checklists, reminders, dashed-out thoughts and drafts for that Great American Novel. As I use different machines for different locations and tasks, finding where I put that note is not always that easy. Yes, I do file syncs, but not every day.<em> I also use (and thoroughly recommend) the indispensable <a href="https://www.dropbox.com/">Dropbox</a> for Cloud file syncs across multiple devices and locations.</em></p>
<p>But I&#8217;ve wanted to get away from that text file syndrome for a long time. Individual text file notes are under-the-hood equivalents of Post-It Notes on the refrigerator. Notepads and note organizers have long been a dime a dozen. I even wrote a crude one in C once. Apps come and go so fast I went back to huge folders of text files back in the 1990&#8242;s.</p>
<p>I hope Evernote sticks around. I found it by accident in the Apple App Store, while looking for something compatible with the Notes app that comes on the iPad. I found Evernote instead, which is much, much more robust. It&#8217;s available for Mac, PC and mobile devices: iPad, iPhone, Blackberry and DROID. I now have it on all my computers. Best of all, they all talk to one another via the Cloud. No more file syncs, no more lost notes. This isn&#8217;t a full review, but &#8230;</p>
<p>I&#8217;m already awarding it Summitlake&#8217;s Five Stars. <a href="http://summitlake.com/wp-content/uploads/2011/10/votestars-5-0.gif"><img class="size-full wp-image-1163 alignnone" title="votestars-5-0" src="http://summitlake.com/wp-content/uploads/2011/10/votestars-5-0.gif" alt="Five stars" width="64" height="12" /></a></p>
<p>As I wrote a nephew,</p>
<p><div class="bgt"><div class="bgb"><blockquote class="center">This app is VERY cool. <strong>Free.</strong> Check it out!</p>
<p><a href="http://www.evernote.com/">http://www.evernote.com/</a></p>
<p>I have it installed on iMac, Mac, PC, and iPad. Everything autosyncs on their private Cloud. You can also access your notes on a secure web page. No more file transfers. Notes, pictures, even audio I think. Creditable text editor. Reminders, lists, Great American Novel. Not recommended for bank and credit account numbers <img src='http://summitlake.com/wp_1computers/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Organize by multiple Notebooks. <div class="a"></div></blockquote></div></div></p>
<p>And I hope you&#8217;ll check it out too. Below is a screen shot of my app (Grabbed on the iMac) with my starter set of my own notes. A place for everything at last, and everything in its place. You can subcategorize your notes by Notebooks, and you can create as many of then as you want. You can access the same notes in the same format anywhere on any machine or platform, and you can also access your notes on the Web. You can export backups of your notebooks to the local hard drive.</p>
<p>Users are even assigned a free individual email address which will post directly to your free Evernote account. And so you will still find it on any one of your Evernote machine or device installations next time you open Evernote. Not bad for a free app.  This app (and the services behind it) are certainly worth a bona fide retail price.  I can&#8217;t even find where I might send a PayPal donation. I think the implementation of this idea is pure genius. Cheers!</p>
<p><a href="http://summitlake.com/wp-content/uploads/2011/10/Evernote1.jpg"><img class="alignnone size-full wp-image-1165" title="Evernote with 3 notes in Notebook" src="http://summitlake.com/wp-content/uploads/2011/10/Evernote1.jpg" alt="Evernote" width="600" height="400" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://summitlake.com/wp_1computers/?feed=rss2&#038;p=288</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great First Impressions of iPad2</title>
		<link>http://summitlake.com/wp_1computers/?p=283</link>
		<comments>http://summitlake.com/wp_1computers/?p=283#comments</comments>
		<pubDate>Tue, 18 Oct 2011 00:51:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://summitlake.com/wp_1computers/?p=283</guid>
		<description><![CDATA[<a href="http://summitlake.com/wp_1computers/files/2011/10/2011_10_17_p1541.jpg"><img class="alignleft size-thumbnail wp-image-286" title="CV1_TNY_10_17_11Blitt.indd" src="http://summitlake.com/wp_1computers/files/2011/10/2011_10_17_p1541-150x150.jpg" alt="" width="124" height="124" /></a> I ordered my own iPad2 on Wednesday October 5. I only found out later in the day that Steve Jobs had just died. I ordered the basic 16GB Wi-Fi model iPad. I've already started downloading my <em>The New Yorker</em> subscription to iPad, downloaded my Amazon Kindle ebook purchases using the Kindle app, sent an e-mail, copied over my digital images, and more. There's no learning curve - you just start using it. I have a feeling I'm going to love my iPad2 all the more as I use it.  I discuss what I've done so far, including embracing a reliable 11n form of Wi-Fi home networking.  <a href="http://summitlake.com/wp_1computers/?p=283">Read the full article in Computers</a>.  <a href="http://summitlake.com/wp_1computers/?p=283">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I ordered my own <a href="http://www.apple.com/ipad/" target="_blank">iPad2</a> on Wednesday October 5. I only found out later in the day that Steve Jobs had just died.</p>
<p>We&#8217;ve all had a chance to review his life on TV newscasts, TV specials, online articles and analyses, and tributes. The number of tributes exceeded anything I hoped for or expected. Even at news sources I normally distrust, coverage was positive yet balanced and told a remarkable story that will be retold many more times in coming decades. I think iPad2 turned out to be a brilliantly fitting way to launch the post-Jobs era. It embodies all the design elegance, under-the-hood power and user-friendly simplicity he devoted his life to.</p>
<p><a href="http://summitlake.com/wp_1computers/files/2011/10/2011_10_17_p154.jpg"><img class="alignleft size-full wp-image-284" title="October 17 NEW YORKER" src="http://summitlake.com/wp_1computers/files/2011/10/2011_10_17_p154.jpg" alt="October 17 NEW YORKER" width="154" height="210" /></a>Too few of us read and enjoy <em>The New Yorker</em> perhaps, but as one dedicated fan of that magazine, I can recommend their October 17, 2011 online article &#8220;How Steve Jobs Changed,&#8221; by James Surowiecki. Surowiecki is an accomplished writer and financial analyst who writes the magazine&#8217;s <em>The Financial Page.</em> <a href="http://www.newyorker.com/talk/financial/2011/10/17/111017ta_talk_surowiecki#ixzz1b3bw1cSh" target="_blank">Read Surowiecki article</a></p>
<p>But this post is about <strong>my first impressions of my iPad</strong>, even though its rationale is for me closely connected to reading my weekly <em>The New Yorker</em> on iPad and, eventually, all my other periodicals.</p>
<p>I was introduced to my first hands-on iPad experience by a friend whose eyesight issues may be worse than my own. He bought iPad to help rectify that. I find myself limiting reading sessions with print periodicals, either because of poor-quality newsprint, or lighting and glare issues with high-quality glossy magazine pages such as are mailed to me by <em>The New Yorker</em> and <em>National Geographic.</em> My friend says he can&#8217;t read a regular newspaper at all any more. I get all my in-depth news online, and for free, at sources such as BBC, Huffington Post, <em>The New York Times</em>, <em>Los Angeles Times</em>, <em>Scientific American</em>, PolitiFact and MarketWatch.</p>
<p>I&#8217;m fine with reading news on computer flat-screen panels. But I never cared for being chained to a computer chair to read books or magazines at length. I&#8217;ve already started downloading my <em>The New Yorker</em> issues to iPad, and find them eminently easier to read and navigate than those paper editions. This is a vast improvement over early industry efforts to find a suitable ebook format for periodicals.</p>
<p>I ordered the basic 16GB Wi-Fi model iPad. I don&#8217;t have 3G on my Verizon account and I&#8217;m unwilling to pay the monthly charges for it. 3G is great for iPhone, perhaps, and for people always on the go. Even if 3G was free, my lifestyle is such that I&#8217;d seldom be in a location where I&#8217;d have any need for it. Obviously, if you are &#8220;mobile&#8221; &#8211; move around a lot away from home and take your devices with you &#8211; the Wi-Fi + 3G model would be best for you. <span id="more-283"></span></p>
<h3>Wireless Networking</h3>
<p>A wireless discussion is old hat to younger generations. I&#8217;ll discuss connectivity briefly for the rest of us.</p>
<p>The difference between Wi-Fi and 3G: Wi-Fi is the wireless home network currently used in most homes around the network to connect to the internet and with other computers and devices on the home network. 11n is the current protocol, and it is much better than anything available a couple of years ago. Wi-Fi typically has a range of a few hundred feet at best. <a href="http://en.wikipedia.org/wiki/3G#Applications_of_3G" target="_blank">3G</a> extends the range of services available from cellular providers such as Verizon, AT&amp;T or Sprint, making possible &#8220;on the road&#8221; internet connection, mobile TV, video on demand, and location-based services. In short, 3G can eliminate the need for any home network at all, though Americans still pay dearly for 3G.</p>
<p><a href="http://summitlake.com/wp_1computers/files/2011/10/buystrip_ipads_20111005.png"><img class="alignleft size-full wp-image-285" style="margin-top: 10px; margin-bottom: 10px;" title="iPad2" src="http://summitlake.com/wp_1computers/files/2011/10/buystrip_ipads_20111005.png" alt="iPad2" width="161" height="143" /></a>The iPad isn&#8217;t a handheld computer and isn&#8217;t meant to be. It can&#8217;t do much without a Wi-Fi or 3G wireless connection. You need an internet connection to connect to and surf the internet on Safari, set up and send mail, download apps, download eBooks, or all the other things I&#8217;m discovering I can do with my iPad. Yes, even Facebook. I can run business apps on iPad, though I probably won&#8217;t. That&#8217;s more than I can do with my legacy Kindle, though I&#8217;m still a Kindle fan too and have purchased several books in Kindle format (and I&#8217;m writing one of my own, too.)</p>
<p><strong>Public Wi-Fi &#8220;hotspots&#8221;</strong> are nearly ubiquitous in places frequented by travelers and coffee-shoppers. I first connected to public Wi-Fi in the Seattle Airport in 2008, with my horrible old Vista laptop, while waiting for a plane transfer.</p>
<p>Obviously we aren&#8217;t going to be roaming around the home or drive to a coffee house with an Ethernet cable attached to a smart device. And iPad doesn&#8217;t come with an Ethernet connection anyway.</p>
<p>When I bought my iPad I no longer had a home wireless set up anywhere. I own an Apple Airport, still in the box, but couldn&#8217;t see the point of setting it up. I&#8217;m still hard-wired for fast CAT5 Ethernet (the familiar blue and yellow cables) in both Phoenix and Castro Valley. It&#8217;s fast &#8211; much faster than Wi-Fi &#8211; but it&#8217;s &#8220;tethered.&#8221; Earlier experiments with wireless were frustrating, slow and unreliable. I had yanked all that out a couple of years ago.</p>
<p>A nephew guest had already set up a Belkin 11n wireless router in my Phoenix home and left it here for me. It&#8217;s plugged into my Ethernet router, so wireless devices can still share resources previously available only on devices&#8217; shared folders on my existing wired CAT5 network. The Belkin 11n wireless router is utterly reliable &#8211; I have never had a drop-off &#8211; and it works all over the house and yard. It&#8217;s secure, and it&#8217;s plenty fast enough for downloading an app or even a 186MB magazine. In fact, I&#8217;m getting dependent on it. I&#8217;ll be setting up my Airport Wi-Fi in Castro Valley for the duration of my stay there. But I&#8217;m keeping fast CAT5 10/100 Ethernet too.</p>
<h3>Using My iPad</h3>
<p>This can&#8217;t be about how to use an iPad. Besides the fact there are plenty of ebooks on the topic, the whole point of the evolution of the Apple Desktop metaphor, in all of its reincarnations, is that you shouldn&#8217;t need a manual at all. The &#8220;manual&#8221; for an iMac was about ten 3&#215;5 pages. The &#8220;manual&#8221; for an iPad is a single sheet of glossy 3&#215;5 stock. You turn iPad on and just start using it. You learn by looking around and trying out the features. There is an operating system, under the hood, but you never see it unless you adjust your Settings.</p>
<p>You may be thinking, &#8220;Oh no, I always read the manual before using any device. It&#8217;s just the way I learn.&#8221; No, not this time. iPad makes it fun to break old learning habits (and it&#8217;s not a PC &#8211; you can&#8217;t break it.) But if you&#8217;re determined to dig in your heels, download <a href="iPad:%20The%20Missing%20Manual">iPad: The Missing Manua</a>l from O&#8217;Reilly, as an ebook &#8211; Print editions not available! <img src='http://summitlake.com/wp_1computers/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>I used iPad Settings to connect to our local wireless network, which iPad found automatically &#8211; I just typed the router password to join the network. This level of ease is where manuals really start getting in the way of the real learning process. You&#8217;re supposed to be training your eyes and fingers, not your inductive reasoning skills. <em>Just do it.</em></p>
<p><strong>Books and Magazines:</strong> So far, I&#8217;ve downloaded the <em>New Yorker</em> app and the most recent three issues. I&#8217;ve installed the Kindle for iPad app and downloaded all my previously-purchased Kindle ebooks from Amazon onto my iPad. I compiled my book draft, the BIO project, in epub format (using a free online service) and loaded it into my iPad. The formatting of my book is just gorgeous &#8212; far more professional than the same source code compiled for my first or second-generation Kindle.</p>
<p>With all due respect to <strong>Amazon</strong>, I realized I was just using my early model Kindle to inspect and QC my draft autobiography. I&#8217;d purchased several Kindle ebooks, including my beloved Poirot and Sherlock Holmes mystery stories, but I&#8217;ll be damned if I was spending any time in the living room reading on my early gray-scale Kindle! Navigation was just, well, a pain in the ass. It was a good effort, but crude when compared to Apple iPad2 touchscreen &#8220;inertial scrolling&#8221; and finger-swipe technology that makes reading on iPad even easier than turning the pages of a hard-bound book. I&#8217;ve read about the color Kindle Fire, due November 15, which is going to be improved in more ways than color, and more fun to use. I actually pre-ordered one, too. But when I got to thinking about all the other ways I could use a very smart tablet, I canceled that Amazon order and bought my iPad2 at the online Apple Store.</p>
<p><strong>Photos:</strong> I&#8217;ve loaded a ton of my photography images onto iPad. As with the magazine presentations, the clarity and richness of color photography is just stunning!</p>
<p><strong>E-mail:</strong> I set up my gmail account on iPad and it works great. The visual graphic keyboard is the largest and best I&#8217;ve seen for a smart device, and I&#8217;m learning to use it with some proficiency. For more serious text entry one can also use a wireless keyboard via native iPad Bluetooth connectivity. I have an extra Apple wireless keyboard I can just leave on the coffee table when I want to write articles or longer e-mails.</p>
<p><strong>Writing Notes:</strong> I&#8217;m a great jotter. I often get ideas or hear collectible quotes while watching TV and write them down on anything handy. In the past I&#8217;ve keep spiral notebooks and note pads everywhere. Sometimes I&#8217;ll dash into the computer room to write an article stub on the fly during a commercial. iPad (of course) has a great NotePad.</p>
<p><strong>Music:</strong> My main music collection is in excess of 300GB of WAV files on iTunes (both Mac and PC). It plays through either PC speakers or a home entertainment system. iPad will never replace this. I have loaded a few songs onto iPad. Using the built-in &#8220;iPod&#8221; app, I monitored &#8220;The Belgian Detective&#8221; by Christopher Gunning, and Bach Cantata #208 played by Yo-Yo Ma. Playlists are presented in the friendly format familiar to anyone with iTunes. The sound is creditable for such a device. You&#8217;d not want to monitor Virgil Fox on the Royal Albert Hall pipe organ in London, playing <em>Toccata and Fugue in D Minor</em>, without plugging ear buds, an amp or a headset into the 3.5-mm stereo headphone minijack. I easily connected to iTunes at the Apple Store to download my previously-purchased songs. Regarding Apple Store, I do tend to favor CD&#8217;s and the bulky uncompressed WAV files, but I also appreciate that I can cherry-pick individual songs when I&#8217;m not sure I&#8217;m interested in the whole album.</p>
<p><strong>Facebook:</strong> if I want, my Facebook app lets me monitor my Wall or post seamlessly.</p>
<p><strong>Internet:</strong> Safari&#8217;s built-in and works well. You can also download a Firefox app, and probably Chrome too. Large web-pages (like this one) are scaled to fit the iPad tablet. As web developer I was first concerned, then relieved and delighted. Thanks to iPad&#8217;s brilliant high resolution display, I&#8217;m easily able to read pages and posts, navigate with hyperlinks and the javascript nav bars, view the pictures and slide galleries, and enjoy the surfing experience everywhere just as I do in the computer chair. Commercial and news sites work equally well.</p>
<p><strong>Apps:</strong> There are loads of built-in Apple <a href="http://www.apple.com/ipad/built-in-apps/itunes.html" target="_blank">iPad</a> apps. Apple iCloud is also rolling out for online storage, similar in concept to <a href="http://www.dropbox.com/" target="_blank">DropBox</a> freeware I use on my Macs and PC&#8217;s. I have some interest in free secure storage for a limited number of my non-sensitive personal files. Even though Apple and Amazon servers are secure, one should not upload sensitive data (financial and password files for instance) to Cloud storage without encrypting it.</p>
<p><strong>Sync:</strong> you can easily synch your files with your desktop machine or other devices, across the network or even via USB.</p>
<p>There are also over 140,000 downloadable <a href="http://www.apple.com/ipad/from-the-app-store/" target="_blank">third-party apps</a> at the Apple Store and many of these are free, since they enable third-party services including magazines, ebooks, and other content services.</p>
<p>It&#8217;s true. The iPad2 is slim, elegant, and invites hands-on exploration. There is undoubtedly some way to accomplish almost all tasks an average user could imagine.</p>
<p>Yes, there are still plenty of good reasons to keep that desktop or laptop Mac or PC. Multiple-core CPU&#8217;s, terabytes of storage and 24&#8243; flat panel displays are a few of them. Off the shelf, you can&#8217;t compile C code on iPad, write and upload Perl scripts and HTML pages, run Photoshop or edit image files, run batch programs for UC Berkeley&#8217;s Project SETI, or many of the other off-the-wall projects I run on my desktop machines. But there&#8217;s probably an iPad app for many of those tasks too. I won&#8217;t run my personal finances on an iPad, though there&#8217;s an app for that too. I won&#8217;t write or compile that Great American Book on iPad, but I can write as many draft pages or chapters on iPad as I like.</p>
<p>iPad2 lets me take my tasks wherever I happen to be in the house. Sure, I own that laptop, which runs Vista and is slow, and I hate it. iPad2 is instant-on. On iPad, I can find or return to any app or task in a flash, and start using it. That&#8217;s the Steve Jobs concept of Simplicity in a nutshell.</p>
<h3>&#8220;More than just a big iPhone&#8221;</h3>
<p>I don&#8217;t own an iPhone and may never own a smart phone. My two issues there are monthly cost of operation and display size. Early iPad critics feared iPad was really just a big iPhone. In theory you could configure an iPhone or similar smart device to do anything one can do on an iPad (they run the same iOS.) For me, monthly cost and display size would always be the show-stoppers. If you are very mobile, and can easily read a handheld smart device display, must have instant connectivity everywhere, and can only afford one device, well, then, iPhone, Blackberry or DROID may be the way to go. I have an older-generation LG cell phone, and I hate it, so I&#8217;ll probably replace it with an even simpler phone. A JitterBug style simple-phone for senior citizens is all I want for mobile telecommunications.</p>
<p>So I&#8217;m not quite clear on what the iPad can do you absolutely can&#8217;t do on an iPhone. In my case that&#8217;s problematic anyway, since I&#8217;m unlikely to adopt any such small device for input and output, except to field a phone call on my Senior Citizen simple-phone.</p>
<p>Once you actually get your hands on someone&#8217;s iPad2 and try it out for a few minutes, you won&#8217;t want to give it back. I have a feeling I&#8217;m going to love my iPad2 all the more as I use it.</p>
<h6><span style="color: #ff0000;">©2011 Alex Forbes</span></h6>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://summitlake.com/wp_1computers/?feed=rss2&#038;p=283</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Steve Jobs: The Man Who Changed Everything</title>
		<link>http://summitlake.com/wp_1computers/?p=281</link>
		<comments>http://summitlake.com/wp_1computers/?p=281#comments</comments>
		<pubDate>Mon, 10 Oct 2011 07:34:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Solutions]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Industry]]></category>
		<category><![CDATA[legacy devices]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://summitlake.com/wp_1computers/?p=281</guid>
		<description><![CDATA[Some of us are too young to remember those early Mac days. Many of us, including oldsters like me, can feel free to simply take for granted the incredible palette of instinctive tools we use in interacting with our Macs, PC’s, iPhones, iPads and iPods and all such similar devices. That’s as it should be. <a href="http://summitlake.com/wp_1computers/?p=281">Read the full article in <em>Computers.</em></a> <a href="http://summitlake.com/wp_1computers/?p=281">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>In my <a href="http://summitlake.com/?p=1151">Wednesday October 5th memorial article</a> I said a few words for Steve Jobs:</p>
<p><div class="bgt"><div class="bgb"><blockquote class="center">Steve Jobs and Steve Wozniak brought personal computing out of the science labs and back offices and into average American homes in the 1970&#8242;s. The Macintosh, a brilliant synergy of great hardware and a user-friendly software interface, created a sea change in home computing which still raises our expectations today. <div class="a"></div></blockquote></div></div></p>
<p>As I predicted in that article, only days after the passing of Apple&#8217;s Steve Jobs, even hardball political commentary broadcasts like <em>Inside Washington</em> were rediscovering how many ways Steve Jobs will continue to influence how we conduct our daily lives. One commentator said that people who used to read real newspapers and real magazines now read the online edition on their iPad. I&#8217;d like to take that a step further and say I know people who <strong>never</strong> used to read real newspapers or real magazines, who&#8217;ve started devouring serious professional news resources on their laptops and iPads.</p>
<p>It really doesn&#8217;t matter if one does or doesn&#8217;t &#8220;like&#8221; Apple. Some of us have a contrarian distrust of anything that becomes too iconic, too popular, or attracts anything that smells like a cult. Some people may feel all the credit given to Jobs somehow diminishes the real innovations of the many others in other competitive industries. And of course most homes, and the entire business community, still run on the Windows platform. <span id="more-281"></span></p>
<p>My point is simple. It doesn&#8217;t matter whether we like Mac or PC. It doesn&#8217;t matter whether we&#8217;re a techno-geek who only speaks Linux, or a baby boomer still trying to figure out how to copy and paste and send those e-mail things. It doesn&#8217;t matter whether we carry a laptop, tablet, e-reader or iPod-type device.</p>
<p>Whatever we do and however we do it today, in 1984 Jobs changed the course of how the world does things. Every device you see, touch, listen to or consult uses graphic metaphors introduced to the mass consumer in a neat little package called &#8220;the Mac.&#8221; Perhaps you like Windows? I use both platforms. Windows isn&#8217;t a copy of the first Mac OS, it&#8217;s just a direct descendant of every concept introduced by Macintosh.</p>
<p>Today I&#8217;d like illustrate the debt of gratitude we really do owe Steve Jobs and his Apple team. Some of us are too young to remember those early Mac days. Many of us, including oldsters like me, can feel free to simply take for granted the incredible palette of instinctive tools we use in interacting with our Macs, PC&#8217;s, iPhones, iPads and iPods and all such similar devices. That&#8217;s as it should be.</p>
<p>As I wrote in my earlier article, one of those things we absolutely take for granted today, as we should, is our &#8220;user-friendly interface.&#8221; We expect our devices to lead us logically and intuitively into the tasks we need to accomplish, and we expect to discover new things we can do with our devices on the fly, as we use them &#8211; not after hours of poring through volumes of old-fashioned user manuals.</p>
<p>Prior to Apple II, the pitifully few &#8220;home computers&#8221; that existed were hand-wired electronics cases, usually kits, with glowing lights to indicate states and results. Despite my college background on FORTRAN, I had no curiosity about them. Those were workbench toys for true geeks. The idea of a &#8220;practical&#8221; home computer was then an oxymoron.</p>
<p>From <a href="http://en.wikipedia.org/wiki/History_of_personal_computers#Altair_8800">Wikipedia</a>:</p>
<p><div class="bgt"><div class="bgb"><blockquote class="center">The Altair, and early clones, were relatively difficult to use. The machines contained no operating system in ROM, so starting it up required a machine language program to be entered by hand via front-panel switches, one location at a time. The program was typically a small driver for an attached paper tape reader, which would then be used to read in another &#8220;real&#8221; program. Later systems added bootstrapping code to improve this process, and the machines became almost universally associated with the CP/M operating system, loaded from floppy disk. <div class="a"></div></blockquote></div></div></p>
<p>In 1977 Apple II married the QWERTY keyboard, color TV monitor, 5&#8243; floppy disk and printer capability to a modest 6502 processor chip and 16K of RAM. Wozniak wrote its Apple OS. This spawned the first commercial software, such as Dan Bricklin&#8217;s <em>VisiCalc</em> spreadsheets and basic word processing applications we could recognize and use today.</p>
<p>This in turn primed homes and the workplace for downstream devices like Radio Shack&#8217;s TRS-80, Atari for music and gaming, and, in 1981, the great and iconic IBM PC. Although there were tech-intensive ways to load data into machines via floppy disk, these machines generally required users to first input commands and data into their machines via a series of command-line questions and responses in early DOS versions, which in turn owed its heritage to Unix. The Apple II had an improved command-line interface, but we still typed a response, a menu selection number or our data into the Apple, just like its imitators.</p>
<p>Macintosh changed all that forever in 1984 with its GUI or &#8220;graphics user interface.&#8221; Jobs saw &#8220;concept&#8221; prototypes of all this at Xerox PARC. His genius was recognizing that (1) anyone could learn to use this, and (2) he could improve upon that, mass-produce it elegantly, and deliver it affordably to anyone.</p>
<p>What the hell is a &#8220;graphic user interface?&#8221; As obvious as the question seems, what we see on the screen is only the tip of the iceberg. The real power is underneath.</p>
<p>Starting with the Mac, it&#8217;s the iconic graphic representation of tasks we previously performed by typing commands into a black-and-white command-line interface. Its hallmark is intuitive ease of use enforced by consistent deployment and conventions across all applications that run on a given operating system. And it&#8217;s no accident that most of those conventions were commercially introduced or invented at Apple. The very idea of a powerful &#8220;user&#8221; rule book to impose standardization on how the interface is presented to us was Apple&#8217;s invention and they enforced it in-house and with the software shops. The built-in code toolkit to make it easy to program under Apple house rules was awesome. Apple called it their &#8220;human interface guidelines,&#8221; and it changed the industry &#8211; and how we use the devices &#8211; forever.</p>
<p>It also changed how we communicate forever. What follows is old-hat gospel to veteran Mac and PC users, but I mention it here because we have a whole new generation of users fortunate enough to be able to take all this for granted, like electricity and running water in my parents&#8217; generation.</p>
<p>Whether you scroll through iTunes with a swipe of finger, enjoying that free inertially-loaded scrolling, or use two fingers to zoom in on a selection, or click &#8220;Yes&#8221; on a Mac or PC, that&#8217;s part of an interface. In no particular order, here, from Macintosh, are some of the software tools we&#8217;ve come to expect everywhere:</p>
<ul>
<li>Mouse, from Xerox PARC, and the idea of coordinate mapping the whole screen: everything you can click, drag, select, zoom, expand, resize, minimize, draw, fill, color, cut, copy, paste, insert, open, save, find, search, or jump to with a mouse. Touchpads also first appeared on Macs.</li>
<li>Click-able shortcuts or aliases</li>
<li>Fonts and typography: Jobs revitalized the whole typography industry, starting with the Geneva typeface, designed by Susan Hare for Apple.</li>
<li>Menus: yes, hierarchical drop-down, collapsing and pop-up menus started with Mac.</li>
<li>Dialog boxes, &#8220;OK&#8221; and &#8220;Cancel&#8221; buttons, text fields, radio buttons and checkboxes: prior to Mac, users typed answers to a series of command-line questions, such as &#8220;Continue (Y) or Cancel (N).&#8221;</li>
<li>Color (Macintosh LC, 1990)</li>
<li>Icons, to represent files and directories instead of listing filepaths like <em>C:\WH var\www\cgi-bin</em></li>
<li>&#8220;Folders&#8221; to represent directories and nested subdirectories of files</li>
<li>Task bars and palettes for task display and selection, using these icons</li>
<li>Computer art and graphics design, with products such as MacPaint and MacDraw, which spawned commercial Adobe graphics programs.</li>
<li>Apple did not invent e-mail. But America Online launched the first modern mail portal, just in time for Macintosh. A Windows AOL version was offered some time later.</li>
<li>&#8220;Finder,&#8221; later known to Windows users as &#8220;Windows Explorer&#8221;</li>
<li>Control Panels</li>
<li>Music. I bought my first Mac in 1985 or 1986 and I&#8217;d heard claims it played tunes. I expected something crude. When I found the software that played Bach&#8217;s &#8220;Ode to Joy&#8221; so beautifully, I was overwhelmed by unexpected surprise.</li>
<li>Consumer laser printers</li>
</ul>
<p>In fact, the entire &#8220;desktop&#8221; metaphor came from Mac. Everything we needed to perform a task or access our files was visible or accessible from the desktop. On our modern web browsers, whether Internet Explorer, Firefox, Safari, or Chrome, they all inherit the lineage of the original 1994 Netscape interface, which in turn satisfied user expectations by adapting all the &#8220;web object&#8221; concepts from the Macintosh inventory of standardized user tools and controls.</p>
<p>Windows 95 came out in August 1995 and there were any number of well-deserved crude jokes about Microsoft&#8217;s first answer to the Mac OS. Anyone who&#8217;d ever used a Mac knew (1) where the Windows OS features came from and (2) already knew how to use the Windows desktop and user interface. We Mac-heads taught a lot of users how to use their PC&#8217;s. One of the steepest teaching hurdles was trying to convince PC users not to be afraid of their machines!</p>
<p>How did this uniformity come about? Was it simply plagiarism? Absolutely not. It was common sense. First of all, the Gates organization had already thoroughly integrated the Mac metaphors into Microsoft Word and Microsoft Excel for Macintosh. Word and Excel for Windows only came along later, actually, with the new Windows 95 GUI.</p>
<p>This could have been turned into a huge crisis for both Apple and Microsoft, but it didn&#8217;t. Business users would have revolted if Microsoft had to &#8220;reinvent&#8221; all the graphic metaphors and keyboard sequences &#8211; that would have been like reversing clutch and brake pedals on the automobile. Most of the complaints I hear today from people switching between iPhone, DROID and Blackberry are that things aren&#8217;t where we expected to find them. It could have been much worse. On your car&#8217;s Garmin or other GPS device, what if the roadmap symbols and graphics were different for each of the 50 states?</p>
<p>Happily, desktops are still always desktops, recycle bins are still the Trash, and shortcuts still jump you to that file or app buried six layers deep in file managers. When you swipe that high-resolution display on your handheld device, that&#8217;s just an improved metaphor for the old-fashioned scroll bar (also Mac). Just &#8220;doing it differently,&#8221; to avoid lawsuits, would have brought incredible levels of chaos to personal computing. That would have crippled the whole industry and retarded its remarkable transformation of home and office. We should be grateful that such a desktop polyglot never happened.</p>
<p>The whole point of such innovation, in one sense, is that in today&#8217;s world we all get to feel entirely free to take it for granted &#8211; as we should. You won&#8217;t find user group meetings in rented halls trying to teach each other how to use their iPods and iPads. I&#8217;m just lucky I&#8217;ve been around long enough to enjoy watching it all happen.</p>
<p>And it&#8217;s happening all over.</p>
<p><a href="http://www.pbs.org/wnet/nature/episodes/the-desert-lions/introduction/686/">Nature [#2505H] 10/9/2011: The Desert Lions</a> (PBS): &#8220;In the Namib Desert on Africa&#8217;s wild and forbidding Skeleton Coast, Philip Stander, a Namibian carnivore specialist, first spotted these desert lions &#8230;&#8221;</p>
<p>At the end of the show, we watch Stander trying to coax two marauding lionesses away from a Namibian village. If those desert lions get too close to the village&#8217;s herd, they will be shot. He hooks up a loudspeaker on his Land Rover so he can divert them away from the village. He&#8217;ll use the recorded sound of a male lion roar. Into his vehicle&#8217;s PA system, he plugs his <strong><em>iPod</em></strong>. The lionesses hear the recorded roaring, and leave the area.</p>
<p>Thank you, Steve Jobs.</p>
<h6><em><span style="color: #ff0000;">copyright 2011 by Alex Forbes</span></em></h6>
]]></content:encoded>
			<wfw:commentRss>http://summitlake.com/wp_1computers/?feed=rss2&#038;p=281</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
