<?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>Conecuh Software &#187; Internet Technology</title>
	<atom:link href="http://conecuh.com/category/internet-technology/feed/" rel="self" type="application/rss+xml" />
	<link>http://conecuh.com</link>
	<description>Musings on Software and Development by David H. Wilkins</description>
	<lastBuildDate>Tue, 31 Aug 2010 22:50:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Disable double click for HTML links</title>
		<link>http://conecuh.com/2010/08/disable-double-click-for-html-links/</link>
		<comments>http://conecuh.com/2010/08/disable-double-click-for-html-links/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 22:49:59 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Code Snippets]]></category>
		<category><![CDATA[Internet Technology]]></category>

		<guid isPermaLink="false">http://conecuh.com/?p=313</guid>
		<description><![CDATA[I&#8217;ve got a bunch of users that constantly double click html links. Also, I&#8217;ve had a few users probing my apps trying to expose holes. Those probes have generally included either clicking links multiple times, or automatically submitting URLs via some automated process. When I added messages to guide users that were re-submitting the same [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got a bunch of users that constantly double click html links.   Also, I&#8217;ve had a few users probing my apps trying to expose holes.  Those probes have generally included either clicking links multiple times, or automatically submitting URLs via some automated process.</p>
<p>When I added messages to guide users that were re-submitting the same URLs, the double click users showed up as potential offenders.   I needed a way to keep the double click users off of my intrusion detection report, but still be alerted to the more nefarious users.   The solution to this problem is preventing browser based double clicks</p>
<p>I think my solution is elegant.   I didn&#8217;t find this solution on the Internet, so I decided to post it here.</p>
<p>Simply make the onclick handler for the &lt;a&gt; tag reset it&#8217;s onclick handler to return false:<br />
<code><br />
&lt;a href="#" onclick="this.onclick=function () {return false;};return true;"&gt;Click Here&lt;/a&gt;<br />
</code></p>
<p>I&#8217;ve tested this in Chrome/FF/IE8/IE6 and they all seem to work just fine.  Comments and feedback welcomed.</p>
]]></content:encoded>
			<wfw:commentRss>http://conecuh.com/2010/08/disable-double-click-for-html-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Importing your PDC2008 Schedule into Google Calendar</title>
		<link>http://conecuh.com/2008/10/importing-your-pdc2008-schedule-into-google-calendar/</link>
		<comments>http://conecuh.com/2008/10/importing-your-pdc2008-schedule-into-google-calendar/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 06:26:34 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Internet Technology]]></category>
		<category><![CDATA[Calendar]]></category>
		<category><![CDATA[G1]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[ics]]></category>
		<category><![CDATA[PDC]]></category>
		<category><![CDATA[PDC08]]></category>
		<category><![CDATA[PDC2008]]></category>
		<category><![CDATA[T-Mobile]]></category>

		<guid isPermaLink="false">http://conecuh.com/?p=72</guid>
		<description><![CDATA[I just got a G1 from T-Mobile, and I&#8217;m also attending Microsofts PDC, so I wanted to import my schedule from the PDC into my Google Calendar. It took a few tries, but I finally figured out how to do it. Get the .ics file Find the link on the screen Right click &#8211; copy [...]]]></description>
			<content:encoded><![CDATA[<p>I just got a G1 from T-Mobile, and I&#8217;m also attending Microsofts <a href="http://microsoftpdc.com">PDC</a>, so I wanted to import my schedule from the PDC into my Google Calendar.  It took a few tries, but I finally figured out how to do it.</p>
<dl>
<dt>Get the .ics file</dt>
<dd>
<ol>
<li>Find the link on the screen</li>
<div id="attachment_74" class="wp-caption alignnone" style="width: 310px"><a href="http://conecuh.com/wp-content/uploads/2008/10/geticsfile.png"><img src="http://conecuh.com/wp-content/uploads/2008/10/geticsfile-300x107.png" alt="Find the link to the .ics information on the page" title="Find the ICS Link" width="300" height="107" class="size-medium wp-image-74" /></a><p class="wp-caption-text">Find the link to the .ics information on the page</p></div>
<li>Right click &#8211; copy link</li>
<li>Use wget to save it</li>
<p>You will have to change the URL type from <strong>webcal</strong> to <strong>https</strong><br />
<code>wget&nbsp;https://sessions.microsoftpdc.com/feeds/ics.ashx/ai..snip..1a</code></p>
<li>I renamed the file to sessions.ics for easy identification</li>
</ol>
</dd>
<dt>Open the file and remove the ; from the lines like:</dt>
<dd>
<code>END:VEVENT;</code><br />
changed to:<br />
<code>END:VEVENT</code><br />
I&#8217;m not sure who (Google or Microsoft) is at fault with the semicolon here, but Google won&#8217;t import the file unless the semicolon is gone.
</dd>
<dt>Create a new Calendar</dt>
<dd>
<div id="attachment_82" class="wp-caption alignnone" style="width: 310px"><a href="http://conecuh.com/wp-content/uploads/2008/10/createcalendar.png"><img src="http://conecuh.com/wp-content/uploads/2008/10/createcalendar-300x120.png" alt="Go to your Google Calendar and create a new calendar" title="Create a New Calendar" width="300" height="120" class="size-medium wp-image-82" /></a><p class="wp-caption-text">Go to your Google Calendar and create a new calendar</p></div>
</dd>
<dt>
Import the calendar (Add -> Import Calendar)
</dt>
<dd>
<div id="attachment_84" class="wp-caption alignnone" style="width: 310px"><a href="http://conecuh.com/wp-content/uploads/2008/10/importcalendar.png"><img src="http://conecuh.com/wp-content/uploads/2008/10/importcalendar-300x105.png" alt="Import your ICS file into the new calendar" title="Import your .ics file" width="300" height="105" class="size-medium wp-image-84" /></a><p class="wp-caption-text">Import your ICS file into the new calendar</p></div><br />
Be sure and select the correct calendar to place the entries in.
</dd>
</dl>
<p>Enjoy!  I realize these instructions are pretty terse, but the critical piece is to remove the semicolons from the .ics file.  Leave a comment if you&#8217;re having trouble.</p>
<p>When you&#8217;re successful, your Google Calendar will sync with your G1, and you&#8217;ll have all of your PDC sessions on your G1, for reference during the conference.  You can look really cool checking your G1, rather than fumbling for a scrap of paper.</p>
]]></content:encoded>
			<wfw:commentRss>http://conecuh.com/2008/10/importing-your-pdc2008-schedule-into-google-calendar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Local Events &#8211; CE credits for the Web Professional</title>
		<link>http://conecuh.com/2008/09/local-events-ce-credits-for-the-web-professional/</link>
		<comments>http://conecuh.com/2008/09/local-events-ce-credits-for-the-web-professional/#comments</comments>
		<pubDate>Sat, 27 Sep 2008 21:50:59 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Conference]]></category>
		<category><![CDATA[Internet Technology]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[continuing education]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://conecuh.com/?p=39</guid>
		<description><![CDATA[As I&#8217;m sitting in the WordCamp Birmingham meeting today, I&#8217;m looking around the room wondering &#8220;what does everyone have in common *except* that they&#8217;re interested in WordPress?&#8221;. The mix of people here varies from WordPress gurus to people that don&#8217;t know what WordPress is exactly. We&#8217;ve got local developers graphic designers copywriters television news professionals [...]]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;m sitting in the <a href="http://birmingham.wordcamp.org/">WordCamp Birmingham</a> meeting today, I&#8217;m looking around the room wondering &#8220;what does everyone have in common *except* that they&#8217;re interested in <a href="http://wordpress.org">WordPress</a>?&#8221;.</p>
<p>The mix of people here varies from WordPress gurus to people that don&#8217;t know what <a href="http://wordpress.org">WordPress</a> is exactly.  We&#8217;ve got </p>
<ul>
<li>local developers</li>
<li>graphic designers</li>
<li>copywriters</li>
<li>television news professionals</li>
<li>and local bloggers</li>
</ul>
<p>The parallel common theme is that the attendees are all interested in continuing their education.  In this case, it&#8217;s new media. Last week, I attended an event in  ATL (<a href="http://atlantalinuxfest.com/">Atlanta Linux Fest</a>), where a similar parallel common theme existed.  </p>
<p>Traditional continuing education can&#8217;t keep up with &#8220;Internet speed&#8221;.  As soon as a class can be developed, the concepts have changed.  In a local event, the  content changes right up to the beginning of the conference.  The questions raised<br />
can even add more content.</p>
<p>Attending these events can help to increase the connection between members of  the local community.  Non-local guests can help to cross-pollinate ideas.  Mostly, the ideas and and experience from attending and presenting at these events help to establish the attendees as willing to do whatever it takes to stay current.</p>
]]></content:encoded>
			<wfw:commentRss>http://conecuh.com/2008/09/local-events-ce-credits-for-the-web-professional/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What looks good to you?</title>
		<link>http://conecuh.com/2008/09/what-looks-good-to-you/</link>
		<comments>http://conecuh.com/2008/09/what-looks-good-to-you/#comments</comments>
		<pubDate>Tue, 16 Sep 2008 17:42:23 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Internet Technology]]></category>

		<guid isPermaLink="false">http://conecuh.com/?p=35</guid>
		<description><![CDATA[In a recent post ( There&#8217;s no shame in looking good) DHH says &#8220;it’s at the core about people feeling good about that which is pretty. That doesn’t make us shallow, that just makes us human.&#8221;. I think, though, we&#8217;ve got our own perception of pretty. My idea of pretty is the Thinkpad that he [...]]]></description>
			<content:encoded><![CDATA[<p>In a recent post (	<a href="http://www.37signals.com/svn/posts/1247-theres-no-shame-in-looking-good">There&#8217;s no shame in looking good</a>) DHH says </p>
<blockquote><p>
&#8220;it’s at the core about people feeling good about that which is pretty. That doesn’t make us shallow, that just makes us human.&#8221;.
</p></blockquote>
<p>I think, though, we&#8217;ve got our own perception of <strong>pretty</strong>.  My idea of pretty <strong>is</strong> the Thinkpad that he mentioned in the article (up next to the MacBook Air).  I agree that the MacBook Air has some <em>aesthetics</em>, but the <em>beauty</em> that I see in the Thinkpad is durability and support for my favorite OS (Linux).  There&#8217;s a line there &#8211; I wouldn&#8217;t accept a brick for a laptop, but <strong>my</strong> perfect design is significantly different than DHH&#8217;s.</p>
<p>Embrace what looks good to you.  Is it the aesthetics of a clean, svelte design?  Or, like me, do you appreciate the durable and extensible?  Where do you draw the line?  What&#8217;s your perfect design?</p>
]]></content:encoded>
			<wfw:commentRss>http://conecuh.com/2008/09/what-looks-good-to-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drive By Resume Harvesting, Compliments of Google</title>
		<link>http://conecuh.com/2007/09/drive-by-resume-harvesting-compliments-of-google/</link>
		<comments>http://conecuh.com/2007/09/drive-by-resume-harvesting-compliments-of-google/#comments</comments>
		<pubDate>Tue, 18 Sep 2007 16:29:55 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Internet Technology]]></category>

		<guid isPermaLink="false">http://conecuh.com/2007/09/18/drive-by-resume-harvesting-compliments-of-google/</guid>
		<description><![CDATA[My resume is on the web. Most of the time, however, I&#8217;ve asked the &#8216;bots to leave it out of the index. Recently, though, I&#8217;ve allowed the &#8216;bots to index my resume, and it&#8217;s generated a bit of harvesting action. Here&#8217;s the snippet from the weblog Actual Link Here: 210.245.110.78 &#8211; - [17/Sep/2007:02:56:34 -0400] &#8220;GET [...]]]></description>
			<content:encoded><![CDATA[<p>My resume is on the web.  Most of the time, however, I&#8217;ve asked the &#8216;bots to leave it out of the index.  Recently, though, I&#8217;ve allowed the &#8216;bots to index my resume, and it&#8217;s generated a bit of harvesting action.  Here&#8217;s the snippet from the weblog <a href="http://www.google.com.vn/search?q=inurl:cv+%7C+inurl:resume+%7C+inurl:vitae+%7C+intitle:cv+%7C+intitle:resume+%7C+intitle:vitae)+(%22Java+developer%22+%7C+%22C%2B%2B+developer%22)+(C%2B%2B+%7C+Java+%7C+J2EE)+(Linux+%7C+Unix)+-usa+-india+-C%23+-.Net+-PhD+-Ph.D+-CA+-NY&#038;hl=vi&#038;start=80&#038;sa=N">Actual Link Here</a>:</p>
<blockquote><p>
210.245.110.78 &#8211; - [17/Sep/2007:02:56:34 -0400]<br />
&#8220;GET /MyResume.html HTTP/1.1&#8243; 200 4592 &#8220;http://www.google.com.vn/search?q=inurl:cv+%7C+<br />
inurl:resume+%7C+inurl:vitae+%7C+intitle:cv+%7C+<br />
intitle:resume+%7C+intitle:vitae)<br />
+(%22Java+developer%22+%7C+%22C%2B%2B+developer%22)+<br />
(C%2B%2B+%7C+Java+%7C+J2EE)+<br />
(Linux+%7C+Unix)+-usa+-india+-C%23+-.Net+-PhD+-Ph.D+-CA+<br />
-NY&#038;hl=vi&#038;start=80&#038;sa=N&#8221;<br />
&#8220;Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; InfoPath.1)&#8221;
</p></blockquote>
<p>Which translated means:</p>
<dl>
<dt><code>210.245.110.78</code></dt>
<dd>This is the IP Address of the requestor.  <a href="http://www.dnsstuff.com/">DNSStuff.com</a> reports that this IP address is from Ho Chi Minh City, Ho Chi Minh (Vietnam).  This is consistent with the Google site used for the search (www.google.com.vn)</dd>
<dt><code>[17/Sep/2007:02:56:34 -0400]</code></dt>
<dd>The date of the search</dd>
<dt><code>200</code></dt>
<dd>The webserver response.  200 is success</dd>
<dt><code>4592</code></dt>
<dd>This is the size of the document &#8211; my resume is only 4592 bytes.  There&#8217;s an associated stylesheet, and that&#8217;s fetched right after the resume.</dd>
<dt>referrer field</dt>
<dd>
The remaining information is the referrer field.  This is how you tell what document the user was on when they clicked a link.</p>
<dl>
<dt><code>http://www.google.com.vn</code></dt>
<dd>This is the Google site in Vietnam.  Looks like our visitor was from Vietnam.</dd>
<dt><code>/search</code></dt>
<dd>This is the search url &#8211; nothing special here</dd>
<dt><code>inurl:cv</code></dt>
<dd>Specifies a search where the URL fetched has &#8220;cv&#8221; in it.</dd>
<dt><code>+%7C+</code></dt>
<dd>the &#8220;+&#8221; symbol represents a space in URL encoding and the %7C is a &#8220;|&#8221; (bar) symbol.  This construct means the previous search term is &#8220;or&#8217;d&#8221; with the next search term.</dd>
<dt><code>inurl:resume | </code></dt>
<dd>Specifies a search where the URL fetched has &#8220;resume&#8221; in it.</dd>
<dt><code>inurl:vitae | </code></dt>
<dd>Specifies a search where the URL fetched has &#8220;resume&#8221; in it.</dd>
<dt><code>intitle:cv | </code></dt>
<dd>Specifies a search where the title of the document fetched has &#8220;cv&#8221; in it.</dd>
<dt><code>intitle:resume | </code></dt>
<dd>Specifies a search where the title of the document fetched has &#8220;resume&#8221; in it.</dd>
<dt><code>intitle:vitae</code></dt>
<dd>Specifies a search where the title of the document fetched has &#8220;vitae&#8221; in it.</dd>
<dt><code>("Java developer" | "C++ developer")</code></dt>
<dd>Document text contains &#8220;Java Developer&#8221; or &#8220;C++ developer&#8221;</dd>
<dt><code>(C++ | Java | J2EE)</code></dt>
<dd>Document text contains &#8220;C++&#8221; or &#8220;Java&#8221; or &#8220;J2EE&#8221;</dd>
<dt><code>(Linux | Unix)</code></dt>
<dd>Document text contains &#8220;Linux&#8221; or &#8220;Unix&#8221;</dd>
<dt><code>-usa -india -C# -.Net -PhD -Ph.D -CA -NY</code></dt>
<dd>Documents <strong>without</strong> the words usa, india, C#, .NET, PHD, Ph.D, CA and NY</dd>
</dl>
</dd>
</dl>
<p>So, as you can see, the headhunters (at least the Vietnamese ones), are <strong>very</strong> proficient in Google searches.  If you want to type in the text to the Google search box, here&#8217;s the text you&#8217;ll need:</p>
<blockquote><p>
inurl:cv | inurl:resume | inurl:vitae | intitle:cv | intitle:resume | intitle:vitae) (&#8220;Java developer&#8221; | &#8220;C++ developer&#8221;) (C++ | Java | J2EE) (Linux | Unix) -usa -india -C# -.Net -PhD -Ph.D -CA -NY
</p></blockquote>
<p>Enjoy, and now you&#8217;ll recognize the resume harvesters when they drive by your site.</p>
]]></content:encoded>
			<wfw:commentRss>http://conecuh.com/2007/09/drive-by-resume-harvesting-compliments-of-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Unix resources for Administrators and Developers</title>
		<link>http://conecuh.com/2007/09/free-unix-resources-for-administrators-and-developers/</link>
		<comments>http://conecuh.com/2007/09/free-unix-resources-for-administrators-and-developers/#comments</comments>
		<pubDate>Wed, 12 Sep 2007 03:31:39 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Internet Technology]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://conecuh.com/2007/09/11/free-unix-resources-for-administrators-and-developers/</guid>
		<description><![CDATA[I&#8217;m a member of a local Linux users group. Most of the members have Linux installed at home, and are happily learning how to use it, develop for it, or deploy it in a corporate environment. The reality of today&#8217;s computing environment is that there are still many Unix (AIX/HPUX/Solaris, etc) machines installed or scheduled [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.unix.org/license-plate.html"><img src="http://conecuh.com/unix-plate2.jpg" style="float: left; margin: 15px; border: 0px" alt="Unix License Plate" title="Unix License Plate - click for the story"/></a></p>
<p>
I&#8217;m a member of a local Linux users group.  Most of the members have Linux installed at home, and are happily learning how to use it, develop for it, or deploy it in a corporate environment.  The reality of today&#8217;s computing environment is that there are still many  Unix (AIX/HPUX/Solaris, etc) machines installed or scheduled to be installed, that require administration.  Unix big iron pays the bills in may enterprise shops, and while Linux may get you in the door, Unix will keep the paychecks coming.
</p>
<p>
The barrier to entry for large Unix environments has the potential to be very high.  Contemporary hardware is expensive, and the  operating system and software are equally expensive.  New System Administrators need access to the Unix OS to at least gain some knowledge about it&#8217;s quirks and capabilities.  HPUX admins need to know SAM, AIX admins need to know SMIT.  Everyone needs to know how to partition logical and physical volumes on their Unix systems.
</p>
<p>
Luckily, most of the large Unix vendors have test drive programs that allow access to many of their products over the internet, or  even in the comfort of your own home.  These are usually just a registration form away, and can provide access to OS, compilers, configuration, web servers and a host of other software.  Below find links and capabilities of the programs offered by the large Unix vendors.
</p>
<p><span id="more-25"></span></p>
<h2>IBM</h2>
<dl>
<dt>WebSite</dt>
<dd>
<a href="http://www-304.ibm.com/jct09002c/isv/marketing/industrynetworks/benefits/virtual_loaner.html">Virtual Loaner Program</a>
</dd>
<dt>Environments</dt>
<dd><a href="http://www-304.ibm.com/jct09002c/partnerworld/wps/pub/systems/vlp/detail#details">Details</a></dd>
<dd>System p Power6 (AIX 5.3, AIX 6 open Beta, RHEL 5, Novell SLES10 )</dd>
<dd>System p Power5 (AIX 5.3, AIX 6 Open Beta, RHEL 3, RHEL 4, RHEL 5, Novell SLES 9, Novell SLES10 )</dd>
<dd>System p Power4 (AIX 5.1, AIX 5.2, RHAS 3, Novell SLES 8 )</dd>
<dd>System i Power5 (i5/OS V5R3, i5/OS V5R4, AIX 5.3, RHEL 3, RHEL 4, Novell SLES 9, Novell SLES10 )</dd>
<dd>System x (x86) (RHEL 4, Novell SLES 9, Novell SLES10 &#8211; 64 bit versions available also )</dd>
</dl>
<p>
IBM has a wide array of offerings in the virtual loaner program.  Each machine may be reserved up to 14 days, and they&#8217;ll save your partition and reload it so you can have access to a machine for a much longer amount of time.
</p>
<p>
All of the systems come with root access, and ample amounts of CPU, RAM, and disk (20gb).  This is the easiest program to use by far.
</p>
<h2>Hewlett Packard (Compaq too)</h2>
<dl>
<dt>Website</dt>
<dd><a href="http://www.testdrive.hp.com/">Test Drive</a></dd>
<dt>Machines</dt>
<dd>ProLiant (i386)</dd>
<dd>Integrity (Itanium)</dd>
<dd>PA-RISC</dd>
<dt>Operating Systems</dt>
<dd>FreeBSD &#8211; (Integrity and ProLiant systems)</dd>
<dd>HP-UX</dd>
<dd>Linux (Debian, Mandriva, Red Hat, SuSE)</dd>
<dd>OpenVMS</dd>
<dd>Tru64 Unix</dd>
<dd>Windows</dd>
<dt>Software</dt>
<dd>C/C++ Compilers (Intel, gcc and others)</dd>
<dd>Fortran Compilers</dd>
<dd>Oracle</dd>
</dl>
<p>HP is one of the few vendors that provides access to both Windows and Unix servers.  It takes a while to get configured,<br />
but the machines are well worth it.   PA-Risc boxes can be especially hard to come by.  The author once shipped code to a client that was compile on an HPUX test drive box.  Our PA-Risc box was much too old, and we couldn&#8217;t wait for the vendor to ship us our new box.  Test Drive can come in <strong>very</strong>handy.</p>
<h2>Sun Microsystems</h2>
<p>Sun doesn&#8217;t provide an Internet connected trial program.  Sun would rather ship the equipment to you so that you can have your way with it.  I&#8217;m very impressed with the system they sent (New, fully loaded, etc).  Sun doesn&#8217;t provide all of the compilers and databases that the other vendors supply, though.</p>
<dl>
<dt>WebSite</dt>
<dd>
<a href="http://www.sun.com/tryandbuy/">Try and Buy</a></p>
<dt>Hardware</dt>
<dd>Sun Fire T2000 Server</dd>
<dd>Sun Fire T1000 Server</dd>
<dd>Sun Fire X4600 M2 Server</dd>
<dd>Sun Fire X4500 Server</dd>
<dd>Sun Fire X4200 M2 Server</dd>
<dd>Sun Fire X4100 M2 Server</dd>
<dd>Sun Fire X2200 M2 Server</dd>
<dd>Sun Fire X2100 M2 Server</dd>
<dd>Netra T2000 Server</dd>
<dd>Netra X4200 M2 Server</dd>
<dd>Sun Blade 6000 Modular System</dd>
<dd>Sun Ultra 40 M2 Workstation</dd>
<dd>Sun Ultra 20 M2 Workstation</dd>
<dd>Sun Ultra 45 Workstation</dd>
<dd>Sun Ultra 25 Workstation</dd>
<dd>Sun Storage Tek 6140 Array</dd>
<dd>Sun StorageTek 2500 Array</dd>
<dd>Sun Storage Tek 5320 NAS Appliance</dd>
<dd>Sun Storage Tek 5220 NAS Appliance</dd>
<dd>Sun StorageTek SL24 Tape Autoloader</dd>
<dd>Sun StorageTek SL48 Tape Library</dd>
<dd>Sun Dual 10GbE XFP PCI Express Card</dd>
<dd>Sun Dual 10GbE XFP PCIe ExpressModule</dd>
<dt>Software</dt>
<dd>Base OS, or whatever you want to load</dd>
</dl>
<p>
It takes a bit of time for them to get your order through the system, but the 60 day trial period doesn&#8217;t start until you take delivery of the system.  You can load any OS you want onto the boxes, or write one yourself.  Just send the box back after 60 days (on their nickel) and you don&#8217;t owe a thing.  You&#8217;ll need to give them a credit card number, but the representative said that they won&#8217;t automatically draft your card after 60 days.  They&#8217;ll send you a bill.  That&#8217;s nice, because I always forget when these things are due back
</p>
<h2>Summary</h2>
<p>So, there&#8217;s a wide variety of hardware out there, and it&#8217;s free for the using.  Any budding System Administrator should be able to find a system in this list that will help him fill out those last few holes in his resume.  If I&#8217;ve missed something, or a vendors program, leave a comment.  I&#8217;m always looking for a new system to learn.</p>
]]></content:encoded>
			<wfw:commentRss>http://conecuh.com/2007/09/free-unix-resources-for-administrators-and-developers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Your Computer. Leave Home Without It &#8211; ajaxWindows</title>
		<link>http://conecuh.com/2007/09/your-computer-leave-home-without-it-ajaxwindows/</link>
		<comments>http://conecuh.com/2007/09/your-computer-leave-home-without-it-ajaxwindows/#comments</comments>
		<pubDate>Mon, 10 Sep 2007 21:03:52 +0000</pubDate>
		<dc:creator>David</dc:creator>
				<category><![CDATA[Internet Technology]]></category>

		<guid isPermaLink="false">http://conecuh.com/2007/09/10/your-computer-leave-home-without-it-ajaxwindows/</guid>
		<description><![CDATA[From the article: &#8220;Today I&#8217;m launching ajaxWindows &#8211; a complete virtual PC you can experience using only a browser from any web connected computer. If you would like to see it in action, check out the online demo or the video. Remember that everything you see is happening within a web browser.&#8221; Will ajaxWindows.com herald [...]]]></description>
			<content:encoded><![CDATA[<p>From the article: &#8220;Today I&#8217;m launching ajaxWindows &#8211; a complete virtual PC you can experience using only a browser from any web connected computer. If you would like to see it in action, check out the online demo or the video. Remember that everything you see is happening within a web browser.&#8221;</p>
<p>Will ajaxWindows.com herald a new era?  Internet access is <strong>mostly</strong> ubiquitous now, and has enabled such technologies as web-based E-Mail, project management, social networking and IM.   When using VMWare sessions, I *really* like the fact that session state is saved perfectly when I stop the virtual machine, and ajaxWindows promises similar functionality.</p>
<p>The logistics of the service are more easily implemented, since they&#8217;re leveraging existing online services, such as gmail and MP3tunes, which <strong>should</strong> reduce the space requirements for the ajaxWindows.com site.  </p>
<p>The adoption of this as <strong>the</strong> computer, rather than simply yet another service, will depend on two things:</p>
<h2>Security</h2>
<p>Will there be a significant breach of security, compromising credentials for the services configured in ajaxWindows?   I personally am uncomfortable storing my credentials in a centralized place without significant safeguards in place.  While my MP3tunes information is not confidential, my G-Mail account has lots of information that I want to keep private.  I&#8217;m sure the script-kiddies and botnets are amassing forces right now to attempt the compromise of confidential user information.</p>
<h2>Developer API</h2>
<p>The Facebook phenomenon has proved that a great developer API will speed platform adoption.  I&#8217;d be delighted to be able to provide an application platform to users using the ajaxWindows OS.  If (see above) security is acceptable, users could be encouraged to use ajaxWindows to access personal banking, retirement information, healthcare information etc, without installation of fat applications on multiple platforms.</p>
<p>As soon as the site comes back up, I&#8217;ll log in and give it a test drive.   I&#8217;ll be particularly interested in the security and API, since I think that&#8217;s what will drive large scale adoption.  </p>
<p>Update: If you go to ajaxWindows.com, you see:</p>
<blockquote><p>
<span style="font-weight: bold;"><big>Thank you for<br />
visiting ajaxwindows.com</big></p>
<p></span>We are currently experiencing massive amounts of user registrations<br />
and traffic.<br />
</p>
<p>Please check back with us in an hour.</p>
<p>Thanks for your interest, The Ajax13 Team
</p></blockquote>
<p>Looks like there&#8217;s a ton of interest in an &#8220;Internet OS&#8221;.    I played around with the site a bit before it went down, and noticed a few things:</p>
<ul>
<li>Many of the applications open in your own browser</li>
<li>Java is used for the synchronization process &#8211; make sure your JVM is up to date</li>
<li>You&#8217;ll be <strong>strongly</strong> encouraged to give them your gmail credentials (yuck!)</li>
<li>There is a full set of office application &#8211; interestingly there&#8217;s a PowerPoint-style application</li>
<li>There are lots of applications that I just didn&#8217;t have a chance to play with &#8211; maybe in a day or so when the traffic dies down</li>
</ul>
<p>Good luck &#8211; I hope you get in and get an account.</p>
<p><br/><br/><a href="http://www.michaelrobertson.com/archive.php?minute_id=243">read more</a> | <a href="http://digg.com/tech_news/Your_Computer_Leave_Home_Without_It_ajaxWindows">digg story</a></p>
]]></content:encoded>
			<wfw:commentRss>http://conecuh.com/2007/09/your-computer-leave-home-without-it-ajaxwindows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

