<?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>318 Tech Journal</title>
	<atom:link href="http://techjournal.318.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://techjournal.318.com</link>
	<description></description>
	<lastBuildDate>Thu, 08 Jul 2010 22:04:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>MySQL Backup Options</title>
		<link>http://techjournal.318.com/scripts/mysql-backup-options/</link>
		<comments>http://techjournal.318.com/scripts/mysql-backup-options/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 22:04:52 +0000</pubDate>
		<dc:creator>DK</dc:creator>
				<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=587</guid>
		<description><![CDATA[MySQL bills itself as the world&#8217;s most popular open source database. It turns up all over, including most installations of WordPress. Packages for multiple platforms make installation easy and online resources are plentiful. Web-based admin tools like phpMyAdmin are very popular and there are many stand-alone options for managing MySQL databases as well. When it [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mysql.com"><img src="http://techjournal.318.com/wp-content/uploads/2010/07/MySQLlogo.gif" alt="" title="MySQLlogo" width="120" height="60" class="alignright size-full wp-image-588" /></a><a href="http://www.mysql.com/">MySQL</a> bills itself as the world&#8217;s most popular open source database. It turns up all over, including most installations of <a href="http://wordpress.org">WordPress</a>. <a href="http://www.mysql.com/downloads/mysql/">Packages</a> for multiple platforms make installation easy and online resources are plentiful. Web-based admin tools like <a href="http://www.phpmyadmin.net/">phpMyAdmin</a> are very popular and there are many stand-alone options for managing MySQL databases as well.</p>
<p>When it comes to back-up, though, are you prepared? Backup plug-ins for WordPress databases are fairly common, but what other techniques can be used? Scripting to the rescue!</p>
<p>On Unix-type systems, it&#8217;s easy to find one of the many example scripts online, customize them to your needs, then add the script to a nightly cron job (or launchd on Mac OS X systems). Most of these scripts use the mysqldump command to create a text file that contains the structure and data from your database. More advanced scripts can loop through multiple databases on the same server, compress the output and email you copies.</p>
<p>Here is an example we found online a long time ago and modified (thanks to the unknown author):</p>
<p><code><br />
#!/bin/sh</p>
<p># List all of the MySQL databases that you want to backup in here,<br />
# each seperated by a space<br />
databases="database1 database2 database3"</p>
<p># Directory where you want the backup files to be placed<br />
backupdir=/mydatabasebackups</p>
<p># MySQL dump command, use the full path name here<br />
mysqldumpcmd=/usr/local/mysql/bin/mysqldump</p>
<p># MySQL Username and password<br />
userpassword=" --user=myusername --password=mypassword"</p>
<p># MySQL dump options<br />
dumpoptions=" --quick --add-drop-table --add-locks --extended-insert --lock-tables"</p>
<p># Unix Commands<br />
gzip=/usr/bin/gzip<br />
uuencode=/usr/bin/uuencode</p>
<p># Create our backup directory if not already there<br />
mkdir -p ${backupdir}<br />
if [ ! -d ${backupdir} ]<br />
then<br />
   echo "Not a directory: ${backupdir}"<br />
   exit 1<br />
fi</p>
<p># Dump all of our databases<br />
echo "Dumping MySQL Databases"<br />
for database in $databases<br />
do<br />
   $mysqldumpcmd $userpassword $dumpoptions $database > ${backupdir}/${database}.sql<br />
done</p>
<p># Compress all of our backup files<br />
echo "Compressing Dump Files"<br />
for database in $databases<br />
do<br />
   rm -f ${backupdir}/${database}.sql.gz<br />
   $gzip ${backupdir}/${database}.sql<br />
done</p>
<p># And we're done<br />
ls -l ${backupdir}<br />
echo "Dump Complete!"<br />
exit<br />
</code></p>
<p>Once you verify that your backup script is giving you valid backup files, these should be added to your other backup routines, such as CrashPlan, Mozy, Retrospect, Time Machine, Backup Exec, PresSTORE, etc. It never hurts to have too many copies of your critical data files.</p>
<p>To make sure your organization is prepared, contact your 318 account manager today, or email <a href="mailto:sales@318.com">sales@318.com</a> for assistance.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/scripts/mysql-backup-options/&amp;title=MySQL+Backup+Options" title="Add 'MySQL Backup Options' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'MySQL Backup Options' to Del.icio.us" alt="Add 'MySQL Backup Options' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/scripts/mysql-backup-options/&amp;title=MySQL+Backup+Options" title="Add 'MySQL Backup Options' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'MySQL Backup Options' to digg" alt="Add 'MySQL Backup Options' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=MySQL+Backup+Options&amp;url=http://techjournal.318.com/scripts/mysql-backup-options/&amp;version=0.7" title="Add 'MySQL Backup Options' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'MySQL Backup Options' to Feed Me Links" alt="Add 'MySQL Backup Options' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/scripts/mysql-backup-options/" title="Add 'MySQL Backup Options' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'MySQL Backup Options' to Technorati" alt="Add 'MySQL Backup Options' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/scripts/mysql-backup-options/&amp;t=MySQL+Backup+Options" title="Add 'MySQL Backup Options' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'MySQL Backup Options' to Yahoo My Web" alt="Add 'MySQL Backup Options' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/scripts/mysql-backup-options/&amp;h=MySQL+Backup+Options" title="Add 'MySQL Backup Options' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'MySQL Backup Options' to Newsvine" alt="Add 'MySQL Backup Options' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/scripts/mysql-backup-options/&amp;title=MySQL+Backup+Options" title="Add 'MySQL Backup Options' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'MySQL Backup Options' to Socializer" alt="Add 'MySQL Backup Options' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/scripts/mysql-backup-options/&amp;title=MySQL+Backup+Options" title="Add 'MySQL Backup Options' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'MySQL Backup Options' to Stumble Upon" alt="Add 'MySQL Backup Options' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/scripts/mysql-backup-options/&amp;title=MySQL+Backup+Options" title="Add 'MySQL Backup Options' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'MySQL Backup Options' to Google Bookmarks" alt="Add 'MySQL Backup Options' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/scripts/mysql-backup-options/&amp;title=MySQL+Backup+Options" title="Add 'MySQL Backup Options' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'MySQL Backup Options' to OKnotizie" alt="Add 'MySQL Backup Options' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/scripts/mysql-backup-options/&amp;T=MySQL+Backup+Options" title="Add 'MySQL Backup Options' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'MySQL Backup Options' to Propeller" alt="Add 'MySQL Backup Options' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/scripts/mysql-backup-options/" title="Add 'MySQL Backup Options' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'MySQL Backup Options' to Bookmark.it" alt="Add 'MySQL Backup Options' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=MySQL+Backup+Options&amp;url=http://techjournal.318.com/scripts/mysql-backup-options/" title="Add 'MySQL Backup Options' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'MySQL Backup Options' to Ask" alt="Add 'MySQL Backup Options' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/scripts/mysql-backup-options/&amp;title=MySQL+Backup+Options" title="Add 'MySQL Backup Options' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'MySQL Backup Options' to Live-MSN" alt="Add 'MySQL Backup Options' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=MySQL+Backup+Options&amp;url=http://techjournal.318.com/scripts/mysql-backup-options/" title="Add 'MySQL Backup Options' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'MySQL Backup Options' to SlashDot" alt="Add 'MySQL Backup Options' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/scripts/mysql-backup-options/&amp;t=MySQL+Backup+Options" title="Add 'MySQL Backup Options' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'MySQL Backup Options' to FaceBook" alt="Add 'MySQL Backup Options' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/scripts/mysql-backup-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ARCHIWARE PresSTORE 4 Released</title>
		<link>http://techjournal.318.com/general-technology/archiware-presstore-4-released/</link>
		<comments>http://techjournal.318.com/general-technology/archiware-presstore-4-released/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 18:19:23 +0000</pubDate>
		<dc:creator>DK</dc:creator>
				<category><![CDATA[General Technology]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=569</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><img src="http://techjournal.318.com/wp-content/uploads/2010/06/PresSTORE4.jpg" alt="" title="PresSTORE4" width="400" height="281" size-full wp-image-576" /></p>
<p>Last week, German software company <a href="http://www.archiware.com/">ARCHIWARE</a> released version 4.0 of its enterprise backup solution, <a href="http://www.archiware.com/index.php?hp=223">PresSTORE</a>. This version is for new installations only &#8211; version 4.1, planned for release in October, will support upgrades from existing 3.x deployments.</p>
<p>The new features of PresSTORE 4 can be found on the <a href="http://www.archiware.com/index.php?hp=596">company&#8217;s website</a>, but here are some highlights:</p>
<ul>
<li>New interface to simplify management</li>
<li>iPhone app for remote monitoring of jobs</li>
<li>New desktop notification system to alert users of actions</li>
<li>Progressive backup &#8211; &#8220;backup without full backup&#8221;</li>
</ul>
<p>Aaron Freimark also wrote a <a href="http://www.xsanity.com/article.php/20100629105015682">post</a> about the new version on the Xsanity site that talks more about the Xsan-specific features.</p>
<p>As before, PresSTORE is supported on Mac OS X (10.4 and higher), Windows (2003, 2008, XP, Vista and 7), Linux and Solaris. Backup2Go Server is only supported on OS X and Solaris.</p>
<p>PresSTORE support is great &#8211; during testing of the new version, the iPhone monitoring app was crashing. Within a day, a new version was available in the App Store that addressed the exact issue. Bravo!</p>
<p>To learn more about PresSTORE (including pricing options), please contact your 318 account manager today, or email <a href="mailto:sales@318.com">sales@318.com</a> for more information.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/general-technology/archiware-presstore-4-released/&amp;title=ARCHIWARE+PresSTORE+4+Released" title="Add 'ARCHIWARE PresSTORE 4 Released' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'ARCHIWARE PresSTORE 4 Released' to Del.icio.us" alt="Add 'ARCHIWARE PresSTORE 4 Released' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/general-technology/archiware-presstore-4-released/&amp;title=ARCHIWARE+PresSTORE+4+Released" title="Add 'ARCHIWARE PresSTORE 4 Released' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'ARCHIWARE PresSTORE 4 Released' to digg" alt="Add 'ARCHIWARE PresSTORE 4 Released' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=ARCHIWARE+PresSTORE+4+Released&amp;url=http://techjournal.318.com/general-technology/archiware-presstore-4-released/&amp;version=0.7" title="Add 'ARCHIWARE PresSTORE 4 Released' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'ARCHIWARE PresSTORE 4 Released' to Feed Me Links" alt="Add 'ARCHIWARE PresSTORE 4 Released' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/general-technology/archiware-presstore-4-released/" title="Add 'ARCHIWARE PresSTORE 4 Released' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'ARCHIWARE PresSTORE 4 Released' to Technorati" alt="Add 'ARCHIWARE PresSTORE 4 Released' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/general-technology/archiware-presstore-4-released/&amp;t=ARCHIWARE+PresSTORE+4+Released" title="Add 'ARCHIWARE PresSTORE 4 Released' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'ARCHIWARE PresSTORE 4 Released' to Yahoo My Web" alt="Add 'ARCHIWARE PresSTORE 4 Released' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/general-technology/archiware-presstore-4-released/&amp;h=ARCHIWARE+PresSTORE+4+Released" title="Add 'ARCHIWARE PresSTORE 4 Released' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'ARCHIWARE PresSTORE 4 Released' to Newsvine" alt="Add 'ARCHIWARE PresSTORE 4 Released' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/general-technology/archiware-presstore-4-released/&amp;title=ARCHIWARE+PresSTORE+4+Released" title="Add 'ARCHIWARE PresSTORE 4 Released' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'ARCHIWARE PresSTORE 4 Released' to Socializer" alt="Add 'ARCHIWARE PresSTORE 4 Released' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/general-technology/archiware-presstore-4-released/&amp;title=ARCHIWARE+PresSTORE+4+Released" title="Add 'ARCHIWARE PresSTORE 4 Released' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'ARCHIWARE PresSTORE 4 Released' to Stumble Upon" alt="Add 'ARCHIWARE PresSTORE 4 Released' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/general-technology/archiware-presstore-4-released/&amp;title=ARCHIWARE+PresSTORE+4+Released" title="Add 'ARCHIWARE PresSTORE 4 Released' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'ARCHIWARE PresSTORE 4 Released' to Google Bookmarks" alt="Add 'ARCHIWARE PresSTORE 4 Released' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/general-technology/archiware-presstore-4-released/&amp;title=ARCHIWARE+PresSTORE+4+Released" title="Add 'ARCHIWARE PresSTORE 4 Released' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'ARCHIWARE PresSTORE 4 Released' to OKnotizie" alt="Add 'ARCHIWARE PresSTORE 4 Released' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/general-technology/archiware-presstore-4-released/&amp;T=ARCHIWARE+PresSTORE+4+Released" title="Add 'ARCHIWARE PresSTORE 4 Released' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'ARCHIWARE PresSTORE 4 Released' to Propeller" alt="Add 'ARCHIWARE PresSTORE 4 Released' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/general-technology/archiware-presstore-4-released/" title="Add 'ARCHIWARE PresSTORE 4 Released' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'ARCHIWARE PresSTORE 4 Released' to Bookmark.it" alt="Add 'ARCHIWARE PresSTORE 4 Released' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=ARCHIWARE+PresSTORE+4+Released&amp;url=http://techjournal.318.com/general-technology/archiware-presstore-4-released/" title="Add 'ARCHIWARE PresSTORE 4 Released' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'ARCHIWARE PresSTORE 4 Released' to Ask" alt="Add 'ARCHIWARE PresSTORE 4 Released' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/general-technology/archiware-presstore-4-released/&amp;title=ARCHIWARE+PresSTORE+4+Released" title="Add 'ARCHIWARE PresSTORE 4 Released' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'ARCHIWARE PresSTORE 4 Released' to Live-MSN" alt="Add 'ARCHIWARE PresSTORE 4 Released' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=ARCHIWARE+PresSTORE+4+Released&amp;url=http://techjournal.318.com/general-technology/archiware-presstore-4-released/" title="Add 'ARCHIWARE PresSTORE 4 Released' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'ARCHIWARE PresSTORE 4 Released' to SlashDot" alt="Add 'ARCHIWARE PresSTORE 4 Released' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/general-technology/archiware-presstore-4-released/&amp;t=ARCHIWARE+PresSTORE+4+Released" title="Add 'ARCHIWARE PresSTORE 4 Released' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'ARCHIWARE PresSTORE 4 Released' to FaceBook" alt="Add 'ARCHIWARE PresSTORE 4 Released' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/general-technology/archiware-presstore-4-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone iOS 4 Software Update</title>
		<link>http://techjournal.318.com/iphone/iphone-ios-4-software-update/</link>
		<comments>http://techjournal.318.com/iphone/iphone-ios-4-software-update/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 19:18:54 +0000</pubDate>
		<dc:creator>DK</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=550</guid>
		<description><![CDATA[The newest release of the iPhone operating system, the re-branded iOS 4, launched last week from Apple&#8217;s busy servers. According to Apple, iOS 4 works with iPhone 4, iPhone 3GS and iPhone 3G (but not all new features are supported on older hardware). The update will also install on second and third generation iPod Touch [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.apple.com/iphone/softwareupdate/"><img src="http://techjournal.318.com/wp-content/uploads/2010/06/ios4.jpg" alt="" title="ios4" width="272" height="117" class="aligncenter size-full wp-image-552" /></a><br />
The newest release of the iPhone operating system, the re-branded iOS 4, launched last week from Apple&#8217;s busy servers. According to Apple, iOS 4 works with iPhone 4, iPhone 3GS and iPhone 3G (but not all new features are supported on older hardware). The update will also install on second and third generation iPod Touch devices.</p>
<p>As with all major software upgrades, be sure to backup your current environment using iTunes before proceeding with the installation. This <a href="http://support.apple.com/kb/ht1766">Apple knowledge base article</a> describes the process in detail.</p>
<p>The upgrade process is also managed in iTunes and took a fair amount of time to complete on an iPhone 3GS. Reports of slowness and instability on older hardware were confirmed on one test 3G unit we tried, but others report no issues.</p>
<p>So what do you get after upgrading? Some key features:</p>
<ul>
<li>Folders &#8211; works as advertised and helps reduce the number of pages you need to scroll through to find the app you need.</li>
<li>Mail Improvements &#8211; welcome options for combined inbox and threaded discussions.</li>
<li>Multitasking (3GS and 4 only) &#8211; double-click the home button to reveal a row of other running apps you can switch to right away. Might take some time to get used to this one.</li>
<li>Home screen wallpaper (3GS and 4 only) &#8211; purely cosmetic, but nice in day-to-day use.</li>
<li>iBooks app &#8211; just like the iPad version, only smaller. Bookmarks are supposed to sync between the two versions, but it doesn&#8217;t seem like one knows what the other actually holds as far as books go.</li>
<li>Camera &#8211; older hardware gets the digital zoom feature, but quality is, well, like a digital zoom.</li>
<li>Bluetooth keyboard support &#8211; haven&#8217;t tried this, but could be useful.</li>
</ul>
<p>The new iPhone 4 hardware enhances some features of iOS, such as FaceTime video conferencing, improved camera performance, HD video support/editing and the high-quality retina display.</p>
<p>To find out more about how to utilize the iPhone platform in your organization, call your 318 account manager today, or email <a href="mailto:sales@318.com">sales@318.com</a> for more information.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/iphone/iphone-ios-4-software-update/&amp;title=iPhone+iOS+4+Software+Update" title="Add 'iPhone iOS 4 Software Update' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'iPhone iOS 4 Software Update' to Del.icio.us" alt="Add 'iPhone iOS 4 Software Update' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/iphone/iphone-ios-4-software-update/&amp;title=iPhone+iOS+4+Software+Update" title="Add 'iPhone iOS 4 Software Update' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'iPhone iOS 4 Software Update' to digg" alt="Add 'iPhone iOS 4 Software Update' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=iPhone+iOS+4+Software+Update&amp;url=http://techjournal.318.com/iphone/iphone-ios-4-software-update/&amp;version=0.7" title="Add 'iPhone iOS 4 Software Update' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'iPhone iOS 4 Software Update' to Feed Me Links" alt="Add 'iPhone iOS 4 Software Update' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/iphone/iphone-ios-4-software-update/" title="Add 'iPhone iOS 4 Software Update' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'iPhone iOS 4 Software Update' to Technorati" alt="Add 'iPhone iOS 4 Software Update' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/iphone/iphone-ios-4-software-update/&amp;t=iPhone+iOS+4+Software+Update" title="Add 'iPhone iOS 4 Software Update' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'iPhone iOS 4 Software Update' to Yahoo My Web" alt="Add 'iPhone iOS 4 Software Update' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/iphone/iphone-ios-4-software-update/&amp;h=iPhone+iOS+4+Software+Update" title="Add 'iPhone iOS 4 Software Update' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'iPhone iOS 4 Software Update' to Newsvine" alt="Add 'iPhone iOS 4 Software Update' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/iphone/iphone-ios-4-software-update/&amp;title=iPhone+iOS+4+Software+Update" title="Add 'iPhone iOS 4 Software Update' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'iPhone iOS 4 Software Update' to Socializer" alt="Add 'iPhone iOS 4 Software Update' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/iphone/iphone-ios-4-software-update/&amp;title=iPhone+iOS+4+Software+Update" title="Add 'iPhone iOS 4 Software Update' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'iPhone iOS 4 Software Update' to Stumble Upon" alt="Add 'iPhone iOS 4 Software Update' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/iphone/iphone-ios-4-software-update/&amp;title=iPhone+iOS+4+Software+Update" title="Add 'iPhone iOS 4 Software Update' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'iPhone iOS 4 Software Update' to Google Bookmarks" alt="Add 'iPhone iOS 4 Software Update' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/iphone/iphone-ios-4-software-update/&amp;title=iPhone+iOS+4+Software+Update" title="Add 'iPhone iOS 4 Software Update' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'iPhone iOS 4 Software Update' to OKnotizie" alt="Add 'iPhone iOS 4 Software Update' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/iphone/iphone-ios-4-software-update/&amp;T=iPhone+iOS+4+Software+Update" title="Add 'iPhone iOS 4 Software Update' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'iPhone iOS 4 Software Update' to Propeller" alt="Add 'iPhone iOS 4 Software Update' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/iphone/iphone-ios-4-software-update/" title="Add 'iPhone iOS 4 Software Update' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'iPhone iOS 4 Software Update' to Bookmark.it" alt="Add 'iPhone iOS 4 Software Update' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=iPhone+iOS+4+Software+Update&amp;url=http://techjournal.318.com/iphone/iphone-ios-4-software-update/" title="Add 'iPhone iOS 4 Software Update' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'iPhone iOS 4 Software Update' to Ask" alt="Add 'iPhone iOS 4 Software Update' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/iphone/iphone-ios-4-software-update/&amp;title=iPhone+iOS+4+Software+Update" title="Add 'iPhone iOS 4 Software Update' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'iPhone iOS 4 Software Update' to Live-MSN" alt="Add 'iPhone iOS 4 Software Update' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=iPhone+iOS+4+Software+Update&amp;url=http://techjournal.318.com/iphone/iphone-ios-4-software-update/" title="Add 'iPhone iOS 4 Software Update' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'iPhone iOS 4 Software Update' to SlashDot" alt="Add 'iPhone iOS 4 Software Update' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/iphone/iphone-ios-4-software-update/&amp;t=iPhone+iOS+4+Software+Update" title="Add 'iPhone iOS 4 Software Update' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'iPhone iOS 4 Software Update' to FaceBook" alt="Add 'iPhone iOS 4 Software Update' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/iphone/iphone-ios-4-software-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0 &#8220;Thelonious&#8221; Now Available</title>
		<link>http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/</link>
		<comments>http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 22:40:06 +0000</pubDate>
		<dc:creator>DK</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=544</guid>
		<description><![CDATA[As we wrote back in March, version 3.0 of WordPress was coming soon. Soon happened last week, as thousands of people starting downloading and upgrading (more than 1 million downloads the first week!). Our first site upgrade went smoothly, although the automatic upgrading of certain plugins still fail and must be done manually. As always, [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://techjournal.318.com/wp-content/uploads/2010/03/WordPressLogo.jpg" alt="" title="WordPressLogo" width="63" height="74" class="alignleft size-full wp-image-505" />As we <a href="http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/">wrote</a> back in March, <a href="http://wordpress.org/development/2010/06/thelonious/">version 3.0</a> of WordPress was coming soon. Soon happened last week, as thousands of people starting <a href="http://wordpress.org/download/">downloading</a> and <a href="http://codex.wordpress.org/Upgrading_WordPress">upgrading</a> (more than 1 million downloads the first week!).</p>
<p>Our first site upgrade went smoothly, although the automatic upgrading of certain plugins still fail and must be done manually. As always, it&#8217;s a good idea to make complete, tested backups of your site files and database dumps before starting the upgrade process.</p>
<p>WordPress 3.0 offers a lot of new online publishing options &#8211; call your 318 account manager today, or email <a href="mailto:sales@318.com">sales@318.com</a> for more information.</p>
<p>UPDATE: Our second site upgrade had to be reverted to version 2.9.2 temporarily due to an issue with the <a href="http://www.wp-eventscalendar.com/">WP Events Calendar</a> plugin. Since we had our site backups readily available, this was a quick and easy process.</p>
<p>In other WordPress community news, Automattic (the company behind WordPress.com) announced a beta program for <a href="http://vaultpress.com/">VaultPress</a>, an online, automated method of backing up and securing your WordPress-based website.</p>
<p>The beta plans start at $15/month and include protection for the entire WordPress environment, including the WordPress files (theme, plugins, options), content (posts, photos, videos, audio files), and all comments. Implementation is via Vaultpress plug-in.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/&amp;title=WordPress+3.0+%26%238220%3BThelonious%26%238221%3B+Now+Available" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Del.icio.us" alt="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/&amp;title=WordPress+3.0+%26%238220%3BThelonious%26%238221%3B+Now+Available" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to digg" alt="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=WordPress+3.0+%26%238220%3BThelonious%26%238221%3B+Now+Available&amp;url=http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/&amp;version=0.7" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Feed Me Links" alt="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Technorati" alt="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/&amp;t=WordPress+3.0+%26%238220%3BThelonious%26%238221%3B+Now+Available" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Yahoo My Web" alt="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/&amp;h=WordPress+3.0+%26%238220%3BThelonious%26%238221%3B+Now+Available" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Newsvine" alt="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/&amp;title=WordPress+3.0+%26%238220%3BThelonious%26%238221%3B+Now+Available" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Socializer" alt="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/&amp;title=WordPress+3.0+%26%238220%3BThelonious%26%238221%3B+Now+Available" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Stumble Upon" alt="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/&amp;title=WordPress+3.0+%26%238220%3BThelonious%26%238221%3B+Now+Available" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Google Bookmarks" alt="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/&amp;title=WordPress+3.0+%26%238220%3BThelonious%26%238221%3B+Now+Available" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to OKnotizie" alt="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/&amp;T=WordPress+3.0+%26%238220%3BThelonious%26%238221%3B+Now+Available" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Propeller" alt="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Bookmark.it" alt="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=WordPress+3.0+%26%238220%3BThelonious%26%238221%3B+Now+Available&amp;url=http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Ask" alt="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/&amp;title=WordPress+3.0+%26%238220%3BThelonious%26%238221%3B+Now+Available" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Live-MSN" alt="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=WordPress+3.0+%26%238220%3BThelonious%26%238221%3B+Now+Available&amp;url=http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to SlashDot" alt="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/&amp;t=WordPress+3.0+%26%238220%3BThelonious%26%238221%3B+Now+Available" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to FaceBook" alt="Add 'WordPress 3.0 &#8220;Thelonious&#8221; Now Available' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/web-development/wordpress-3-0-thelonious-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile Me Finds Your iPhone</title>
		<link>http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/</link>
		<comments>http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 17:58:59 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=541</guid>
		<description><![CDATA[Today, Apple sent the following email, indicating that there is a new Find My iPhone app that provides a number of pretty cool features for Mobile Me users that have iPhones, iPads or iPod Touches: You can now download the free Find My iPhone app, enabling you to locate a misplaced device directly from iPhone, [...]]]></description>
			<content:encoded><![CDATA[<p>Today, Apple sent the following email, indicating that there is a new Find My iPhone app that provides a number of pretty cool features for Mobile Me users that have iPhones, iPads or iPod Touches:</p>
<blockquote><p>You can now download the free Find My iPhone app, enabling you to locate a misplaced device directly from iPhone, iPad, or iPod touch while on the go. After installing it from the App Store, just launch the app and sign in to quickly locate your devices on a map and access the other Find My iPhone features — Display a Message or Play a Sound, Remote Lock, and Remote Wipe.*</p>
<p>The Find My iPhone web application on <a href="http://me.com/">me.com</a> has also been updated with a full-screen map view. Clicking your missing device on the map lets you access all the Find My iPhone actions to help you recover your device and protect the information on it.</p>
<p>Learn more about improvements to Find My iPhone <a href="http://www.apple.com/mobileme/news/2010/06/find-my-iphone-gets-an-update.html">here</a>.</p>
<p style="text-align: center;"><img class="aligncenter" title="http://www.apple.com/mobileme/news/Farallon3_v2.png" src="http://www.apple.com/mobileme/news/Farallon3_v2.png" alt="" width="316" height="197" /></p>
</blockquote>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/&amp;title=Mobile+Me+Finds+Your+iPhone" title="Add 'Mobile Me Finds Your iPhone' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Mobile Me Finds Your iPhone' to Del.icio.us" alt="Add 'Mobile Me Finds Your iPhone' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/&amp;title=Mobile+Me+Finds+Your+iPhone" title="Add 'Mobile Me Finds Your iPhone' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Mobile Me Finds Your iPhone' to digg" alt="Add 'Mobile Me Finds Your iPhone' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Mobile+Me+Finds+Your+iPhone&amp;url=http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/&amp;version=0.7" title="Add 'Mobile Me Finds Your iPhone' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Mobile Me Finds Your iPhone' to Feed Me Links" alt="Add 'Mobile Me Finds Your iPhone' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/" title="Add 'Mobile Me Finds Your iPhone' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Mobile Me Finds Your iPhone' to Technorati" alt="Add 'Mobile Me Finds Your iPhone' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/&amp;t=Mobile+Me+Finds+Your+iPhone" title="Add 'Mobile Me Finds Your iPhone' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Mobile Me Finds Your iPhone' to Yahoo My Web" alt="Add 'Mobile Me Finds Your iPhone' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/&amp;h=Mobile+Me+Finds+Your+iPhone" title="Add 'Mobile Me Finds Your iPhone' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Mobile Me Finds Your iPhone' to Newsvine" alt="Add 'Mobile Me Finds Your iPhone' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/&amp;title=Mobile+Me+Finds+Your+iPhone" title="Add 'Mobile Me Finds Your iPhone' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'Mobile Me Finds Your iPhone' to Socializer" alt="Add 'Mobile Me Finds Your iPhone' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/&amp;title=Mobile+Me+Finds+Your+iPhone" title="Add 'Mobile Me Finds Your iPhone' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Mobile Me Finds Your iPhone' to Stumble Upon" alt="Add 'Mobile Me Finds Your iPhone' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/&amp;title=Mobile+Me+Finds+Your+iPhone" title="Add 'Mobile Me Finds Your iPhone' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Mobile Me Finds Your iPhone' to Google Bookmarks" alt="Add 'Mobile Me Finds Your iPhone' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/&amp;title=Mobile+Me+Finds+Your+iPhone" title="Add 'Mobile Me Finds Your iPhone' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'Mobile Me Finds Your iPhone' to OKnotizie" alt="Add 'Mobile Me Finds Your iPhone' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/&amp;T=Mobile+Me+Finds+Your+iPhone" title="Add 'Mobile Me Finds Your iPhone' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Mobile Me Finds Your iPhone' to Propeller" alt="Add 'Mobile Me Finds Your iPhone' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/" title="Add 'Mobile Me Finds Your iPhone' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'Mobile Me Finds Your iPhone' to Bookmark.it" alt="Add 'Mobile Me Finds Your iPhone' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Mobile+Me+Finds+Your+iPhone&amp;url=http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/" title="Add 'Mobile Me Finds Your iPhone' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'Mobile Me Finds Your iPhone' to Ask" alt="Add 'Mobile Me Finds Your iPhone' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/&amp;title=Mobile+Me+Finds+Your+iPhone" title="Add 'Mobile Me Finds Your iPhone' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Mobile Me Finds Your iPhone' to Live-MSN" alt="Add 'Mobile Me Finds Your iPhone' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Mobile+Me+Finds+Your+iPhone&amp;url=http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/" title="Add 'Mobile Me Finds Your iPhone' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Mobile Me Finds Your iPhone' to SlashDot" alt="Add 'Mobile Me Finds Your iPhone' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/&amp;t=Mobile+Me+Finds+Your+iPhone" title="Add 'Mobile Me Finds Your iPhone' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Mobile Me Finds Your iPhone' to FaceBook" alt="Add 'Mobile Me Finds Your iPhone' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/iphone/mobile-me-finds-your-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Retrospect by Roxio</title>
		<link>http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/</link>
		<comments>http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/#comments</comments>
		<pubDate>Fri, 21 May 2010 21:51:31 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Mac OS X Server]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=539</guid>
		<description><![CDATA[According to a press release currently making the rounds, the Retrospect product has now been sold to Sonic Solutions, the makers of Roxio. To quote the press release: We are pleased to let you know that Sonic Solutions purchased the Retrospect backup and recovery software from EMC on May 18, 2010 and is responsible for [...]]]></description>
			<content:encoded><![CDATA[<p>According to a press release currently making the rounds, the Retrospect product has now been sold to Sonic Solutions, the makers of Roxio. To quote the press release:</p>
<blockquote><p>We are pleased to let you know that Sonic Solutions purchased the Retrospect backup and recovery software from EMC on May 18, 2010 and is responsible for all aspects of the Retrospect product line and business going forward.</p>
<p>Retrospect will be part of the Roxio Division of Sonic, a leader in digital media software. Adding to our broad range of products for content creation and management capabilities for businesses and individuals, Retrospect plays a critical role in expanding the Roxio business in the backup category. We understand that backup and recovery is critical to both your business and to your customers, and the Retrospect product line significantly enhances our ability to meet these needs.</p></blockquote>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/&amp;title=Retrospect+by+Roxio" title="Add 'Retrospect by Roxio' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Retrospect by Roxio' to Del.icio.us" alt="Add 'Retrospect by Roxio' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/&amp;title=Retrospect+by+Roxio" title="Add 'Retrospect by Roxio' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Retrospect by Roxio' to digg" alt="Add 'Retrospect by Roxio' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Retrospect+by+Roxio&amp;url=http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/&amp;version=0.7" title="Add 'Retrospect by Roxio' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Retrospect by Roxio' to Feed Me Links" alt="Add 'Retrospect by Roxio' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/" title="Add 'Retrospect by Roxio' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Retrospect by Roxio' to Technorati" alt="Add 'Retrospect by Roxio' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/&amp;t=Retrospect+by+Roxio" title="Add 'Retrospect by Roxio' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Retrospect by Roxio' to Yahoo My Web" alt="Add 'Retrospect by Roxio' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/&amp;h=Retrospect+by+Roxio" title="Add 'Retrospect by Roxio' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Retrospect by Roxio' to Newsvine" alt="Add 'Retrospect by Roxio' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/&amp;title=Retrospect+by+Roxio" title="Add 'Retrospect by Roxio' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'Retrospect by Roxio' to Socializer" alt="Add 'Retrospect by Roxio' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/&amp;title=Retrospect+by+Roxio" title="Add 'Retrospect by Roxio' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Retrospect by Roxio' to Stumble Upon" alt="Add 'Retrospect by Roxio' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/&amp;title=Retrospect+by+Roxio" title="Add 'Retrospect by Roxio' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Retrospect by Roxio' to Google Bookmarks" alt="Add 'Retrospect by Roxio' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/&amp;title=Retrospect+by+Roxio" title="Add 'Retrospect by Roxio' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'Retrospect by Roxio' to OKnotizie" alt="Add 'Retrospect by Roxio' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/&amp;T=Retrospect+by+Roxio" title="Add 'Retrospect by Roxio' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Retrospect by Roxio' to Propeller" alt="Add 'Retrospect by Roxio' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/" title="Add 'Retrospect by Roxio' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'Retrospect by Roxio' to Bookmark.it" alt="Add 'Retrospect by Roxio' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Retrospect+by+Roxio&amp;url=http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/" title="Add 'Retrospect by Roxio' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'Retrospect by Roxio' to Ask" alt="Add 'Retrospect by Roxio' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/&amp;title=Retrospect+by+Roxio" title="Add 'Retrospect by Roxio' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Retrospect by Roxio' to Live-MSN" alt="Add 'Retrospect by Roxio' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Retrospect+by+Roxio&amp;url=http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/" title="Add 'Retrospect by Roxio' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Retrospect by Roxio' to SlashDot" alt="Add 'Retrospect by Roxio' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/&amp;t=Retrospect+by+Roxio" title="Add 'Retrospect by Roxio' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Retrospect by Roxio' to FaceBook" alt="Add 'Retrospect by Roxio' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/mac-os-x-server/retrospect-by-roxio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CS5 Shipping</title>
		<link>http://techjournal.318.com/mac-os-x/cs5-shipping/</link>
		<comments>http://techjournal.318.com/mac-os-x/cs5-shipping/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 21:48:57 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=537</guid>
		<description><![CDATA[Adobe CS5 is now shipping. To download a demo check out https://www.adobe.com/cfusion/tdrc/index.cfm?product=design_premium. Some new features include perspective drawing, width tool, shape builder, live view, browser lab, multiple page sizes, spanning, splitting and a new gap tool. Lots of new goodness here! Whether you are installing it for 2 computers or 2,000, 318 can help with [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe CS5 is now shipping. To download a demo check out <a href="https://www.adobe.com/cfusion/tdrc/index.cfm?product=design_premium">https://www.adobe.com/cfusion/tdrc/index.cfm?product=design_premium</a>. Some new features include perspective drawing, width tool, shape builder, live view, browser lab, multiple page sizes, spanning, splitting and a new gap tool. Lots of new goodness here!</p>
<p style="text-align: center;"><img class="aligncenter" title="Adobe CS5 Photoshop" src="http://www.photoshopcs5.co.uk/blog/wp-content/uploads/2010/01/cs5-box1.png" alt="" width="230" height="202" /></p>
<p>Whether you are installing it for 2 computers or 2,000, 318 can help with all aspects of your upgrade. Contact your account manager today, or sales@318.com for more information.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/mac-os-x/cs5-shipping/&amp;title=CS5+Shipping" title="Add 'CS5 Shipping' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'CS5 Shipping' to Del.icio.us" alt="Add 'CS5 Shipping' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/mac-os-x/cs5-shipping/&amp;title=CS5+Shipping" title="Add 'CS5 Shipping' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'CS5 Shipping' to digg" alt="Add 'CS5 Shipping' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=CS5+Shipping&amp;url=http://techjournal.318.com/mac-os-x/cs5-shipping/&amp;version=0.7" title="Add 'CS5 Shipping' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'CS5 Shipping' to Feed Me Links" alt="Add 'CS5 Shipping' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/mac-os-x/cs5-shipping/" title="Add 'CS5 Shipping' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'CS5 Shipping' to Technorati" alt="Add 'CS5 Shipping' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/mac-os-x/cs5-shipping/&amp;t=CS5+Shipping" title="Add 'CS5 Shipping' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'CS5 Shipping' to Yahoo My Web" alt="Add 'CS5 Shipping' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/mac-os-x/cs5-shipping/&amp;h=CS5+Shipping" title="Add 'CS5 Shipping' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'CS5 Shipping' to Newsvine" alt="Add 'CS5 Shipping' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/mac-os-x/cs5-shipping/&amp;title=CS5+Shipping" title="Add 'CS5 Shipping' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'CS5 Shipping' to Socializer" alt="Add 'CS5 Shipping' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/mac-os-x/cs5-shipping/&amp;title=CS5+Shipping" title="Add 'CS5 Shipping' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'CS5 Shipping' to Stumble Upon" alt="Add 'CS5 Shipping' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/mac-os-x/cs5-shipping/&amp;title=CS5+Shipping" title="Add 'CS5 Shipping' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'CS5 Shipping' to Google Bookmarks" alt="Add 'CS5 Shipping' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/mac-os-x/cs5-shipping/&amp;title=CS5+Shipping" title="Add 'CS5 Shipping' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'CS5 Shipping' to OKnotizie" alt="Add 'CS5 Shipping' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/mac-os-x/cs5-shipping/&amp;T=CS5+Shipping" title="Add 'CS5 Shipping' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'CS5 Shipping' to Propeller" alt="Add 'CS5 Shipping' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/mac-os-x/cs5-shipping/" title="Add 'CS5 Shipping' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'CS5 Shipping' to Bookmark.it" alt="Add 'CS5 Shipping' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=CS5+Shipping&amp;url=http://techjournal.318.com/mac-os-x/cs5-shipping/" title="Add 'CS5 Shipping' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'CS5 Shipping' to Ask" alt="Add 'CS5 Shipping' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/mac-os-x/cs5-shipping/&amp;title=CS5+Shipping" title="Add 'CS5 Shipping' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'CS5 Shipping' to Live-MSN" alt="Add 'CS5 Shipping' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=CS5+Shipping&amp;url=http://techjournal.318.com/mac-os-x/cs5-shipping/" title="Add 'CS5 Shipping' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'CS5 Shipping' to SlashDot" alt="Add 'CS5 Shipping' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/mac-os-x/cs5-shipping/&amp;t=CS5+Shipping" title="Add 'CS5 Shipping' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'CS5 Shipping' to FaceBook" alt="Add 'CS5 Shipping' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/mac-os-x/cs5-shipping/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad 3G Now Available</title>
		<link>http://techjournal.318.com/iphone/ipad-3g-now-available/</link>
		<comments>http://techjournal.318.com/iphone/ipad-3g-now-available/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 14:25:08 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=534</guid>
		<description><![CDATA[The iPad 3G (Wi-Fi + 3G) is now available for purchase at your favorite Apple Store or online from $629 to $829. They are great devices. With data plans from $14.99 to $29.99, you can take a wireless network with you anywhere that you go for less than the cost of one day worth of [...]]]></description>
			<content:encoded><![CDATA[<p>The iPad 3G (Wi-Fi + 3G) is now available for purchase at your favorite Apple Store or online from $629 to $829. They are great devices. With data plans from $14.99 to $29.99, you can take a wireless network with you anywhere that you go for less than the cost of one day worth of wireless access at many hotels.</p>
<p style="text-align: center;"><img class="aligncenter" title="iPad" src="http://images.apple.com/ipad/home/images/hero3_20100403.png" alt="" width="342" height="414" /></p>
<p>There are a number of architectural changes that may need to occur in order to most effectively support these devices, so if you find that some changes need to occur in your environment, contact your 318 account manager for assistance.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/iphone/ipad-3g-now-available/&amp;title=iPad+3G+Now+Available" title="Add 'iPad 3G Now Available' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'iPad 3G Now Available' to Del.icio.us" alt="Add 'iPad 3G Now Available' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/iphone/ipad-3g-now-available/&amp;title=iPad+3G+Now+Available" title="Add 'iPad 3G Now Available' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'iPad 3G Now Available' to digg" alt="Add 'iPad 3G Now Available' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=iPad+3G+Now+Available&amp;url=http://techjournal.318.com/iphone/ipad-3g-now-available/&amp;version=0.7" title="Add 'iPad 3G Now Available' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'iPad 3G Now Available' to Feed Me Links" alt="Add 'iPad 3G Now Available' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/iphone/ipad-3g-now-available/" title="Add 'iPad 3G Now Available' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'iPad 3G Now Available' to Technorati" alt="Add 'iPad 3G Now Available' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/iphone/ipad-3g-now-available/&amp;t=iPad+3G+Now+Available" title="Add 'iPad 3G Now Available' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'iPad 3G Now Available' to Yahoo My Web" alt="Add 'iPad 3G Now Available' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/iphone/ipad-3g-now-available/&amp;h=iPad+3G+Now+Available" title="Add 'iPad 3G Now Available' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'iPad 3G Now Available' to Newsvine" alt="Add 'iPad 3G Now Available' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/iphone/ipad-3g-now-available/&amp;title=iPad+3G+Now+Available" title="Add 'iPad 3G Now Available' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'iPad 3G Now Available' to Socializer" alt="Add 'iPad 3G Now Available' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/iphone/ipad-3g-now-available/&amp;title=iPad+3G+Now+Available" title="Add 'iPad 3G Now Available' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'iPad 3G Now Available' to Stumble Upon" alt="Add 'iPad 3G Now Available' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/iphone/ipad-3g-now-available/&amp;title=iPad+3G+Now+Available" title="Add 'iPad 3G Now Available' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'iPad 3G Now Available' to Google Bookmarks" alt="Add 'iPad 3G Now Available' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/iphone/ipad-3g-now-available/&amp;title=iPad+3G+Now+Available" title="Add 'iPad 3G Now Available' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'iPad 3G Now Available' to OKnotizie" alt="Add 'iPad 3G Now Available' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/iphone/ipad-3g-now-available/&amp;T=iPad+3G+Now+Available" title="Add 'iPad 3G Now Available' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'iPad 3G Now Available' to Propeller" alt="Add 'iPad 3G Now Available' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/iphone/ipad-3g-now-available/" title="Add 'iPad 3G Now Available' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'iPad 3G Now Available' to Bookmark.it" alt="Add 'iPad 3G Now Available' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=iPad+3G+Now+Available&amp;url=http://techjournal.318.com/iphone/ipad-3g-now-available/" title="Add 'iPad 3G Now Available' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'iPad 3G Now Available' to Ask" alt="Add 'iPad 3G Now Available' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/iphone/ipad-3g-now-available/&amp;title=iPad+3G+Now+Available" title="Add 'iPad 3G Now Available' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'iPad 3G Now Available' to Live-MSN" alt="Add 'iPad 3G Now Available' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=iPad+3G+Now+Available&amp;url=http://techjournal.318.com/iphone/ipad-3g-now-available/" title="Add 'iPad 3G Now Available' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'iPad 3G Now Available' to SlashDot" alt="Add 'iPad 3G Now Available' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/iphone/ipad-3g-now-available/&amp;t=iPad+3G+Now+Available" title="Add 'iPad 3G Now Available' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'iPad 3G Now Available' to FaceBook" alt="Add 'iPad 3G Now Available' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/iphone/ipad-3g-now-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WWDC 2010</title>
		<link>http://techjournal.318.com/scripts/wwdc-2010/</link>
		<comments>http://techjournal.318.com/scripts/wwdc-2010/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 15:46:00 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=532</guid>
		<description><![CDATA[The annual Apple WorldWide Developers Conference, WWDC, has been announced for June 7th through June 11th. The Developers Conference will again be held in the Moscone Center in San Francisco and this year will be solely focused on development, having no IT track. To see a list of sessions, click here. As part of WWDC, [...]]]></description>
			<content:encoded><![CDATA[<p>The annual Apple WorldWide Developers Conference, WWDC, <a href="http://developer.apple.com/wwdc/">has been announced for June 7th through June 11th</a>. The Developers Conference will again be held in the Moscone Center in San Francisco and this year will be solely focused on development, having no IT track. To see a list of sessions, <a href="http://developer.apple.com/wwdc/sessions/">click here</a>.</p>
<p><img class="aligncenter" title="WWDC Badge" src="http://devimages.apple.com/wwdc/images/wwdc10_experience_wwdcicon20100416.png" alt="" width="220" height="233" /></p>
<p>As part of WWDC, Apple also hands out a number of design awards. If you have any applications you would like to nominate for a design award then <a href="http://developer.apple.com/wwdc/ada/">you can do so here</a>.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/scripts/wwdc-2010/&amp;title=WWDC+2010" title="Add 'WWDC 2010' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'WWDC 2010' to Del.icio.us" alt="Add 'WWDC 2010' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/scripts/wwdc-2010/&amp;title=WWDC+2010" title="Add 'WWDC 2010' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'WWDC 2010' to digg" alt="Add 'WWDC 2010' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=WWDC+2010&amp;url=http://techjournal.318.com/scripts/wwdc-2010/&amp;version=0.7" title="Add 'WWDC 2010' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'WWDC 2010' to Feed Me Links" alt="Add 'WWDC 2010' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/scripts/wwdc-2010/" title="Add 'WWDC 2010' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'WWDC 2010' to Technorati" alt="Add 'WWDC 2010' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/scripts/wwdc-2010/&amp;t=WWDC+2010" title="Add 'WWDC 2010' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'WWDC 2010' to Yahoo My Web" alt="Add 'WWDC 2010' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/scripts/wwdc-2010/&amp;h=WWDC+2010" title="Add 'WWDC 2010' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'WWDC 2010' to Newsvine" alt="Add 'WWDC 2010' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/scripts/wwdc-2010/&amp;title=WWDC+2010" title="Add 'WWDC 2010' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'WWDC 2010' to Socializer" alt="Add 'WWDC 2010' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/scripts/wwdc-2010/&amp;title=WWDC+2010" title="Add 'WWDC 2010' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'WWDC 2010' to Stumble Upon" alt="Add 'WWDC 2010' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/scripts/wwdc-2010/&amp;title=WWDC+2010" title="Add 'WWDC 2010' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'WWDC 2010' to Google Bookmarks" alt="Add 'WWDC 2010' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/scripts/wwdc-2010/&amp;title=WWDC+2010" title="Add 'WWDC 2010' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'WWDC 2010' to OKnotizie" alt="Add 'WWDC 2010' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/scripts/wwdc-2010/&amp;T=WWDC+2010" title="Add 'WWDC 2010' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'WWDC 2010' to Propeller" alt="Add 'WWDC 2010' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/scripts/wwdc-2010/" title="Add 'WWDC 2010' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'WWDC 2010' to Bookmark.it" alt="Add 'WWDC 2010' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=WWDC+2010&amp;url=http://techjournal.318.com/scripts/wwdc-2010/" title="Add 'WWDC 2010' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'WWDC 2010' to Ask" alt="Add 'WWDC 2010' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/scripts/wwdc-2010/&amp;title=WWDC+2010" title="Add 'WWDC 2010' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'WWDC 2010' to Live-MSN" alt="Add 'WWDC 2010' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=WWDC+2010&amp;url=http://techjournal.318.com/scripts/wwdc-2010/" title="Add 'WWDC 2010' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'WWDC 2010' to SlashDot" alt="Add 'WWDC 2010' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/scripts/wwdc-2010/&amp;t=WWDC+2010" title="Add 'WWDC 2010' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'WWDC 2010' to FaceBook" alt="Add 'WWDC 2010' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/scripts/wwdc-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building MultiSAN with Xsan 2.x</title>
		<link>http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/</link>
		<comments>http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 13:57:57 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[Xsan]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=528</guid>
		<description><![CDATA[In Xsan 2, MultiSAN was introduced. MultiSAN allows you to assign different sets of primary, secondary and tertiary metadata controllers to volumes. This provides a performance benefit for some environments that have saturated resources on a given metadata controller. However, MultiSAN does not allow you to build separate SANs. All of the volumes are still [...]]]></description>
			<content:encoded><![CDATA[<p>In Xsan 2, MultiSAN was introduced. MultiSAN allows you to assign different sets of primary, secondary and tertiary metadata controllers to volumes. This provides a performance benefit for some environments that have saturated resources on a given metadata controller. However, MultiSAN does not allow you to build separate SANs. All of the volumes are still members of that single “Xsan”, meaning that volumes can be mounted and/or controlled for any of the clients. You can have 2 volumes, each with a dedicated metadata controller, but both sharing a single backup metadata controller. You can also have 2 volumes, each with a dedicated metadata controller that fails over to the other metadata controller.</p>
<p>But if you do have 2 SANs, completely separate from one another, you cannot then have a client on both. Therefore, having multiple SANs isn’t exactly MultiSAN. MultiSAN means going from having a single metadata controller that controls your entire environment to having a slightly more object-oriented approach to metadata controllers. Which brings us to the question “do I need MultiSAN?” My answer is an if/then statement. If your metadata controller’s fsm or fsmpm processes are spiraling out of control then yes, you may (or you may have corruption in metadata somewhere. For coming up with the answer to my question I posted an Xsan monitor app awhile back on <a href="http://krypted.com/apps/">my apps page</a>. But if your fsm/fsmpm processes barely tip above 1% and you’re still having bandwidth problems then look at stripe breadth/block size, fabric and defragmentation before considering buying a bunch of iron to move metadata controlling off onto dedicated hardware.</p>
<p>Now, if you do decide to integrate MultiSAN then to do so is a very straight forward process. First <a href="http://krypted.com/xsan/xsan-adding-client-computers/">add the all of the metadata controllers as clients to the SAN</a>. Then, <a href="http://krypted.com/xsan/xsan-create-a-volume/">create the volume</a>. When creating a volume you will eventually come to a screen to define Volume Failover Priority. Here, you will see each of the clients that you have installed (in the beginning this might only be the metadata controllers). Check the box for each of the clients that you would like to be a metadata controller (I recommend no <em>less</em> than two but in most installations no <em>more</em> than 3 metadata controllers per volume). In this screen you can then also set priority by dragging each controller higher or lower in the list of controllers. If you only have two metadata controllers then the primary would be at the top of the list followed by the backup metadata controller. When you are satisfied with your configuration click on the Continue button and complete the volume configuration as you normally would. You can also invoke the Volume Priority screen from within Xsan Admin for pre-existing volumes.</p>
<p>This article was initially posted at <a href="http://krypted.com/mac-os-x-server/defining-multisan/">http://krypted.com/mac-os-x-server/defining-multisan/</a></p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/&amp;title=Building+MultiSAN+with+Xsan+2.x" title="Add 'Building MultiSAN with Xsan 2.x' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Building MultiSAN with Xsan 2.x' to Del.icio.us" alt="Add 'Building MultiSAN with Xsan 2.x' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/&amp;title=Building+MultiSAN+with+Xsan+2.x" title="Add 'Building MultiSAN with Xsan 2.x' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Building MultiSAN with Xsan 2.x' to digg" alt="Add 'Building MultiSAN with Xsan 2.x' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Building+MultiSAN+with+Xsan+2.x&amp;url=http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/&amp;version=0.7" title="Add 'Building MultiSAN with Xsan 2.x' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Building MultiSAN with Xsan 2.x' to Feed Me Links" alt="Add 'Building MultiSAN with Xsan 2.x' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/" title="Add 'Building MultiSAN with Xsan 2.x' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Building MultiSAN with Xsan 2.x' to Technorati" alt="Add 'Building MultiSAN with Xsan 2.x' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/&amp;t=Building+MultiSAN+with+Xsan+2.x" title="Add 'Building MultiSAN with Xsan 2.x' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Building MultiSAN with Xsan 2.x' to Yahoo My Web" alt="Add 'Building MultiSAN with Xsan 2.x' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/&amp;h=Building+MultiSAN+with+Xsan+2.x" title="Add 'Building MultiSAN with Xsan 2.x' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Building MultiSAN with Xsan 2.x' to Newsvine" alt="Add 'Building MultiSAN with Xsan 2.x' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/&amp;title=Building+MultiSAN+with+Xsan+2.x" title="Add 'Building MultiSAN with Xsan 2.x' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'Building MultiSAN with Xsan 2.x' to Socializer" alt="Add 'Building MultiSAN with Xsan 2.x' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/&amp;title=Building+MultiSAN+with+Xsan+2.x" title="Add 'Building MultiSAN with Xsan 2.x' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Building MultiSAN with Xsan 2.x' to Stumble Upon" alt="Add 'Building MultiSAN with Xsan 2.x' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/&amp;title=Building+MultiSAN+with+Xsan+2.x" title="Add 'Building MultiSAN with Xsan 2.x' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Building MultiSAN with Xsan 2.x' to Google Bookmarks" alt="Add 'Building MultiSAN with Xsan 2.x' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/&amp;title=Building+MultiSAN+with+Xsan+2.x" title="Add 'Building MultiSAN with Xsan 2.x' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'Building MultiSAN with Xsan 2.x' to OKnotizie" alt="Add 'Building MultiSAN with Xsan 2.x' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/&amp;T=Building+MultiSAN+with+Xsan+2.x" title="Add 'Building MultiSAN with Xsan 2.x' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Building MultiSAN with Xsan 2.x' to Propeller" alt="Add 'Building MultiSAN with Xsan 2.x' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/" title="Add 'Building MultiSAN with Xsan 2.x' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'Building MultiSAN with Xsan 2.x' to Bookmark.it" alt="Add 'Building MultiSAN with Xsan 2.x' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Building+MultiSAN+with+Xsan+2.x&amp;url=http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/" title="Add 'Building MultiSAN with Xsan 2.x' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'Building MultiSAN with Xsan 2.x' to Ask" alt="Add 'Building MultiSAN with Xsan 2.x' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/&amp;title=Building+MultiSAN+with+Xsan+2.x" title="Add 'Building MultiSAN with Xsan 2.x' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Building MultiSAN with Xsan 2.x' to Live-MSN" alt="Add 'Building MultiSAN with Xsan 2.x' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Building+MultiSAN+with+Xsan+2.x&amp;url=http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/" title="Add 'Building MultiSAN with Xsan 2.x' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Building MultiSAN with Xsan 2.x' to SlashDot" alt="Add 'Building MultiSAN with Xsan 2.x' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/&amp;t=Building+MultiSAN+with+Xsan+2.x" title="Add 'Building MultiSAN with Xsan 2.x' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Building MultiSAN with Xsan 2.x' to FaceBook" alt="Add 'Building MultiSAN with Xsan 2.x' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/xsan/building-multisan-with-xsan-2-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sandboxing Chrome</title>
		<link>http://techjournal.318.com/general-technology/sandboxing-chrome/</link>
		<comments>http://techjournal.318.com/general-technology/sandboxing-chrome/#comments</comments>
		<pubDate>Fri, 23 Apr 2010 15:58:14 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[General Technology]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Mac OS X Server]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=520</guid>
		<description><![CDATA[Thanks to Google for referencing our post introducing sandbox in their sandboxing design document for Chromium at: http://dev.chromium.org/developers/design-documents/sandbox/osx-sandboxing-design Their use of sandbox is really over and above what we&#8217;ve seen from any other vendor. Each installation contains 3 distinct sandbox profiles (currently I have 4.0.249.49 and version 5.0.342.9 although mileage here may vary according to [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to Google for referencing <a href="http://techjournal.318.com/security/a-brief-introduction-to-mac-os-x-sandbox-technology/">our post introducing sandbox</a> in their sandboxing design document for Chromium at:</p>
<blockquote><p><a href="http://dev.chromium.org/developers/design-documents/sandbox/osx-sandboxing-design">http://dev.chromium.org/developers/design-documents/sandbox/osx-sandboxing-design</a></p></blockquote>
<p>Their use of sandbox is really over and above what we&#8217;ve seen from any other vendor. Each installation contains 3 distinct sandbox profiles (currently I have 4.0.249.49 and version 5.0.342.9 although mileage here may vary according to updates), each profile allowing access to only files and resources that are absolutely necessary to complete the task that the process that leverages them requires. You can see the specific resources that are accessible by looking at these profiles. The profiles are located at:</p>
<ul>
<li>/Applications/Google Chrome.app/Contents/Versions/4.0.249.49/Google Chrome Framework.framework/Resources/renderer.sb</li>
<li>/Applications/Google Chrome.app/Contents/Versions/4.0.249.49/Google Chrome Framework.framework/Resources/utility.sb</li>
<li>/Applications/Google Chrome.app/Contents/Versions/4.0.249.49/Google Chrome Framework.framework/Resources/worker.sb</li>
</ul>
<div>You can view them easily using a simple cat command:</div>
<blockquote><p>cat /Applications/Google\ Chrome.app/Contents/Versions/4.0.249.49/Google\ Chrome\ Framework.framework/Resources/renderer.sb</p></blockquote>
<p>You can then edit the profiles easily. For example, if you want to enable debug logging for sandbox, etc. This allows you transparency into what Chrome is doing but also allows you to further tighten security. Although, they have really taken their time to secure Chrome well and locked things down, so we doubt much further restriction is necessary or really possible. Overall, Chrome provides a great example of taking sandbox to the next level and extending it much more into the applications with graphical user interfaces than we&#8217;ve seen it extended to thus far.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/general-technology/sandboxing-chrome/&amp;title=Sandboxing+Chrome" title="Add 'Sandboxing Chrome' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Sandboxing Chrome' to Del.icio.us" alt="Add 'Sandboxing Chrome' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/general-technology/sandboxing-chrome/&amp;title=Sandboxing+Chrome" title="Add 'Sandboxing Chrome' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Sandboxing Chrome' to digg" alt="Add 'Sandboxing Chrome' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Sandboxing+Chrome&amp;url=http://techjournal.318.com/general-technology/sandboxing-chrome/&amp;version=0.7" title="Add 'Sandboxing Chrome' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Sandboxing Chrome' to Feed Me Links" alt="Add 'Sandboxing Chrome' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/general-technology/sandboxing-chrome/" title="Add 'Sandboxing Chrome' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Sandboxing Chrome' to Technorati" alt="Add 'Sandboxing Chrome' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/general-technology/sandboxing-chrome/&amp;t=Sandboxing+Chrome" title="Add 'Sandboxing Chrome' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Sandboxing Chrome' to Yahoo My Web" alt="Add 'Sandboxing Chrome' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/general-technology/sandboxing-chrome/&amp;h=Sandboxing+Chrome" title="Add 'Sandboxing Chrome' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Sandboxing Chrome' to Newsvine" alt="Add 'Sandboxing Chrome' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/general-technology/sandboxing-chrome/&amp;title=Sandboxing+Chrome" title="Add 'Sandboxing Chrome' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'Sandboxing Chrome' to Socializer" alt="Add 'Sandboxing Chrome' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/general-technology/sandboxing-chrome/&amp;title=Sandboxing+Chrome" title="Add 'Sandboxing Chrome' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Sandboxing Chrome' to Stumble Upon" alt="Add 'Sandboxing Chrome' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/general-technology/sandboxing-chrome/&amp;title=Sandboxing+Chrome" title="Add 'Sandboxing Chrome' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Sandboxing Chrome' to Google Bookmarks" alt="Add 'Sandboxing Chrome' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/general-technology/sandboxing-chrome/&amp;title=Sandboxing+Chrome" title="Add 'Sandboxing Chrome' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'Sandboxing Chrome' to OKnotizie" alt="Add 'Sandboxing Chrome' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/general-technology/sandboxing-chrome/&amp;T=Sandboxing+Chrome" title="Add 'Sandboxing Chrome' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Sandboxing Chrome' to Propeller" alt="Add 'Sandboxing Chrome' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/general-technology/sandboxing-chrome/" title="Add 'Sandboxing Chrome' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'Sandboxing Chrome' to Bookmark.it" alt="Add 'Sandboxing Chrome' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Sandboxing+Chrome&amp;url=http://techjournal.318.com/general-technology/sandboxing-chrome/" title="Add 'Sandboxing Chrome' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'Sandboxing Chrome' to Ask" alt="Add 'Sandboxing Chrome' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/general-technology/sandboxing-chrome/&amp;title=Sandboxing+Chrome" title="Add 'Sandboxing Chrome' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Sandboxing Chrome' to Live-MSN" alt="Add 'Sandboxing Chrome' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Sandboxing+Chrome&amp;url=http://techjournal.318.com/general-technology/sandboxing-chrome/" title="Add 'Sandboxing Chrome' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Sandboxing Chrome' to SlashDot" alt="Add 'Sandboxing Chrome' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/general-technology/sandboxing-chrome/&amp;t=Sandboxing+Chrome" title="Add 'Sandboxing Chrome' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Sandboxing Chrome' to FaceBook" alt="Add 'Sandboxing Chrome' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/general-technology/sandboxing-chrome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bad McAfee Update</title>
		<link>http://techjournal.318.com/security/bad-mcafee-update/</link>
		<comments>http://techjournal.318.com/security/bad-mcafee-update/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 14:13:40 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=523</guid>
		<description><![CDATA[Please be aware that there is a bad McAfee Antivirus update that will wrongly quarantine the SVCHOST files on Windows XP.  McAfee is aware of the issue and has pulled the bad update file.  Below is a fix in case you run into a case where the machine has already applied the update: http://vil.nai.com/vil/5958_false.htm Link [...]]]></description>
			<content:encoded><![CDATA[<p>Please be aware that there is a bad McAfee Antivirus update that will wrongly quarantine the SVCHOST files on Windows XP.  McAfee is aware of the issue and has pulled the bad update file.  Below is a fix in case you run into a case where the machine has already applied the update:</p>
<p><a href="http://vil.nai.com/vil/5958_false.htm">http://vil.nai.com/vil/5958_false.htm</a></p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/security/bad-mcafee-update/&amp;title=Bad+McAfee+Update" title="Add 'Bad McAfee Update' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Bad McAfee Update' to Del.icio.us" alt="Add 'Bad McAfee Update' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/security/bad-mcafee-update/&amp;title=Bad+McAfee+Update" title="Add 'Bad McAfee Update' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Bad McAfee Update' to digg" alt="Add 'Bad McAfee Update' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Bad+McAfee+Update&amp;url=http://techjournal.318.com/security/bad-mcafee-update/&amp;version=0.7" title="Add 'Bad McAfee Update' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Bad McAfee Update' to Feed Me Links" alt="Add 'Bad McAfee Update' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/security/bad-mcafee-update/" title="Add 'Bad McAfee Update' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Bad McAfee Update' to Technorati" alt="Add 'Bad McAfee Update' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/security/bad-mcafee-update/&amp;t=Bad+McAfee+Update" title="Add 'Bad McAfee Update' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Bad McAfee Update' to Yahoo My Web" alt="Add 'Bad McAfee Update' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/security/bad-mcafee-update/&amp;h=Bad+McAfee+Update" title="Add 'Bad McAfee Update' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Bad McAfee Update' to Newsvine" alt="Add 'Bad McAfee Update' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/security/bad-mcafee-update/&amp;title=Bad+McAfee+Update" title="Add 'Bad McAfee Update' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'Bad McAfee Update' to Socializer" alt="Add 'Bad McAfee Update' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/security/bad-mcafee-update/&amp;title=Bad+McAfee+Update" title="Add 'Bad McAfee Update' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Bad McAfee Update' to Stumble Upon" alt="Add 'Bad McAfee Update' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/security/bad-mcafee-update/&amp;title=Bad+McAfee+Update" title="Add 'Bad McAfee Update' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Bad McAfee Update' to Google Bookmarks" alt="Add 'Bad McAfee Update' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/security/bad-mcafee-update/&amp;title=Bad+McAfee+Update" title="Add 'Bad McAfee Update' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'Bad McAfee Update' to OKnotizie" alt="Add 'Bad McAfee Update' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/security/bad-mcafee-update/&amp;T=Bad+McAfee+Update" title="Add 'Bad McAfee Update' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Bad McAfee Update' to Propeller" alt="Add 'Bad McAfee Update' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/security/bad-mcafee-update/" title="Add 'Bad McAfee Update' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'Bad McAfee Update' to Bookmark.it" alt="Add 'Bad McAfee Update' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Bad+McAfee+Update&amp;url=http://techjournal.318.com/security/bad-mcafee-update/" title="Add 'Bad McAfee Update' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'Bad McAfee Update' to Ask" alt="Add 'Bad McAfee Update' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/security/bad-mcafee-update/&amp;title=Bad+McAfee+Update" title="Add 'Bad McAfee Update' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Bad McAfee Update' to Live-MSN" alt="Add 'Bad McAfee Update' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Bad+McAfee+Update&amp;url=http://techjournal.318.com/security/bad-mcafee-update/" title="Add 'Bad McAfee Update' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Bad McAfee Update' to SlashDot" alt="Add 'Bad McAfee Update' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/security/bad-mcafee-update/&amp;t=Bad+McAfee+Update" title="Add 'Bad McAfee Update' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Bad McAfee Update' to FaceBook" alt="Add 'Bad McAfee Update' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/security/bad-mcafee-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Access File Shares from iPad</title>
		<link>http://techjournal.318.com/iphone/access-file-shares-from-ipad/</link>
		<comments>http://techjournal.318.com/iphone/access-file-shares-from-ipad/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 20:51:29 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=516</guid>
		<description><![CDATA[As the iPad eeks its way into businesses we&#8217;re starting to hear a very common question: How do I access my files on the server? While you can enable WebDAV on most modern file servers and access data that way, or look to the cloud, many simply want a way to tap into existing SMB [...]]]></description>
			<content:encoded><![CDATA[<p>As the iPad eeks its way into businesses we&#8217;re starting to hear a very common question: How do I access my files on the server? While you can enable WebDAV on most modern file servers and access data that way, or look to the cloud, many simply want a way to tap into existing SMB file shares. Well, you&#8217;re in luck!</p>
<p>Stratopherix (<a href="http://www.stratospherix.com">http://www.stratospherix.com</a>) has released <a href="http://itunes.apple.com/us/app/filebrowser-access-files-on/id364738545?mt=8">FileBrowser</a>, an application for the iPad that can mount a file share and provide access to the resources on the share. FileBrowser will allow you to connect to servers and then access files as you would from a regular desktop computer, wirelessly or over a network connection.</p>
<p><img class="aligncenter" title="Stratospherix FileBrowser for iPad" src="http://www.stratospherix.com/src/images/filebrowser_overview.png" alt="" width="287" height="240" /></p>
<p>If you find that you cannot access file shares once installed, then we have seen some policy issues on file servers (mostly those that do double-duty as a domain controller) or if you are remotely then you might need to either forward ports to the server or first establish a VPN into the environment. If you still cannot access them then contact your 318 account manager and we will be happy to assist with any needs you might have.</p>
<p>Happy File Browsing!</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/iphone/access-file-shares-from-ipad/&amp;title=Access+File+Shares+from+iPad" title="Add 'Access File Shares from iPad' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Access File Shares from iPad' to Del.icio.us" alt="Add 'Access File Shares from iPad' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/iphone/access-file-shares-from-ipad/&amp;title=Access+File+Shares+from+iPad" title="Add 'Access File Shares from iPad' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Access File Shares from iPad' to digg" alt="Add 'Access File Shares from iPad' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Access+File+Shares+from+iPad&amp;url=http://techjournal.318.com/iphone/access-file-shares-from-ipad/&amp;version=0.7" title="Add 'Access File Shares from iPad' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Access File Shares from iPad' to Feed Me Links" alt="Add 'Access File Shares from iPad' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/iphone/access-file-shares-from-ipad/" title="Add 'Access File Shares from iPad' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Access File Shares from iPad' to Technorati" alt="Add 'Access File Shares from iPad' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/iphone/access-file-shares-from-ipad/&amp;t=Access+File+Shares+from+iPad" title="Add 'Access File Shares from iPad' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Access File Shares from iPad' to Yahoo My Web" alt="Add 'Access File Shares from iPad' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/iphone/access-file-shares-from-ipad/&amp;h=Access+File+Shares+from+iPad" title="Add 'Access File Shares from iPad' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Access File Shares from iPad' to Newsvine" alt="Add 'Access File Shares from iPad' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/iphone/access-file-shares-from-ipad/&amp;title=Access+File+Shares+from+iPad" title="Add 'Access File Shares from iPad' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'Access File Shares from iPad' to Socializer" alt="Add 'Access File Shares from iPad' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/iphone/access-file-shares-from-ipad/&amp;title=Access+File+Shares+from+iPad" title="Add 'Access File Shares from iPad' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Access File Shares from iPad' to Stumble Upon" alt="Add 'Access File Shares from iPad' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/iphone/access-file-shares-from-ipad/&amp;title=Access+File+Shares+from+iPad" title="Add 'Access File Shares from iPad' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Access File Shares from iPad' to Google Bookmarks" alt="Add 'Access File Shares from iPad' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/iphone/access-file-shares-from-ipad/&amp;title=Access+File+Shares+from+iPad" title="Add 'Access File Shares from iPad' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'Access File Shares from iPad' to OKnotizie" alt="Add 'Access File Shares from iPad' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/iphone/access-file-shares-from-ipad/&amp;T=Access+File+Shares+from+iPad" title="Add 'Access File Shares from iPad' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Access File Shares from iPad' to Propeller" alt="Add 'Access File Shares from iPad' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/iphone/access-file-shares-from-ipad/" title="Add 'Access File Shares from iPad' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'Access File Shares from iPad' to Bookmark.it" alt="Add 'Access File Shares from iPad' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Access+File+Shares+from+iPad&amp;url=http://techjournal.318.com/iphone/access-file-shares-from-ipad/" title="Add 'Access File Shares from iPad' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'Access File Shares from iPad' to Ask" alt="Add 'Access File Shares from iPad' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/iphone/access-file-shares-from-ipad/&amp;title=Access+File+Shares+from+iPad" title="Add 'Access File Shares from iPad' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Access File Shares from iPad' to Live-MSN" alt="Add 'Access File Shares from iPad' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Access+File+Shares+from+iPad&amp;url=http://techjournal.318.com/iphone/access-file-shares-from-ipad/" title="Add 'Access File Shares from iPad' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Access File Shares from iPad' to SlashDot" alt="Add 'Access File Shares from iPad' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/iphone/access-file-shares-from-ipad/&amp;t=Access+File+Shares+from+iPad" title="Add 'Access File Shares from iPad' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Access File Shares from iPad' to FaceBook" alt="Add 'Access File Shares from iPad' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/iphone/access-file-shares-from-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad is Now Here!</title>
		<link>http://techjournal.318.com/mac-os-x/ipad-is-now-here/</link>
		<comments>http://techjournal.318.com/mac-os-x/ipad-is-now-here/#comments</comments>
		<pubDate>Sat, 03 Apr 2010 14:23:11 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=514</guid>
		<description><![CDATA[The iPad is finally here!  While many will be standing in lines for hours at Apple stores around the country, you can also contact 318 and we will work with you to get an order processed without having the long wait. 318 has also been working with many customers preparing to deploy the iPad, and [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">The iPad is finally here! <img class="aligncenter" title="iPad" src="http://images.apple.com/home/images/ipad_hero_20100403.png" alt="" width="400" height="200" /></p>
<p style="text-align: left;">While many will be standing in lines for hours at Apple stores around the country, you can also contact 318 and we will work with you to get an order processed without having the long wait. 318 has also been working with many customers preparing to deploy the iPad, and so if you have Exchange integration or mass deployment questions please feel free to contact your account manager today, or for new customers, the office at 310-581-9500.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/mac-os-x/ipad-is-now-here/&amp;title=iPad+is+Now+Here%21" title="Add 'iPad is Now Here!' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'iPad is Now Here!' to Del.icio.us" alt="Add 'iPad is Now Here!' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/mac-os-x/ipad-is-now-here/&amp;title=iPad+is+Now+Here%21" title="Add 'iPad is Now Here!' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'iPad is Now Here!' to digg" alt="Add 'iPad is Now Here!' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=iPad+is+Now+Here%21&amp;url=http://techjournal.318.com/mac-os-x/ipad-is-now-here/&amp;version=0.7" title="Add 'iPad is Now Here!' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'iPad is Now Here!' to Feed Me Links" alt="Add 'iPad is Now Here!' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/mac-os-x/ipad-is-now-here/" title="Add 'iPad is Now Here!' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'iPad is Now Here!' to Technorati" alt="Add 'iPad is Now Here!' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/mac-os-x/ipad-is-now-here/&amp;t=iPad+is+Now+Here%21" title="Add 'iPad is Now Here!' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'iPad is Now Here!' to Yahoo My Web" alt="Add 'iPad is Now Here!' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/mac-os-x/ipad-is-now-here/&amp;h=iPad+is+Now+Here%21" title="Add 'iPad is Now Here!' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'iPad is Now Here!' to Newsvine" alt="Add 'iPad is Now Here!' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/mac-os-x/ipad-is-now-here/&amp;title=iPad+is+Now+Here%21" title="Add 'iPad is Now Here!' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'iPad is Now Here!' to Socializer" alt="Add 'iPad is Now Here!' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/mac-os-x/ipad-is-now-here/&amp;title=iPad+is+Now+Here%21" title="Add 'iPad is Now Here!' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'iPad is Now Here!' to Stumble Upon" alt="Add 'iPad is Now Here!' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/mac-os-x/ipad-is-now-here/&amp;title=iPad+is+Now+Here%21" title="Add 'iPad is Now Here!' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'iPad is Now Here!' to Google Bookmarks" alt="Add 'iPad is Now Here!' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/mac-os-x/ipad-is-now-here/&amp;title=iPad+is+Now+Here%21" title="Add 'iPad is Now Here!' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'iPad is Now Here!' to OKnotizie" alt="Add 'iPad is Now Here!' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/mac-os-x/ipad-is-now-here/&amp;T=iPad+is+Now+Here%21" title="Add 'iPad is Now Here!' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'iPad is Now Here!' to Propeller" alt="Add 'iPad is Now Here!' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/mac-os-x/ipad-is-now-here/" title="Add 'iPad is Now Here!' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'iPad is Now Here!' to Bookmark.it" alt="Add 'iPad is Now Here!' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=iPad+is+Now+Here%21&amp;url=http://techjournal.318.com/mac-os-x/ipad-is-now-here/" title="Add 'iPad is Now Here!' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'iPad is Now Here!' to Ask" alt="Add 'iPad is Now Here!' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/mac-os-x/ipad-is-now-here/&amp;title=iPad+is+Now+Here%21" title="Add 'iPad is Now Here!' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'iPad is Now Here!' to Live-MSN" alt="Add 'iPad is Now Here!' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=iPad+is+Now+Here%21&amp;url=http://techjournal.318.com/mac-os-x/ipad-is-now-here/" title="Add 'iPad is Now Here!' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'iPad is Now Here!' to SlashDot" alt="Add 'iPad is Now Here!' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/mac-os-x/ipad-is-now-here/&amp;t=iPad+is+Now+Here%21" title="Add 'iPad is Now Here!' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'iPad is Now Here!' to FaceBook" alt="Add 'iPad is Now Here!' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/mac-os-x/ipad-is-now-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10.6.3 Is Out</title>
		<link>http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/</link>
		<comments>http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 17:34:34 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Mac OS X Server]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=511</guid>
		<description><![CDATA[For those who have had issues with Samba saving to file shares hosted on Windows Server, EMC or NetApp targets from within Microsoft Office (amongst other minor issues), you&#8217;ll be happy to note that Mac OS X 10.6.3 and Mac OS X Server 10.6.3 are now available for download. You can run softwareupdate to pick [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">For those who have had issues with Samba saving to file shares hosted on Windows Server, EMC or NetApp targets from within Microsoft Office (amongst other minor issues), you&#8217;ll be happy to note that Mac OS X 10.6.3 and Mac OS X Server 10.6.3 are now available for download. You can run softwareupdate to pick up the updates, or to download the updates manually see the links below:</p>
<p style="text-align: center;"><a href="http://support.apple.com/kb/HT4014">Mac OS X Client</a><br />
<a href="http://support.apple.com/kb/HT4015">Mac OS X Server</a></p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/&amp;title=10.6.3+Is+Out" title="Add '10.6.3 Is Out' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add '10.6.3 Is Out' to Del.icio.us" alt="Add '10.6.3 Is Out' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/&amp;title=10.6.3+Is+Out" title="Add '10.6.3 Is Out' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add '10.6.3 Is Out' to digg" alt="Add '10.6.3 Is Out' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=10.6.3+Is+Out&amp;url=http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/&amp;version=0.7" title="Add '10.6.3 Is Out' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add '10.6.3 Is Out' to Feed Me Links" alt="Add '10.6.3 Is Out' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/" title="Add '10.6.3 Is Out' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add '10.6.3 Is Out' to Technorati" alt="Add '10.6.3 Is Out' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/&amp;t=10.6.3+Is+Out" title="Add '10.6.3 Is Out' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add '10.6.3 Is Out' to Yahoo My Web" alt="Add '10.6.3 Is Out' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/&amp;h=10.6.3+Is+Out" title="Add '10.6.3 Is Out' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add '10.6.3 Is Out' to Newsvine" alt="Add '10.6.3 Is Out' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/&amp;title=10.6.3+Is+Out" title="Add '10.6.3 Is Out' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add '10.6.3 Is Out' to Socializer" alt="Add '10.6.3 Is Out' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/&amp;title=10.6.3+Is+Out" title="Add '10.6.3 Is Out' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add '10.6.3 Is Out' to Stumble Upon" alt="Add '10.6.3 Is Out' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/&amp;title=10.6.3+Is+Out" title="Add '10.6.3 Is Out' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add '10.6.3 Is Out' to Google Bookmarks" alt="Add '10.6.3 Is Out' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/&amp;title=10.6.3+Is+Out" title="Add '10.6.3 Is Out' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add '10.6.3 Is Out' to OKnotizie" alt="Add '10.6.3 Is Out' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/&amp;T=10.6.3+Is+Out" title="Add '10.6.3 Is Out' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add '10.6.3 Is Out' to Propeller" alt="Add '10.6.3 Is Out' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/" title="Add '10.6.3 Is Out' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add '10.6.3 Is Out' to Bookmark.it" alt="Add '10.6.3 Is Out' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=10.6.3+Is+Out&amp;url=http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/" title="Add '10.6.3 Is Out' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add '10.6.3 Is Out' to Ask" alt="Add '10.6.3 Is Out' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/&amp;title=10.6.3+Is+Out" title="Add '10.6.3 Is Out' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add '10.6.3 Is Out' to Live-MSN" alt="Add '10.6.3 Is Out' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=10.6.3+Is+Out&amp;url=http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/" title="Add '10.6.3 Is Out' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add '10.6.3 Is Out' to SlashDot" alt="Add '10.6.3 Is Out' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/&amp;t=10.6.3+Is+Out" title="Add '10.6.3 Is Out' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add '10.6.3 Is Out' to FaceBook" alt="Add '10.6.3 Is Out' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/mac-os-x-server/10-6-3-is-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0 on the Horizon</title>
		<link>http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/</link>
		<comments>http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 14:30:10 +0000</pubDate>
		<dc:creator>DK</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=502</guid>
		<description><![CDATA[According to the current project schedule, WordPress 3.0 will hit the release candidate milestone next month, with a target release date of May 1, 2010. Lots of people have been writing about the new features of this release, but here are some of the highlights from the official list: The merge with WordPress Multi-User (and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org"><img src="http://techjournal.318.com/wp-content/uploads/2010/03/WordPressLogo.jpg" alt="" title="WordPressLogo" width="63" height="74" class="alignleft size-full wp-image-505" /></a>According to the current <a href="http://wpdevel.wordpress.com/version-3-0-project-schedule/">project schedule</a>, WordPress 3.0 will hit the release candidate milestone next month, with a target release date of May 1, 2010. Lots of people have been writing about the new features of this release, but here are some of the highlights from the <a href="http://codex.wordpress.org/Version_3.0#Development.2C_Themes.2C_Plugins">official list</a>:</p>
<ul>
<li>The merge with WordPress Multi-User (and multisite capabilities)</li>
<li>Better support for custom post types</li>
<li>Better menu management</li>
<li>New default theme &#8220;Twenty Ten&#8221; (<a href="http://2010dev.wordpress.com/">preview here</a>)</li>
<li>Custom Navigation</li>
<li>Custom Backgrounds</li>
<li>Choose username for the first account, rather than using &#8216;admin&#8217;</li>
<li>New template files for custom post types</li>
<li>Author specific templates</li>
<li>jQuery updated to 1.4.2</li>
</ul>
<p>The code merge between &#8220;normal&#8221; WordPress and WordPress MU is a major undertaking. This will also allow <a href="http://buddypress.org/">BuddyPress</a> to officially be installed on non-multiuser sites. The new default theme and ability to easily modify backgrounds should allow non-designers to create a nice custom site without having to know too much about theme design. The <a href="http://www.woothemes.com/2010/01/the-awesome-custom-woo-navigation/">WooNav</a> addition looks great and the elimination of the default admin user is something we talked about in our last post on WordPress security.</p>
<p>This will be a major release that should be tested in a non-production environment before being deployed on your server. 318 will be ready to help you with this upgrade when it&#8217;s released &#8211; call us at 877.318.1318 to schedule an appointment today!</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/&amp;title=WordPress+3.0+on+the+Horizon" title="Add 'WordPress 3.0 on the Horizon' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'WordPress 3.0 on the Horizon' to Del.icio.us" alt="Add 'WordPress 3.0 on the Horizon' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/&amp;title=WordPress+3.0+on+the+Horizon" title="Add 'WordPress 3.0 on the Horizon' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'WordPress 3.0 on the Horizon' to digg" alt="Add 'WordPress 3.0 on the Horizon' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=WordPress+3.0+on+the+Horizon&amp;url=http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/&amp;version=0.7" title="Add 'WordPress 3.0 on the Horizon' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'WordPress 3.0 on the Horizon' to Feed Me Links" alt="Add 'WordPress 3.0 on the Horizon' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/" title="Add 'WordPress 3.0 on the Horizon' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'WordPress 3.0 on the Horizon' to Technorati" alt="Add 'WordPress 3.0 on the Horizon' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/&amp;t=WordPress+3.0+on+the+Horizon" title="Add 'WordPress 3.0 on the Horizon' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'WordPress 3.0 on the Horizon' to Yahoo My Web" alt="Add 'WordPress 3.0 on the Horizon' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/&amp;h=WordPress+3.0+on+the+Horizon" title="Add 'WordPress 3.0 on the Horizon' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'WordPress 3.0 on the Horizon' to Newsvine" alt="Add 'WordPress 3.0 on the Horizon' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/&amp;title=WordPress+3.0+on+the+Horizon" title="Add 'WordPress 3.0 on the Horizon' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'WordPress 3.0 on the Horizon' to Socializer" alt="Add 'WordPress 3.0 on the Horizon' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/&amp;title=WordPress+3.0+on+the+Horizon" title="Add 'WordPress 3.0 on the Horizon' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'WordPress 3.0 on the Horizon' to Stumble Upon" alt="Add 'WordPress 3.0 on the Horizon' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/&amp;title=WordPress+3.0+on+the+Horizon" title="Add 'WordPress 3.0 on the Horizon' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'WordPress 3.0 on the Horizon' to Google Bookmarks" alt="Add 'WordPress 3.0 on the Horizon' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/&amp;title=WordPress+3.0+on+the+Horizon" title="Add 'WordPress 3.0 on the Horizon' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'WordPress 3.0 on the Horizon' to OKnotizie" alt="Add 'WordPress 3.0 on the Horizon' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/&amp;T=WordPress+3.0+on+the+Horizon" title="Add 'WordPress 3.0 on the Horizon' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'WordPress 3.0 on the Horizon' to Propeller" alt="Add 'WordPress 3.0 on the Horizon' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/" title="Add 'WordPress 3.0 on the Horizon' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'WordPress 3.0 on the Horizon' to Bookmark.it" alt="Add 'WordPress 3.0 on the Horizon' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=WordPress+3.0+on+the+Horizon&amp;url=http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/" title="Add 'WordPress 3.0 on the Horizon' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'WordPress 3.0 on the Horizon' to Ask" alt="Add 'WordPress 3.0 on the Horizon' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/&amp;title=WordPress+3.0+on+the+Horizon" title="Add 'WordPress 3.0 on the Horizon' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'WordPress 3.0 on the Horizon' to Live-MSN" alt="Add 'WordPress 3.0 on the Horizon' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=WordPress+3.0+on+the+Horizon&amp;url=http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/" title="Add 'WordPress 3.0 on the Horizon' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'WordPress 3.0 on the Horizon' to SlashDot" alt="Add 'WordPress 3.0 on the Horizon' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/&amp;t=WordPress+3.0+on+the+Horizon" title="Add 'WordPress 3.0 on the Horizon' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'WordPress 3.0 on the Horizon' to FaceBook" alt="Add 'WordPress 3.0 on the Horizon' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/web-development/wordpress-3-0-on-the-horizon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Security Auditing</title>
		<link>http://techjournal.318.com/security/wordpress-security-auditing/</link>
		<comments>http://techjournal.318.com/security/wordpress-security-auditing/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 21:46:22 +0000</pubDate>
		<dc:creator>DK</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=486</guid>
		<description><![CDATA[After reading Sarah Gooding&#8217;s WPMU.org article, 7 Quick Strategies to Beef Up Your Security, we decided to take a look at our own WordPress settings here on the 318 Tech Journal. Deleting the Default Admin User Creating a new user with admin permissions, then logging in as that user and deleting the default &#8220;admin&#8221; account [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org"><img src="http://techjournal.318.com/wp-content/uploads/2010/03/WordPressOrg.gif" alt="" title="WordPressOrg" width="445" height="63" class="alignnone size-full wp-image-488" /></a></p>
<p>After reading Sarah Gooding&#8217;s <a href="http://wpmu.org/">WPMU.org</a> article, <em><a href="http://wpmu.org/rock-solid-wordpress-7-quick-strategies-to-beef-up-your-security/">7 Quick Strategies to Beef Up Your Security</a></em>, we decided to take a look at our own WordPress settings here on the 318 Tech Journal.</p>
<p><strong>Deleting the Default Admin User</strong></p>
<p>Creating a new user with admin permissions, then logging in as that user and deleting the default &#8220;admin&#8221; account is great advice. Just make sure you assign all of the old admin users posts and links to the new account. Another caveat, if you are using the WPG2 plugin with a Gallery2 installation, make sure to remove the Gallery2 user links before deleting the old admin account.</p>
<p><strong>Don&#8217;t Use the Default &#8220;wp_&#8221; Table Prefix</strong></p>
<p>SQL injection attacks are very real, and this tip can help mitigate risk of infection. The <a href="http://wordpress.org/extend/plugins/wp-security-scan/">WP Security Scan</a> plug-in mentioned in the WPMU.org article has a built-in tool to help automate this change, but it can also lock you out of your dashboard. The trick is to make sure each user&#8217;s meta_key settings in the usermeta table match whatever prefix you choose:</p>
<blockquote><p>wp_capabilities &#8211;> newprefix_capabilities<br />wp_usersettings &#8211;> newprefix_usersettings<br />wp_usersettingstime &#8211;> newprefix_usersettingstime<br/ >wp_user_level &#8211;> newprefix_user_level</p></blockquote>
<p><strong>Whitelisting Access to wp-admin by IP Address</strong></p>
<p>This is typically done via .htaccess files and the <a href="http://wordpress.org/extend/plugins/askapache-password-protect/">AskApache Password Protection For WordPress</a> plug-in mentioned in the WPMU.org article can help get the settings correct, although that plug-in has specific server requirements in order to run (it will run some tests for you to see if your server qualifies). If you do set this up, beware of dynamic IP address changes, which can lock you out in the future.</p>
<p><strong>Other Items to Consider</strong></p>
<ul>
<li>Consider using a local MySQL application like <a href="http://www.sequelpro.com/">Sequel Pro</a> or the command line mysql tools for database configuration instead of public web-facing tools like <a href="http://www.phpmyadmin.net/">phpMyAdmin</a>. If you do use PMA, you should lock down access as much as possible using .htaccess controls (or other methods).</li>
<li>Tools like the <a href="http://wordpress.org/extend/plugins/wp-security-scan/">WP Security Scan</a> plug-in mentioned above or Donncha O Caoimh&#8217;s <a href="http://wordpress.org/extend/plugins/exploit-scanner/">WordPress Exploit Scanner</a> plug-in can help identify file permission issues in your WordPress setup.</li>
<li>Using SSH/SFTP instead of FTP to access your server is always good advice, even when you are using whitelists.</li>
<li>Stay up to date on both WordPress core files <em>and</em> all of your plug-ins.</li>
</ul>
<p>318 is here to help you with all of your WordPress needs &#8211; call us today at 877.318.1318!</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/security/wordpress-security-auditing/&amp;title=WordPress+Security+Auditing" title="Add 'WordPress Security Auditing' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'WordPress Security Auditing' to Del.icio.us" alt="Add 'WordPress Security Auditing' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/security/wordpress-security-auditing/&amp;title=WordPress+Security+Auditing" title="Add 'WordPress Security Auditing' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'WordPress Security Auditing' to digg" alt="Add 'WordPress Security Auditing' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=WordPress+Security+Auditing&amp;url=http://techjournal.318.com/security/wordpress-security-auditing/&amp;version=0.7" title="Add 'WordPress Security Auditing' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'WordPress Security Auditing' to Feed Me Links" alt="Add 'WordPress Security Auditing' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/security/wordpress-security-auditing/" title="Add 'WordPress Security Auditing' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'WordPress Security Auditing' to Technorati" alt="Add 'WordPress Security Auditing' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/security/wordpress-security-auditing/&amp;t=WordPress+Security+Auditing" title="Add 'WordPress Security Auditing' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'WordPress Security Auditing' to Yahoo My Web" alt="Add 'WordPress Security Auditing' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/security/wordpress-security-auditing/&amp;h=WordPress+Security+Auditing" title="Add 'WordPress Security Auditing' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'WordPress Security Auditing' to Newsvine" alt="Add 'WordPress Security Auditing' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/security/wordpress-security-auditing/&amp;title=WordPress+Security+Auditing" title="Add 'WordPress Security Auditing' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'WordPress Security Auditing' to Socializer" alt="Add 'WordPress Security Auditing' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/security/wordpress-security-auditing/&amp;title=WordPress+Security+Auditing" title="Add 'WordPress Security Auditing' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'WordPress Security Auditing' to Stumble Upon" alt="Add 'WordPress Security Auditing' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/security/wordpress-security-auditing/&amp;title=WordPress+Security+Auditing" title="Add 'WordPress Security Auditing' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'WordPress Security Auditing' to Google Bookmarks" alt="Add 'WordPress Security Auditing' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/security/wordpress-security-auditing/&amp;title=WordPress+Security+Auditing" title="Add 'WordPress Security Auditing' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'WordPress Security Auditing' to OKnotizie" alt="Add 'WordPress Security Auditing' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/security/wordpress-security-auditing/&amp;T=WordPress+Security+Auditing" title="Add 'WordPress Security Auditing' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'WordPress Security Auditing' to Propeller" alt="Add 'WordPress Security Auditing' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/security/wordpress-security-auditing/" title="Add 'WordPress Security Auditing' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'WordPress Security Auditing' to Bookmark.it" alt="Add 'WordPress Security Auditing' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=WordPress+Security+Auditing&amp;url=http://techjournal.318.com/security/wordpress-security-auditing/" title="Add 'WordPress Security Auditing' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'WordPress Security Auditing' to Ask" alt="Add 'WordPress Security Auditing' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/security/wordpress-security-auditing/&amp;title=WordPress+Security+Auditing" title="Add 'WordPress Security Auditing' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'WordPress Security Auditing' to Live-MSN" alt="Add 'WordPress Security Auditing' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=WordPress+Security+Auditing&amp;url=http://techjournal.318.com/security/wordpress-security-auditing/" title="Add 'WordPress Security Auditing' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'WordPress Security Auditing' to SlashDot" alt="Add 'WordPress Security Auditing' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/security/wordpress-security-auditing/&amp;t=WordPress+Security+Auditing" title="Add 'WordPress Security Auditing' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'WordPress Security Auditing' to FaceBook" alt="Add 'WordPress Security Auditing' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/security/wordpress-security-auditing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Follow us on Twitter</title>
		<link>http://techjournal.318.com/general-technology/follow-us-on-twitter/</link>
		<comments>http://techjournal.318.com/general-technology/follow-us-on-twitter/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 22:47:56 +0000</pubDate>
		<dc:creator>Joel Cowgill</dc:creator>
				<category><![CDATA[General Technology]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=484</guid>
		<description><![CDATA[Follow 318 on Twitter Link To:]]></description>
			<content:encoded><![CDATA[<p>Follow 318 on <a title="Twitter" href="http://www.twitter.com/318inc" target="_blank">Twitter</a></p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/general-technology/follow-us-on-twitter/&amp;title=Follow+us+on+Twitter" title="Add 'Follow us on Twitter' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Follow us on Twitter' to Del.icio.us" alt="Add 'Follow us on Twitter' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/general-technology/follow-us-on-twitter/&amp;title=Follow+us+on+Twitter" title="Add 'Follow us on Twitter' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Follow us on Twitter' to digg" alt="Add 'Follow us on Twitter' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Follow+us+on+Twitter&amp;url=http://techjournal.318.com/general-technology/follow-us-on-twitter/&amp;version=0.7" title="Add 'Follow us on Twitter' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Follow us on Twitter' to Feed Me Links" alt="Add 'Follow us on Twitter' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/general-technology/follow-us-on-twitter/" title="Add 'Follow us on Twitter' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Follow us on Twitter' to Technorati" alt="Add 'Follow us on Twitter' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/general-technology/follow-us-on-twitter/&amp;t=Follow+us+on+Twitter" title="Add 'Follow us on Twitter' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Follow us on Twitter' to Yahoo My Web" alt="Add 'Follow us on Twitter' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/general-technology/follow-us-on-twitter/&amp;h=Follow+us+on+Twitter" title="Add 'Follow us on Twitter' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Follow us on Twitter' to Newsvine" alt="Add 'Follow us on Twitter' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/general-technology/follow-us-on-twitter/&amp;title=Follow+us+on+Twitter" title="Add 'Follow us on Twitter' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'Follow us on Twitter' to Socializer" alt="Add 'Follow us on Twitter' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/general-technology/follow-us-on-twitter/&amp;title=Follow+us+on+Twitter" title="Add 'Follow us on Twitter' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Follow us on Twitter' to Stumble Upon" alt="Add 'Follow us on Twitter' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/general-technology/follow-us-on-twitter/&amp;title=Follow+us+on+Twitter" title="Add 'Follow us on Twitter' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Follow us on Twitter' to Google Bookmarks" alt="Add 'Follow us on Twitter' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/general-technology/follow-us-on-twitter/&amp;title=Follow+us+on+Twitter" title="Add 'Follow us on Twitter' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'Follow us on Twitter' to OKnotizie" alt="Add 'Follow us on Twitter' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/general-technology/follow-us-on-twitter/&amp;T=Follow+us+on+Twitter" title="Add 'Follow us on Twitter' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Follow us on Twitter' to Propeller" alt="Add 'Follow us on Twitter' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/general-technology/follow-us-on-twitter/" title="Add 'Follow us on Twitter' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'Follow us on Twitter' to Bookmark.it" alt="Add 'Follow us on Twitter' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Follow+us+on+Twitter&amp;url=http://techjournal.318.com/general-technology/follow-us-on-twitter/" title="Add 'Follow us on Twitter' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'Follow us on Twitter' to Ask" alt="Add 'Follow us on Twitter' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/general-technology/follow-us-on-twitter/&amp;title=Follow+us+on+Twitter" title="Add 'Follow us on Twitter' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Follow us on Twitter' to Live-MSN" alt="Add 'Follow us on Twitter' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Follow+us+on+Twitter&amp;url=http://techjournal.318.com/general-technology/follow-us-on-twitter/" title="Add 'Follow us on Twitter' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Follow us on Twitter' to SlashDot" alt="Add 'Follow us on Twitter' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/general-technology/follow-us-on-twitter/&amp;t=Follow+us+on+Twitter" title="Add 'Follow us on Twitter' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Follow us on Twitter' to FaceBook" alt="Add 'Follow us on Twitter' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/general-technology/follow-us-on-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visit our booth at Macworld 2010</title>
		<link>http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/</link>
		<comments>http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 19:08:50 +0000</pubDate>
		<dc:creator>Joel Cowgill</dc:creator>
				<category><![CDATA[General Technology]]></category>

		<guid isPermaLink="false">http://techjournal.318.com/?p=480</guid>
		<description><![CDATA[Come visit our booth at Macworld 2010 on the expo floor. We are located in Booth 566C and have a bunch of free schwag to give out. We also have a number of sessions this year: Hands-on Snow Leopard Server: Collaboration Services with Charles Edge 2/10 &#8211; 1:00PM to 3:00PM Push: The Next Generation of [...]]]></description>
			<content:encoded><![CDATA[<p>Come visit our booth at Macworld 2010 on the expo floor. We are located in <strong><span style="color: #0000ff;">Booth 566C</span></strong> and have a bunch of free schwag to give out.</p>
<p>We also have a number of sessions this year:</p>
<p><strong>Hands-on Snow Leopard Server: Collaboration Services</strong> with Charles Edge<br />
2/10 &#8211; 1:00PM to 3:00PM</p>
<p><strong>Push: The Next Generation of Collaboration is Snow Leopard Server</strong> with Charles Edge<br />
2/11 &#8211; 4:30PM to 6:00PM</p>
<p><strong>Advanced Integration with Final Cut Server</strong> with Beau Hunter<br />
2/12 &#8211; 3:30PM to 5:00PM</p>
<p><strong>iPhone Mass Deployment</strong> with Zack Smith<br />
2/13 &#8211; 2:30PM to 4:00PM</p>
<p>We hope to see you there!</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/&amp;title=Visit+our+booth+at+Macworld+2010" title="Add 'Visit our booth at Macworld 2010' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Visit our booth at Macworld 2010' to Del.icio.us" alt="Add 'Visit our booth at Macworld 2010' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/&amp;title=Visit+our+booth+at+Macworld+2010" title="Add 'Visit our booth at Macworld 2010' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Visit our booth at Macworld 2010' to digg" alt="Add 'Visit our booth at Macworld 2010' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Visit+our+booth+at+Macworld+2010&amp;url=http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/&amp;version=0.7" title="Add 'Visit our booth at Macworld 2010' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Visit our booth at Macworld 2010' to Feed Me Links" alt="Add 'Visit our booth at Macworld 2010' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/" title="Add 'Visit our booth at Macworld 2010' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Visit our booth at Macworld 2010' to Technorati" alt="Add 'Visit our booth at Macworld 2010' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/&amp;t=Visit+our+booth+at+Macworld+2010" title="Add 'Visit our booth at Macworld 2010' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Visit our booth at Macworld 2010' to Yahoo My Web" alt="Add 'Visit our booth at Macworld 2010' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/&amp;h=Visit+our+booth+at+Macworld+2010" title="Add 'Visit our booth at Macworld 2010' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Visit our booth at Macworld 2010' to Newsvine" alt="Add 'Visit our booth at Macworld 2010' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/&amp;title=Visit+our+booth+at+Macworld+2010" title="Add 'Visit our booth at Macworld 2010' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'Visit our booth at Macworld 2010' to Socializer" alt="Add 'Visit our booth at Macworld 2010' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/&amp;title=Visit+our+booth+at+Macworld+2010" title="Add 'Visit our booth at Macworld 2010' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Visit our booth at Macworld 2010' to Stumble Upon" alt="Add 'Visit our booth at Macworld 2010' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/&amp;title=Visit+our+booth+at+Macworld+2010" title="Add 'Visit our booth at Macworld 2010' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Visit our booth at Macworld 2010' to Google Bookmarks" alt="Add 'Visit our booth at Macworld 2010' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/&amp;title=Visit+our+booth+at+Macworld+2010" title="Add 'Visit our booth at Macworld 2010' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'Visit our booth at Macworld 2010' to OKnotizie" alt="Add 'Visit our booth at Macworld 2010' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/&amp;T=Visit+our+booth+at+Macworld+2010" title="Add 'Visit our booth at Macworld 2010' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Visit our booth at Macworld 2010' to Propeller" alt="Add 'Visit our booth at Macworld 2010' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/" title="Add 'Visit our booth at Macworld 2010' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'Visit our booth at Macworld 2010' to Bookmark.it" alt="Add 'Visit our booth at Macworld 2010' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Visit+our+booth+at+Macworld+2010&amp;url=http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/" title="Add 'Visit our booth at Macworld 2010' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'Visit our booth at Macworld 2010' to Ask" alt="Add 'Visit our booth at Macworld 2010' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/&amp;title=Visit+our+booth+at+Macworld+2010" title="Add 'Visit our booth at Macworld 2010' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Visit our booth at Macworld 2010' to Live-MSN" alt="Add 'Visit our booth at Macworld 2010' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Visit+our+booth+at+Macworld+2010&amp;url=http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/" title="Add 'Visit our booth at Macworld 2010' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Visit our booth at Macworld 2010' to SlashDot" alt="Add 'Visit our booth at Macworld 2010' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/&amp;t=Visit+our+booth+at+Macworld+2010" title="Add 'Visit our booth at Macworld 2010' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Visit our booth at Macworld 2010' to FaceBook" alt="Add 'Visit our booth at Macworld 2010' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/general-technology/visit-our-booth-at-macworld-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screen Saver for Background Video</title>
		<link>http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/</link>
		<comments>http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 14:41:48 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.318.com/techjournal/?p=472</guid>
		<description><![CDATA[Link To:]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="295" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/xmXJo_KPDG0&amp;hl=en_US&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e9e00" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="295" src="http://www.youtube.com/v/xmXJo_KPDG0&amp;hl=en_US&amp;fs=1&amp;color1=0x234900&amp;color2=0x4e9e00" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/&amp;title=Screen+Saver+for+Background+Video" title="Add 'Screen Saver for Background Video' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Screen Saver for Background Video' to Del.icio.us" alt="Add 'Screen Saver for Background Video' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/&amp;title=Screen+Saver+for+Background+Video" title="Add 'Screen Saver for Background Video' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Screen Saver for Background Video' to digg" alt="Add 'Screen Saver for Background Video' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Screen+Saver+for+Background+Video&amp;url=http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/&amp;version=0.7" title="Add 'Screen Saver for Background Video' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Screen Saver for Background Video' to Feed Me Links" alt="Add 'Screen Saver for Background Video' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/" title="Add 'Screen Saver for Background Video' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Screen Saver for Background Video' to Technorati" alt="Add 'Screen Saver for Background Video' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/&amp;t=Screen+Saver+for+Background+Video" title="Add 'Screen Saver for Background Video' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Screen Saver for Background Video' to Yahoo My Web" alt="Add 'Screen Saver for Background Video' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/&amp;h=Screen+Saver+for+Background+Video" title="Add 'Screen Saver for Background Video' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Screen Saver for Background Video' to Newsvine" alt="Add 'Screen Saver for Background Video' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/&amp;title=Screen+Saver+for+Background+Video" title="Add 'Screen Saver for Background Video' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'Screen Saver for Background Video' to Socializer" alt="Add 'Screen Saver for Background Video' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/&amp;title=Screen+Saver+for+Background+Video" title="Add 'Screen Saver for Background Video' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Screen Saver for Background Video' to Stumble Upon" alt="Add 'Screen Saver for Background Video' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/&amp;title=Screen+Saver+for+Background+Video" title="Add 'Screen Saver for Background Video' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Screen Saver for Background Video' to Google Bookmarks" alt="Add 'Screen Saver for Background Video' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/&amp;title=Screen+Saver+for+Background+Video" title="Add 'Screen Saver for Background Video' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'Screen Saver for Background Video' to OKnotizie" alt="Add 'Screen Saver for Background Video' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/&amp;T=Screen+Saver+for+Background+Video" title="Add 'Screen Saver for Background Video' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Screen Saver for Background Video' to Propeller" alt="Add 'Screen Saver for Background Video' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/" title="Add 'Screen Saver for Background Video' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'Screen Saver for Background Video' to Bookmark.it" alt="Add 'Screen Saver for Background Video' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Screen+Saver+for+Background+Video&amp;url=http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/" title="Add 'Screen Saver for Background Video' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'Screen Saver for Background Video' to Ask" alt="Add 'Screen Saver for Background Video' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/&amp;title=Screen+Saver+for+Background+Video" title="Add 'Screen Saver for Background Video' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Screen Saver for Background Video' to Live-MSN" alt="Add 'Screen Saver for Background Video' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Screen+Saver+for+Background+Video&amp;url=http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/" title="Add 'Screen Saver for Background Video' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Screen Saver for Background Video' to SlashDot" alt="Add 'Screen Saver for Background Video' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/&amp;t=Screen+Saver+for+Background+Video" title="Add 'Screen Saver for Background Video' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Screen Saver for Background Video' to FaceBook" alt="Add 'Screen Saver for Background Video' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/mac-os-x/screen-saver-for-background-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;And Now For Something Completely Different&#8221;</title>
		<link>http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/</link>
		<comments>http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 20:19:15 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.318.com/techjournal/?p=465</guid>
		<description><![CDATA[This week, Apple launched their newest product: the iPad. The sleek iPad is a revolutionary new look at the NetBook, but able to run most of the 140,000 applications that are in the App Store for the iPhone. Given the popularity of the App Store so far and the new development methods introduced for the [...]]]></description>
			<content:encoded><![CDATA[<p>This week, Apple launched their newest product: the iPad. The sleek iPad is a revolutionary new look at the NetBook, but able to run most of the 140,000 applications that are in the App Store for the iPhone. Given the popularity of the App Store so far and the new development methods introduced for the iPad you can rest assured that even more feature rich applications will be developed for the iPad as time goes on. Not that Apple hasn&#8217;t led the charge in using the new iPad APIs: iWork has been ported to the iPad. This means that you can create rich Pages, Numbers and Keynote presentations in addition to interacting with a number of cloud based services and leveraging those existing iPhone applications.<br />
<br /><a href="http://www.318.com/techjournal/wp-content/uploads/2010/01/m.jpg"><img class="aligncenter size-medium wp-image-467" title="m" src="http://www.318.com/techjournal/wp-content/uploads/2010/01/m-300x201.jpg" alt="" width="300" height="201" /></a><br />
The iPad is aluminum and glass, comes with up to 64GB of space, a multi-touch LED screen, 802.11n, Bluetooth and can have a 3G data connection for only $29.99 per month. All of this in a secure, easy-to-use interface that we&#8217;ve all grown accustomed to!</p>
<p>Want help integrating the iPad into your Enterprise? Let 318 know if you have interest with mass deployment, purchasing or development: our developers are on hand to work with you on commercial and enterprise applications as needed!</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/&amp;title=%26%238220%3BAnd+Now+For+Something+Completely+Different%26%238221%3B" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Del.icio.us" alt="Add '&#8220;And Now For Something Completely Different&#8221;' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/&amp;title=%26%238220%3BAnd+Now+For+Something+Completely+Different%26%238221%3B" title="Add '&#8220;And Now For Something Completely Different&#8221;' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add '&#8220;And Now For Something Completely Different&#8221;' to digg" alt="Add '&#8220;And Now For Something Completely Different&#8221;' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=%26%238220%3BAnd+Now+For+Something+Completely+Different%26%238221%3B&amp;url=http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/&amp;version=0.7" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Feed Me Links" alt="Add '&#8220;And Now For Something Completely Different&#8221;' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Technorati" alt="Add '&#8220;And Now For Something Completely Different&#8221;' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/&amp;t=%26%238220%3BAnd+Now+For+Something+Completely+Different%26%238221%3B" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Yahoo My Web" alt="Add '&#8220;And Now For Something Completely Different&#8221;' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/&amp;h=%26%238220%3BAnd+Now+For+Something+Completely+Different%26%238221%3B" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Newsvine" alt="Add '&#8220;And Now For Something Completely Different&#8221;' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/&amp;title=%26%238220%3BAnd+Now+For+Something+Completely+Different%26%238221%3B" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Socializer" alt="Add '&#8220;And Now For Something Completely Different&#8221;' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/&amp;title=%26%238220%3BAnd+Now+For+Something+Completely+Different%26%238221%3B" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Stumble Upon" alt="Add '&#8220;And Now For Something Completely Different&#8221;' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/&amp;title=%26%238220%3BAnd+Now+For+Something+Completely+Different%26%238221%3B" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Google Bookmarks" alt="Add '&#8220;And Now For Something Completely Different&#8221;' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/&amp;title=%26%238220%3BAnd+Now+For+Something+Completely+Different%26%238221%3B" title="Add '&#8220;And Now For Something Completely Different&#8221;' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add '&#8220;And Now For Something Completely Different&#8221;' to OKnotizie" alt="Add '&#8220;And Now For Something Completely Different&#8221;' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/&amp;T=%26%238220%3BAnd+Now+For+Something+Completely+Different%26%238221%3B" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Propeller" alt="Add '&#8220;And Now For Something Completely Different&#8221;' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Bookmark.it" alt="Add '&#8220;And Now For Something Completely Different&#8221;' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=%26%238220%3BAnd+Now+For+Something+Completely+Different%26%238221%3B&amp;url=http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Ask" alt="Add '&#8220;And Now For Something Completely Different&#8221;' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/&amp;title=%26%238220%3BAnd+Now+For+Something+Completely+Different%26%238221%3B" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add '&#8220;And Now For Something Completely Different&#8221;' to Live-MSN" alt="Add '&#8220;And Now For Something Completely Different&#8221;' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=%26%238220%3BAnd+Now+For+Something+Completely+Different%26%238221%3B&amp;url=http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/" title="Add '&#8220;And Now For Something Completely Different&#8221;' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add '&#8220;And Now For Something Completely Different&#8221;' to SlashDot" alt="Add '&#8220;And Now For Something Completely Different&#8221;' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/&amp;t=%26%238220%3BAnd+Now+For+Something+Completely+Different%26%238221%3B" title="Add '&#8220;And Now For Something Completely Different&#8221;' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add '&#8220;And Now For Something Completely Different&#8221;' to FaceBook" alt="Add '&#8220;And Now For Something Completely Different&#8221;' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/mac-os-x/and-now-for-something-completely-different/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Preparing for Exchange 2007</title>
		<link>http://techjournal.318.com/windows/preparing-for-exchange-2007/</link>
		<comments>http://techjournal.318.com/windows/preparing-for-exchange-2007/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 18:05:48 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.318.com/techjournal/?p=458</guid>
		<description><![CDATA[Make sure you have a fully updated Windows 2008 64bit install setup for the following commands to work. Note that Windows 2008 R2 will NOT work with Exchange 2007. Exchange 2007 has a lot of prerequisites that need to be installed before you can install Exchange 2007. Instead of going through a bunch of Wizards [...]]]></description>
			<content:encoded><![CDATA[<p>Make sure you have a fully updated Windows 2008 64bit install setup for the following commands to work.  Note that Windows 2008 R2 will NOT work with Exchange 2007.</p>
<p>Exchange 2007 has a lot of prerequisites that need to be installed before you can install Exchange 2007.  Instead of going through a bunch of Wizards and using trial and error to make sure you have everything installed, you can set them up using a command line.</p>
<p>The first command that should be run is:</p>
<blockquote><p>ServerManagerCmd -i PowerShell</p>
<p><a href="http://www.318.com/techjournal/wp-content/uploads/2010/01/PowerShell1.png"><img class="aligncenter size-medium wp-image-460" title="PowerShell1" src="http://www.318.com/techjournal/wp-content/uploads/2010/01/PowerShell1-300x147.png" alt="" width="300" height="147" /></a></p></blockquote>
<p>This will install and configure everything that Exchange 2007 needs for PowerShell.</p>
<p>IIS has several components that need to be installed to use Exchange 2007.  You can create a quick batch script that includes them all.  The following commands need to be run:</p>
<blockquote><p>ServerManagerCmd -i Web-Server<br />
ServerManagerCmd -i Web-ISAPI-Ext<br />
ServerManagerCmd -i Web-Metabase<br />
ServerManagerCmd -i Web-Lgcy-Mgmt-Console<br />
ServerManagerCmd -i Web-Basic-Auth<br />
ServerManagerCmd -i Web-Digest-Auth<br />
ServerManagerCmd -i Web-Windows-Auth<br />
ServerManagerCmd -i Web-Dyn-Compression</p>
<p><a href="http://www.318.com/techjournal/wp-content/uploads/2010/01/PowerShell2.png"><img class="aligncenter size-medium wp-image-461" title="PowerShell2" src="http://www.318.com/techjournal/wp-content/uploads/2010/01/PowerShell2-300x146.png" alt="" width="300" height="146" /></a></p></blockquote>
<p>If you plan on using RPC over HTTP (Outlook Anywhere) you will need to run this command after all of the IIS commands have finished:</p>
<blockquote><p>ServerManagerCmd -i RPC-over-HTTP-proxy</p></blockquote>
<p>After running these commands you should be ready to run the actual setup files.  When you run setup.exe you should see that everything before option 4. Is greyed out.  Option 4. is what triggers the install.  If anything has not finished look through the command lines to make sure no errors have shown up.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/windows/preparing-for-exchange-2007/&amp;title=Preparing+for+Exchange+2007" title="Add 'Preparing for Exchange 2007' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Preparing for Exchange 2007' to Del.icio.us" alt="Add 'Preparing for Exchange 2007' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/windows/preparing-for-exchange-2007/&amp;title=Preparing+for+Exchange+2007" title="Add 'Preparing for Exchange 2007' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Preparing for Exchange 2007' to digg" alt="Add 'Preparing for Exchange 2007' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Preparing+for+Exchange+2007&amp;url=http://techjournal.318.com/windows/preparing-for-exchange-2007/&amp;version=0.7" title="Add 'Preparing for Exchange 2007' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Preparing for Exchange 2007' to Feed Me Links" alt="Add 'Preparing for Exchange 2007' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/windows/preparing-for-exchange-2007/" title="Add 'Preparing for Exchange 2007' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Preparing for Exchange 2007' to Technorati" alt="Add 'Preparing for Exchange 2007' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/windows/preparing-for-exchange-2007/&amp;t=Preparing+for+Exchange+2007" title="Add 'Preparing for Exchange 2007' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Preparing for Exchange 2007' to Yahoo My Web" alt="Add 'Preparing for Exchange 2007' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/windows/preparing-for-exchange-2007/&amp;h=Preparing+for+Exchange+2007" title="Add 'Preparing for Exchange 2007' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Preparing for Exchange 2007' to Newsvine" alt="Add 'Preparing for Exchange 2007' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/windows/preparing-for-exchange-2007/&amp;title=Preparing+for+Exchange+2007" title="Add 'Preparing for Exchange 2007' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'Preparing for Exchange 2007' to Socializer" alt="Add 'Preparing for Exchange 2007' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/windows/preparing-for-exchange-2007/&amp;title=Preparing+for+Exchange+2007" title="Add 'Preparing for Exchange 2007' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Preparing for Exchange 2007' to Stumble Upon" alt="Add 'Preparing for Exchange 2007' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/windows/preparing-for-exchange-2007/&amp;title=Preparing+for+Exchange+2007" title="Add 'Preparing for Exchange 2007' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Preparing for Exchange 2007' to Google Bookmarks" alt="Add 'Preparing for Exchange 2007' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/windows/preparing-for-exchange-2007/&amp;title=Preparing+for+Exchange+2007" title="Add 'Preparing for Exchange 2007' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'Preparing for Exchange 2007' to OKnotizie" alt="Add 'Preparing for Exchange 2007' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/windows/preparing-for-exchange-2007/&amp;T=Preparing+for+Exchange+2007" title="Add 'Preparing for Exchange 2007' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Preparing for Exchange 2007' to Propeller" alt="Add 'Preparing for Exchange 2007' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/windows/preparing-for-exchange-2007/" title="Add 'Preparing for Exchange 2007' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'Preparing for Exchange 2007' to Bookmark.it" alt="Add 'Preparing for Exchange 2007' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Preparing+for+Exchange+2007&amp;url=http://techjournal.318.com/windows/preparing-for-exchange-2007/" title="Add 'Preparing for Exchange 2007' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'Preparing for Exchange 2007' to Ask" alt="Add 'Preparing for Exchange 2007' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/windows/preparing-for-exchange-2007/&amp;title=Preparing+for+Exchange+2007" title="Add 'Preparing for Exchange 2007' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Preparing for Exchange 2007' to Live-MSN" alt="Add 'Preparing for Exchange 2007' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Preparing+for+Exchange+2007&amp;url=http://techjournal.318.com/windows/preparing-for-exchange-2007/" title="Add 'Preparing for Exchange 2007' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Preparing for Exchange 2007' to SlashDot" alt="Add 'Preparing for Exchange 2007' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/windows/preparing-for-exchange-2007/&amp;t=Preparing+for+Exchange+2007" title="Add 'Preparing for Exchange 2007' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Preparing for Exchange 2007' to FaceBook" alt="Add 'Preparing for Exchange 2007' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/windows/preparing-for-exchange-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New ActiveStorage iPhone App</title>
		<link>http://techjournal.318.com/xsan/new-activestorage-iphone-app/</link>
		<comments>http://techjournal.318.com/xsan/new-activestorage-iphone-app/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 20:47:41 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[Xsan]]></category>

		<guid isPermaLink="false">http://www.318.com/techjournal/?p=453</guid>
		<description><![CDATA[Active Storage has released a new iPhone app that you can use to monitor the status of their new XRAID ES. If you are interested in the Active Storage products then please call 318 at 310-581-9500 for more information and pricing. The App is available on the App Store. Link To:]]></description>
			<content:encoded><![CDATA[<p>Active Storage has released a new iPhone app that you can use to monitor the status of their new XRAID ES. If you are interested in the Active Storage products then please call 318 at 310-581-9500 for more information and pricing.<br />
<a href="http://www.318.com/techjournal/wp-content/uploads/2010/01/Screen-shot-2010-01-26-at-2.43.27-PM.png"><img class="aligncenter size-medium wp-image-454" title="Screen shot 2010-01-26 at 2.43.27 PM" src="http://www.318.com/techjournal/wp-content/uploads/2010/01/Screen-shot-2010-01-26-at-2.43.27-PM-210x300.png" alt="" width="210" height="300" /></a></p>
<p style="text-align: center;"><a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/browserRedirect?url=itms%253A%252F%252Fitunes.apple.com%252FWebObjects%252FMZStore.woa%252Fwa%252FviewSoftware%253Fid%253D335998125%2526cc%253Dus%2526mt%253D8">The App is available on the App Store.</a></p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/xsan/new-activestorage-iphone-app/&amp;title=New+ActiveStorage+iPhone+App" title="Add 'New ActiveStorage iPhone App' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'New ActiveStorage iPhone App' to Del.icio.us" alt="Add 'New ActiveStorage iPhone App' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/xsan/new-activestorage-iphone-app/&amp;title=New+ActiveStorage+iPhone+App" title="Add 'New ActiveStorage iPhone App' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'New ActiveStorage iPhone App' to digg" alt="Add 'New ActiveStorage iPhone App' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=New+ActiveStorage+iPhone+App&amp;url=http://techjournal.318.com/xsan/new-activestorage-iphone-app/&amp;version=0.7" title="Add 'New ActiveStorage iPhone App' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'New ActiveStorage iPhone App' to Feed Me Links" alt="Add 'New ActiveStorage iPhone App' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/xsan/new-activestorage-iphone-app/" title="Add 'New ActiveStorage iPhone App' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'New ActiveStorage iPhone App' to Technorati" alt="Add 'New ActiveStorage iPhone App' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/xsan/new-activestorage-iphone-app/&amp;t=New+ActiveStorage+iPhone+App" title="Add 'New ActiveStorage iPhone App' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'New ActiveStorage iPhone App' to Yahoo My Web" alt="Add 'New ActiveStorage iPhone App' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/xsan/new-activestorage-iphone-app/&amp;h=New+ActiveStorage+iPhone+App" title="Add 'New ActiveStorage iPhone App' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'New ActiveStorage iPhone App' to Newsvine" alt="Add 'New ActiveStorage iPhone App' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/xsan/new-activestorage-iphone-app/&amp;title=New+ActiveStorage+iPhone+App" title="Add 'New ActiveStorage iPhone App' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'New ActiveStorage iPhone App' to Socializer" alt="Add 'New ActiveStorage iPhone App' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/xsan/new-activestorage-iphone-app/&amp;title=New+ActiveStorage+iPhone+App" title="Add 'New ActiveStorage iPhone App' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'New ActiveStorage iPhone App' to Stumble Upon" alt="Add 'New ActiveStorage iPhone App' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/xsan/new-activestorage-iphone-app/&amp;title=New+ActiveStorage+iPhone+App" title="Add 'New ActiveStorage iPhone App' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'New ActiveStorage iPhone App' to Google Bookmarks" alt="Add 'New ActiveStorage iPhone App' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/xsan/new-activestorage-iphone-app/&amp;title=New+ActiveStorage+iPhone+App" title="Add 'New ActiveStorage iPhone App' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'New ActiveStorage iPhone App' to OKnotizie" alt="Add 'New ActiveStorage iPhone App' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/xsan/new-activestorage-iphone-app/&amp;T=New+ActiveStorage+iPhone+App" title="Add 'New ActiveStorage iPhone App' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'New ActiveStorage iPhone App' to Propeller" alt="Add 'New ActiveStorage iPhone App' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/xsan/new-activestorage-iphone-app/" title="Add 'New ActiveStorage iPhone App' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'New ActiveStorage iPhone App' to Bookmark.it" alt="Add 'New ActiveStorage iPhone App' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=New+ActiveStorage+iPhone+App&amp;url=http://techjournal.318.com/xsan/new-activestorage-iphone-app/" title="Add 'New ActiveStorage iPhone App' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'New ActiveStorage iPhone App' to Ask" alt="Add 'New ActiveStorage iPhone App' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/xsan/new-activestorage-iphone-app/&amp;title=New+ActiveStorage+iPhone+App" title="Add 'New ActiveStorage iPhone App' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'New ActiveStorage iPhone App' to Live-MSN" alt="Add 'New ActiveStorage iPhone App' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=New+ActiveStorage+iPhone+App&amp;url=http://techjournal.318.com/xsan/new-activestorage-iphone-app/" title="Add 'New ActiveStorage iPhone App' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'New ActiveStorage iPhone App' to SlashDot" alt="Add 'New ActiveStorage iPhone App' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/xsan/new-activestorage-iphone-app/&amp;t=New+ActiveStorage+iPhone+App" title="Add 'New ActiveStorage iPhone App' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'New ActiveStorage iPhone App' to FaceBook" alt="Add 'New ActiveStorage iPhone App' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/xsan/new-activestorage-iphone-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ACLs and NFS</title>
		<link>http://techjournal.318.com/mac-os-x/acls-and-nfs/</link>
		<comments>http://techjournal.318.com/mac-os-x/acls-and-nfs/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 02:15:07 +0000</pubDate>
		<dc:creator>Beau Hunter</dc:creator>
				<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.318.com/techjournal/?p=448</guid>
		<description><![CDATA[The permissions that a user obtains for NFS shares will boil down to effective permissions. NFS doesn&#8217;t support ACLs, but it does honor them for Mac OS X NFS clients when bound to the directory.: if a user is granted read/write via an ACL, they WILL have read/write access via NFS. However, there are a [...]]]></description>
			<content:encoded><![CDATA[<p>The permissions that a user obtains for NFS shares will boil down to effective permissions. NFS doesn&#8217;t support ACLs, but it does honor them for Mac OS X NFS clients when bound to the directory.: if a user is granted read/write via an ACL, they WILL have read/write access via NFS. However, there are a few things to note here.</p>
<p>First and foremost, granular ACL&#8217;s won&#8217;t translate completely. Secondly, although you might have effective write privileges via ACL&#8217;s, if you don&#8217;t have write privileges via POSIX, it will *look* like you don&#8217;t have privileges when you do an `ls` on the mounted NFS volume, however, if you try to read or write a file, it will work without issue. Poorly written software might inspect the POSIX permissions and determine that you don&#8217;t have access when you really do. Most software will attempt to read/write an asset and will report errors when encountered (as it should).  Lastly, ACL inheritance IS honored over NFS as well, so any files/dirs your users will create will have the appropriate ACL&#8217;s assigned on the backend, though displayed POSIX permissions once again won&#8217;t be especially accurate.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/mac-os-x/acls-and-nfs/&amp;title=ACLs+and+NFS" title="Add 'ACLs and NFS' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'ACLs and NFS' to Del.icio.us" alt="Add 'ACLs and NFS' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/mac-os-x/acls-and-nfs/&amp;title=ACLs+and+NFS" title="Add 'ACLs and NFS' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'ACLs and NFS' to digg" alt="Add 'ACLs and NFS' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=ACLs+and+NFS&amp;url=http://techjournal.318.com/mac-os-x/acls-and-nfs/&amp;version=0.7" title="Add 'ACLs and NFS' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'ACLs and NFS' to Feed Me Links" alt="Add 'ACLs and NFS' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/mac-os-x/acls-and-nfs/" title="Add 'ACLs and NFS' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'ACLs and NFS' to Technorati" alt="Add 'ACLs and NFS' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/mac-os-x/acls-and-nfs/&amp;t=ACLs+and+NFS" title="Add 'ACLs and NFS' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'ACLs and NFS' to Yahoo My Web" alt="Add 'ACLs and NFS' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/mac-os-x/acls-and-nfs/&amp;h=ACLs+and+NFS" title="Add 'ACLs and NFS' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'ACLs and NFS' to Newsvine" alt="Add 'ACLs and NFS' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/mac-os-x/acls-and-nfs/&amp;title=ACLs+and+NFS" title="Add 'ACLs and NFS' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'ACLs and NFS' to Socializer" alt="Add 'ACLs and NFS' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/mac-os-x/acls-and-nfs/&amp;title=ACLs+and+NFS" title="Add 'ACLs and NFS' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'ACLs and NFS' to Stumble Upon" alt="Add 'ACLs and NFS' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/mac-os-x/acls-and-nfs/&amp;title=ACLs+and+NFS" title="Add 'ACLs and NFS' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'ACLs and NFS' to Google Bookmarks" alt="Add 'ACLs and NFS' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/mac-os-x/acls-and-nfs/&amp;title=ACLs+and+NFS" title="Add 'ACLs and NFS' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'ACLs and NFS' to OKnotizie" alt="Add 'ACLs and NFS' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/mac-os-x/acls-and-nfs/&amp;T=ACLs+and+NFS" title="Add 'ACLs and NFS' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'ACLs and NFS' to Propeller" alt="Add 'ACLs and NFS' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/mac-os-x/acls-and-nfs/" title="Add 'ACLs and NFS' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'ACLs and NFS' to Bookmark.it" alt="Add 'ACLs and NFS' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=ACLs+and+NFS&amp;url=http://techjournal.318.com/mac-os-x/acls-and-nfs/" title="Add 'ACLs and NFS' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'ACLs and NFS' to Ask" alt="Add 'ACLs and NFS' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/mac-os-x/acls-and-nfs/&amp;title=ACLs+and+NFS" title="Add 'ACLs and NFS' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'ACLs and NFS' to Live-MSN" alt="Add 'ACLs and NFS' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=ACLs+and+NFS&amp;url=http://techjournal.318.com/mac-os-x/acls-and-nfs/" title="Add 'ACLs and NFS' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'ACLs and NFS' to SlashDot" alt="Add 'ACLs and NFS' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/mac-os-x/acls-and-nfs/&amp;t=ACLs+and+NFS" title="Add 'ACLs and NFS' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'ACLs and NFS' to FaceBook" alt="Add 'ACLs and NFS' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/mac-os-x/acls-and-nfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mighty Mouse Unleashed!</title>
		<link>http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/</link>
		<comments>http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 18:31:57 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://www.318.com/techjournal/?p=445</guid>
		<description><![CDATA[If you have been wondering what more you can do with that shiny new Mighty Mouse then get ready. MagicPrefs, from Vlad Alexa allows you to do the following: - It features the ability to bind a variable number of finger clicks, taps, swipes, pinch and other gestures to functions like Middle Click , Hold [...]]]></description>
			<content:encoded><![CDATA[<p>If you have been wondering what more you can do with that shiny new Mighty Mouse then get ready. <a href="http://www.apple.com/downloads/macosx/system_disk_utilities/magicprefs.html">MagicPrefs</a>, from <a href="http://vladalexa.com/">Vlad Alexa</a> allows you to do the following:</p>
<blockquote><p>- It features the ability to bind a variable number of finger clicks, taps, swipes, pinch and other gestures to functions like Middle Click , Hold Down Both Mouse Buttons , Spaces , Expose, Dashboard etc.<br />
- Touch Sensitivity implements a single point control for a number of factors impacting the algorithms of the taps, swipes, pinche and other gestures.<br />
- Tracking Speed adds the ability to increase the maximum mouse speed by a extra 200%.<br />
- Also featured is a real-time display of the fingers touching the surface of the mouse that you can enable to test and monitor the way the mouse sees fingers.</p></blockquote>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/&amp;title=Mighty+Mouse+Unleashed%21" title="Add 'Mighty Mouse Unleashed!' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Mighty Mouse Unleashed!' to Del.icio.us" alt="Add 'Mighty Mouse Unleashed!' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/&amp;title=Mighty+Mouse+Unleashed%21" title="Add 'Mighty Mouse Unleashed!' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Mighty Mouse Unleashed!' to digg" alt="Add 'Mighty Mouse Unleashed!' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Mighty+Mouse+Unleashed%21&amp;url=http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/&amp;version=0.7" title="Add 'Mighty Mouse Unleashed!' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Mighty Mouse Unleashed!' to Feed Me Links" alt="Add 'Mighty Mouse Unleashed!' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/" title="Add 'Mighty Mouse Unleashed!' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Mighty Mouse Unleashed!' to Technorati" alt="Add 'Mighty Mouse Unleashed!' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/&amp;t=Mighty+Mouse+Unleashed%21" title="Add 'Mighty Mouse Unleashed!' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Mighty Mouse Unleashed!' to Yahoo My Web" alt="Add 'Mighty Mouse Unleashed!' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/&amp;h=Mighty+Mouse+Unleashed%21" title="Add 'Mighty Mouse Unleashed!' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Mighty Mouse Unleashed!' to Newsvine" alt="Add 'Mighty Mouse Unleashed!' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/&amp;title=Mighty+Mouse+Unleashed%21" title="Add 'Mighty Mouse Unleashed!' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'Mighty Mouse Unleashed!' to Socializer" alt="Add 'Mighty Mouse Unleashed!' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/&amp;title=Mighty+Mouse+Unleashed%21" title="Add 'Mighty Mouse Unleashed!' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Mighty Mouse Unleashed!' to Stumble Upon" alt="Add 'Mighty Mouse Unleashed!' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/&amp;title=Mighty+Mouse+Unleashed%21" title="Add 'Mighty Mouse Unleashed!' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Mighty Mouse Unleashed!' to Google Bookmarks" alt="Add 'Mighty Mouse Unleashed!' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/&amp;title=Mighty+Mouse+Unleashed%21" title="Add 'Mighty Mouse Unleashed!' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'Mighty Mouse Unleashed!' to OKnotizie" alt="Add 'Mighty Mouse Unleashed!' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/&amp;T=Mighty+Mouse+Unleashed%21" title="Add 'Mighty Mouse Unleashed!' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Mighty Mouse Unleashed!' to Propeller" alt="Add 'Mighty Mouse Unleashed!' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/" title="Add 'Mighty Mouse Unleashed!' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'Mighty Mouse Unleashed!' to Bookmark.it" alt="Add 'Mighty Mouse Unleashed!' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Mighty+Mouse+Unleashed%21&amp;url=http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/" title="Add 'Mighty Mouse Unleashed!' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'Mighty Mouse Unleashed!' to Ask" alt="Add 'Mighty Mouse Unleashed!' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/&amp;title=Mighty+Mouse+Unleashed%21" title="Add 'Mighty Mouse Unleashed!' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Mighty Mouse Unleashed!' to Live-MSN" alt="Add 'Mighty Mouse Unleashed!' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Mighty+Mouse+Unleashed%21&amp;url=http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/" title="Add 'Mighty Mouse Unleashed!' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Mighty Mouse Unleashed!' to SlashDot" alt="Add 'Mighty Mouse Unleashed!' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/&amp;t=Mighty+Mouse+Unleashed%21" title="Add 'Mighty Mouse Unleashed!' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Mighty Mouse Unleashed!' to FaceBook" alt="Add 'Mighty Mouse Unleashed!' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/mac-os-x/mighty-mouse-unleashed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Background Checks? There&#8217;s an App for That!</title>
		<link>http://techjournal.318.com/iphone/checking-up-on-the-app-store/</link>
		<comments>http://techjournal.318.com/iphone/checking-up-on-the-app-store/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 22:25:34 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.318.com/techjournal/?p=438</guid>
		<description><![CDATA[Apple’s App store is a veritable wild west movie of products; business, pleasure, pleasure disguised to look like business, useful tools that are free and do-nothing apps that cost $999.99. Beenverified.com has released a “free” app that allows you to run background checks right from your iPhone. While this isn’t a new idea, the app [...]]]></description>
			<content:encoded><![CDATA[<p>Apple’s App store is a veritable wild west movie of products; business, pleasure, pleasure disguised to look like business, useful tools that are free and do-nothing apps that cost $999.99. </p>
<p><a href="http://beenverified.com">Beenverified.com</a> has released a “free” app that allows you to run background checks right from your iPhone. While this isn’t a new idea, the app is well designed and you get three free searches a week. Since it’s just been released, you can only run one search at a time due to high server demand, but the searches are accurate and in-depth. It was able to produce not only basic information about those of us that have tried it, but also gave a complete histories of houses, including past owners, past occupants and the house’s current market value, amongst other things!</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/iphone/checking-up-on-the-app-store/&amp;title=Background+Checks%3F+There%26%238217%3Bs+an+App+for+That%21" title="Add 'Background Checks? There&#8217;s an App for That!' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Background Checks? There&#8217;s an App for That!' to Del.icio.us" alt="Add 'Background Checks? There&#8217;s an App for That!' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/iphone/checking-up-on-the-app-store/&amp;title=Background+Checks%3F+There%26%238217%3Bs+an+App+for+That%21" title="Add 'Background Checks? There&#8217;s an App for That!' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Background Checks? There&#8217;s an App for That!' to digg" alt="Add 'Background Checks? There&#8217;s an App for That!' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Background+Checks%3F+There%26%238217%3Bs+an+App+for+That%21&amp;url=http://techjournal.318.com/iphone/checking-up-on-the-app-store/&amp;version=0.7" title="Add 'Background Checks? There&#8217;s an App for That!' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Background Checks? There&#8217;s an App for That!' to Feed Me Links" alt="Add 'Background Checks? There&#8217;s an App for That!' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/iphone/checking-up-on-the-app-store/" title="Add 'Background Checks? There&#8217;s an App for That!' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Background Checks? There&#8217;s an App for That!' to Technorati" alt="Add 'Background Checks? There&#8217;s an App for That!' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/iphone/checking-up-on-the-app-store/&amp;t=Background+Checks%3F+There%26%238217%3Bs+an+App+for+That%21" title="Add 'Background Checks? There&#8217;s an App for That!' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Background Checks? There&#8217;s an App for That!' to Yahoo My Web" alt="Add 'Background Checks? There&#8217;s an App for That!' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/iphone/checking-up-on-the-app-store/&amp;h=Background+Checks%3F+There%26%238217%3Bs+an+App+for+That%21" title="Add 'Background Checks? There&#8217;s an App for That!' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Background Checks? There&#8217;s an App for That!' to Newsvine" alt="Add 'Background Checks? There&#8217;s an App for That!' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/iphone/checking-up-on-the-app-store/&amp;title=Background+Checks%3F+There%26%238217%3Bs+an+App+for+That%21" title="Add 'Background Checks? There&#8217;s an App for That!' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'Background Checks? There&#8217;s an App for That!' to Socializer" alt="Add 'Background Checks? There&#8217;s an App for That!' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/iphone/checking-up-on-the-app-store/&amp;title=Background+Checks%3F+There%26%238217%3Bs+an+App+for+That%21" title="Add 'Background Checks? There&#8217;s an App for That!' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Background Checks? There&#8217;s an App for That!' to Stumble Upon" alt="Add 'Background Checks? There&#8217;s an App for That!' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/iphone/checking-up-on-the-app-store/&amp;title=Background+Checks%3F+There%26%238217%3Bs+an+App+for+That%21" title="Add 'Background Checks? There&#8217;s an App for That!' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Background Checks? There&#8217;s an App for That!' to Google Bookmarks" alt="Add 'Background Checks? There&#8217;s an App for That!' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/iphone/checking-up-on-the-app-store/&amp;title=Background+Checks%3F+There%26%238217%3Bs+an+App+for+That%21" title="Add 'Background Checks? There&#8217;s an App for That!' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'Background Checks? There&#8217;s an App for That!' to OKnotizie" alt="Add 'Background Checks? There&#8217;s an App for That!' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/iphone/checking-up-on-the-app-store/&amp;T=Background+Checks%3F+There%26%238217%3Bs+an+App+for+That%21" title="Add 'Background Checks? There&#8217;s an App for That!' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Background Checks? There&#8217;s an App for That!' to Propeller" alt="Add 'Background Checks? There&#8217;s an App for That!' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/iphone/checking-up-on-the-app-store/" title="Add 'Background Checks? There&#8217;s an App for That!' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'Background Checks? There&#8217;s an App for That!' to Bookmark.it" alt="Add 'Background Checks? There&#8217;s an App for That!' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Background+Checks%3F+There%26%238217%3Bs+an+App+for+That%21&amp;url=http://techjournal.318.com/iphone/checking-up-on-the-app-store/" title="Add 'Background Checks? There&#8217;s an App for That!' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'Background Checks? There&#8217;s an App for That!' to Ask" alt="Add 'Background Checks? There&#8217;s an App for That!' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/iphone/checking-up-on-the-app-store/&amp;title=Background+Checks%3F+There%26%238217%3Bs+an+App+for+That%21" title="Add 'Background Checks? There&#8217;s an App for That!' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Background Checks? There&#8217;s an App for That!' to Live-MSN" alt="Add 'Background Checks? There&#8217;s an App for That!' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Background+Checks%3F+There%26%238217%3Bs+an+App+for+That%21&amp;url=http://techjournal.318.com/iphone/checking-up-on-the-app-store/" title="Add 'Background Checks? There&#8217;s an App for That!' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Background Checks? There&#8217;s an App for That!' to SlashDot" alt="Add 'Background Checks? There&#8217;s an App for That!' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/iphone/checking-up-on-the-app-store/&amp;t=Background+Checks%3F+There%26%238217%3Bs+an+App+for+That%21" title="Add 'Background Checks? There&#8217;s an App for That!' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Background Checks? There&#8217;s an App for That!' to FaceBook" alt="Add 'Background Checks? There&#8217;s an App for That!' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/iphone/checking-up-on-the-app-store/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MergeSafBookmarks Now Open Sourced</title>
		<link>http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/</link>
		<comments>http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 00:49:36 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Mass Deployments]]></category>
		<category><![CDATA[Mass Deployment]]></category>
		<category><![CDATA[Merge Safari Bookmarks]]></category>

		<guid isPermaLink="false">http://www.318.com/techjournal/?p=436</guid>
		<description><![CDATA[318 has open sourced our mergeSafBookmarks python script. This tool can read in a pair of property lists and merge them into a single resultant bookmarks file for Safari. This takes a lot of the work out of pushing bookmarks to existing users as part of your deployment. You can find it here: http://mergebookmarks.sourceforge.net Note: The [...]]]></description>
			<content:encoded><![CDATA[<p>318 has open sourced our mergeSafBookmarks python script. This tool can read in a pair of property lists and merge them into a single resultant bookmarks file for Safari. This takes a lot of the work out of pushing bookmarks to existing users as part of your deployment. You can find it here:</p>
<p><a href="http://mergebookmarks.sourceforge.net">http://mergebookmarks.sourceforge.net<br />
</a><br />
Note: The script also looks at existing bookmarks and doesn&#8217;t merge in duplicates.</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/&amp;title=MergeSafBookmarks+Now+Open+Sourced" title="Add 'MergeSafBookmarks Now Open Sourced' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'MergeSafBookmarks Now Open Sourced' to Del.icio.us" alt="Add 'MergeSafBookmarks Now Open Sourced' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/&amp;title=MergeSafBookmarks+Now+Open+Sourced" title="Add 'MergeSafBookmarks Now Open Sourced' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'MergeSafBookmarks Now Open Sourced' to digg" alt="Add 'MergeSafBookmarks Now Open Sourced' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=MergeSafBookmarks+Now+Open+Sourced&amp;url=http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/&amp;version=0.7" title="Add 'MergeSafBookmarks Now Open Sourced' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'MergeSafBookmarks Now Open Sourced' to Feed Me Links" alt="Add 'MergeSafBookmarks Now Open Sourced' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/" title="Add 'MergeSafBookmarks Now Open Sourced' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'MergeSafBookmarks Now Open Sourced' to Technorati" alt="Add 'MergeSafBookmarks Now Open Sourced' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/&amp;t=MergeSafBookmarks+Now+Open+Sourced" title="Add 'MergeSafBookmarks Now Open Sourced' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'MergeSafBookmarks Now Open Sourced' to Yahoo My Web" alt="Add 'MergeSafBookmarks Now Open Sourced' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/&amp;h=MergeSafBookmarks+Now+Open+Sourced" title="Add 'MergeSafBookmarks Now Open Sourced' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'MergeSafBookmarks Now Open Sourced' to Newsvine" alt="Add 'MergeSafBookmarks Now Open Sourced' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/&amp;title=MergeSafBookmarks+Now+Open+Sourced" title="Add 'MergeSafBookmarks Now Open Sourced' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'MergeSafBookmarks Now Open Sourced' to Socializer" alt="Add 'MergeSafBookmarks Now Open Sourced' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/&amp;title=MergeSafBookmarks+Now+Open+Sourced" title="Add 'MergeSafBookmarks Now Open Sourced' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'MergeSafBookmarks Now Open Sourced' to Stumble Upon" alt="Add 'MergeSafBookmarks Now Open Sourced' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/&amp;title=MergeSafBookmarks+Now+Open+Sourced" title="Add 'MergeSafBookmarks Now Open Sourced' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'MergeSafBookmarks Now Open Sourced' to Google Bookmarks" alt="Add 'MergeSafBookmarks Now Open Sourced' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/&amp;title=MergeSafBookmarks+Now+Open+Sourced" title="Add 'MergeSafBookmarks Now Open Sourced' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'MergeSafBookmarks Now Open Sourced' to OKnotizie" alt="Add 'MergeSafBookmarks Now Open Sourced' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/&amp;T=MergeSafBookmarks+Now+Open+Sourced" title="Add 'MergeSafBookmarks Now Open Sourced' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'MergeSafBookmarks Now Open Sourced' to Propeller" alt="Add 'MergeSafBookmarks Now Open Sourced' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/" title="Add 'MergeSafBookmarks Now Open Sourced' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'MergeSafBookmarks Now Open Sourced' to Bookmark.it" alt="Add 'MergeSafBookmarks Now Open Sourced' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=MergeSafBookmarks+Now+Open+Sourced&amp;url=http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/" title="Add 'MergeSafBookmarks Now Open Sourced' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'MergeSafBookmarks Now Open Sourced' to Ask" alt="Add 'MergeSafBookmarks Now Open Sourced' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/&amp;title=MergeSafBookmarks+Now+Open+Sourced" title="Add 'MergeSafBookmarks Now Open Sourced' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'MergeSafBookmarks Now Open Sourced' to Live-MSN" alt="Add 'MergeSafBookmarks Now Open Sourced' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=MergeSafBookmarks+Now+Open+Sourced&amp;url=http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/" title="Add 'MergeSafBookmarks Now Open Sourced' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'MergeSafBookmarks Now Open Sourced' to SlashDot" alt="Add 'MergeSafBookmarks Now Open Sourced' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/&amp;t=MergeSafBookmarks+Now+Open+Sourced" title="Add 'MergeSafBookmarks Now Open Sourced' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'MergeSafBookmarks Now Open Sourced' to FaceBook" alt="Add 'MergeSafBookmarks Now Open Sourced' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/mass-deployments/mergesafbookmarks-now-open-sourced/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xsan 2.2.1</title>
		<link>http://techjournal.318.com/xsan/xsan-221/</link>
		<comments>http://techjournal.318.com/xsan/xsan-221/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 21:32:34 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[Xsan]]></category>
		<category><![CDATA[2.2.1]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.318.com/techjournal/?p=433</guid>
		<description><![CDATA[Xsan 2.2.1 has been released. Updates include: Improved filesystem reliability Improved cvfsck (the Xsan filesystem repair tool) Resolves QuickTime reporting &#8220;invalid public movie atom found&#8221; on playback Eliminates &#8220;An unknown disk has been inserted&#8221; message when mounting Xsan volumes (occurs in Mac OS X 10.5 Leopard only) Link To:]]></description>
			<content:encoded><![CDATA[<p>Xsan 2.2.1 has been released. Updates include:</p>
<ol>
<li>Improved filesystem reliability</li>
<li>Improved <a href="http://support.apple.com/kb/HT1081">cvfsck</a> (the Xsan filesystem repair tool)</li>
<li>Resolves QuickTime reporting &#8220;invalid public movie atom found&#8221; on playback</li>
<li>Eliminates &#8220;An unknown disk has been inserted&#8221; message when mounting Xsan volumes (occurs in Mac OS X 10.5 Leopard only)</li>
</ol>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/xsan/xsan-221/&amp;title=Xsan+2.2.1" title="Add 'Xsan 2.2.1' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Xsan 2.2.1' to Del.icio.us" alt="Add 'Xsan 2.2.1' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/xsan/xsan-221/&amp;title=Xsan+2.2.1" title="Add 'Xsan 2.2.1' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Xsan 2.2.1' to digg" alt="Add 'Xsan 2.2.1' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Xsan+2.2.1&amp;url=http://techjournal.318.com/xsan/xsan-221/&amp;version=0.7" title="Add 'Xsan 2.2.1' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Xsan 2.2.1' to Feed Me Links" alt="Add 'Xsan 2.2.1' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/xsan/xsan-221/" title="Add 'Xsan 2.2.1' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Xsan 2.2.1' to Technorati" alt="Add 'Xsan 2.2.1' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/xsan/xsan-221/&amp;t=Xsan+2.2.1" title="Add 'Xsan 2.2.1' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Xsan 2.2.1' to Yahoo My Web" alt="Add 'Xsan 2.2.1' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/xsan/xsan-221/&amp;h=Xsan+2.2.1" title="Add 'Xsan 2.2.1' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Xsan 2.2.1' to Newsvine" alt="Add 'Xsan 2.2.1' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/xsan/xsan-221/&amp;title=Xsan+2.2.1" title="Add 'Xsan 2.2.1' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'Xsan 2.2.1' to Socializer" alt="Add 'Xsan 2.2.1' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/xsan/xsan-221/&amp;title=Xsan+2.2.1" title="Add 'Xsan 2.2.1' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Xsan 2.2.1' to Stumble Upon" alt="Add 'Xsan 2.2.1' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/xsan/xsan-221/&amp;title=Xsan+2.2.1" title="Add 'Xsan 2.2.1' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Xsan 2.2.1' to Google Bookmarks" alt="Add 'Xsan 2.2.1' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/xsan/xsan-221/&amp;title=Xsan+2.2.1" title="Add 'Xsan 2.2.1' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'Xsan 2.2.1' to OKnotizie" alt="Add 'Xsan 2.2.1' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/xsan/xsan-221/&amp;T=Xsan+2.2.1" title="Add 'Xsan 2.2.1' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Xsan 2.2.1' to Propeller" alt="Add 'Xsan 2.2.1' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/xsan/xsan-221/" title="Add 'Xsan 2.2.1' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'Xsan 2.2.1' to Bookmark.it" alt="Add 'Xsan 2.2.1' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Xsan+2.2.1&amp;url=http://techjournal.318.com/xsan/xsan-221/" title="Add 'Xsan 2.2.1' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'Xsan 2.2.1' to Ask" alt="Add 'Xsan 2.2.1' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/xsan/xsan-221/&amp;title=Xsan+2.2.1" title="Add 'Xsan 2.2.1' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Xsan 2.2.1' to Live-MSN" alt="Add 'Xsan 2.2.1' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Xsan+2.2.1&amp;url=http://techjournal.318.com/xsan/xsan-221/" title="Add 'Xsan 2.2.1' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Xsan 2.2.1' to SlashDot" alt="Add 'Xsan 2.2.1' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/xsan/xsan-221/&amp;t=Xsan+2.2.1" title="Add 'Xsan 2.2.1' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Xsan 2.2.1' to FaceBook" alt="Add 'Xsan 2.2.1' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/xsan/xsan-221/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>318 Open Sources the ASR Setup Tool</title>
		<link>http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/</link>
		<comments>http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 20:34:54 +0000</pubDate>
		<dc:creator>Charles Edge</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Mac OS X Server]]></category>
		<category><![CDATA[Mass Deployments]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Apple Software Restore]]></category>
		<category><![CDATA[ASR Setup Tool]]></category>
		<category><![CDATA[Imaging]]></category>

		<guid isPermaLink="false">http://www.318.com/techjournal/?p=428</guid>
		<description><![CDATA[318 has decided to open source our ASR Setup Tool under GPLv3. The tool can now be found at http://asrsetup.sourceforge.net. The ASR Setup Tool is built as a wrapper for the asr command line suite from Apple. The description from SourceForge: Developed by 318 Inc., ASR Setup Toll is an application for setting up Apple Software [...]]]></description>
			<content:encoded><![CDATA[<p>318 has decided to open source our ASR Setup Tool under GPLv3. The tool can now be found at <a href="http://asrsetup.sourceforge.net/">http://asrsetup.sourceforge.net</a>. The ASR Setup Tool is built as a wrapper for the asr command line suite from Apple. The description from SourceForge:</p>
<blockquote><p>Developed by 318 Inc., ASR Setup Toll is an application for setting up Apple Software Restore (&#8220;ASR&#8221;). In the context of the ASR Setup Tool, ASR is used for setting up a multicast stream that can then be leveraged for imaging Mac OS X computers.</p></blockquote>
<p>We hope you enjoy!</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/&amp;title=318+Open+Sources+the+ASR+Setup+Tool" title="Add '318 Open Sources the ASR Setup Tool' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add '318 Open Sources the ASR Setup Tool' to Del.icio.us" alt="Add '318 Open Sources the ASR Setup Tool' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/&amp;title=318+Open+Sources+the+ASR+Setup+Tool" title="Add '318 Open Sources the ASR Setup Tool' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add '318 Open Sources the ASR Setup Tool' to digg" alt="Add '318 Open Sources the ASR Setup Tool' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=318+Open+Sources+the+ASR+Setup+Tool&amp;url=http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/&amp;version=0.7" title="Add '318 Open Sources the ASR Setup Tool' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add '318 Open Sources the ASR Setup Tool' to Feed Me Links" alt="Add '318 Open Sources the ASR Setup Tool' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/" title="Add '318 Open Sources the ASR Setup Tool' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add '318 Open Sources the ASR Setup Tool' to Technorati" alt="Add '318 Open Sources the ASR Setup Tool' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/&amp;t=318+Open+Sources+the+ASR+Setup+Tool" title="Add '318 Open Sources the ASR Setup Tool' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add '318 Open Sources the ASR Setup Tool' to Yahoo My Web" alt="Add '318 Open Sources the ASR Setup Tool' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/&amp;h=318+Open+Sources+the+ASR+Setup+Tool" title="Add '318 Open Sources the ASR Setup Tool' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add '318 Open Sources the ASR Setup Tool' to Newsvine" alt="Add '318 Open Sources the ASR Setup Tool' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/&amp;title=318+Open+Sources+the+ASR+Setup+Tool" title="Add '318 Open Sources the ASR Setup Tool' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add '318 Open Sources the ASR Setup Tool' to Socializer" alt="Add '318 Open Sources the ASR Setup Tool' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/&amp;title=318+Open+Sources+the+ASR+Setup+Tool" title="Add '318 Open Sources the ASR Setup Tool' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add '318 Open Sources the ASR Setup Tool' to Stumble Upon" alt="Add '318 Open Sources the ASR Setup Tool' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/&amp;title=318+Open+Sources+the+ASR+Setup+Tool" title="Add '318 Open Sources the ASR Setup Tool' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add '318 Open Sources the ASR Setup Tool' to Google Bookmarks" alt="Add '318 Open Sources the ASR Setup Tool' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/&amp;title=318+Open+Sources+the+ASR+Setup+Tool" title="Add '318 Open Sources the ASR Setup Tool' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add '318 Open Sources the ASR Setup Tool' to OKnotizie" alt="Add '318 Open Sources the ASR Setup Tool' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/&amp;T=318+Open+Sources+the+ASR+Setup+Tool" title="Add '318 Open Sources the ASR Setup Tool' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add '318 Open Sources the ASR Setup Tool' to Propeller" alt="Add '318 Open Sources the ASR Setup Tool' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/" title="Add '318 Open Sources the ASR Setup Tool' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add '318 Open Sources the ASR Setup Tool' to Bookmark.it" alt="Add '318 Open Sources the ASR Setup Tool' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=318+Open+Sources+the+ASR+Setup+Tool&amp;url=http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/" title="Add '318 Open Sources the ASR Setup Tool' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add '318 Open Sources the ASR Setup Tool' to Ask" alt="Add '318 Open Sources the ASR Setup Tool' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/&amp;title=318+Open+Sources+the+ASR+Setup+Tool" title="Add '318 Open Sources the ASR Setup Tool' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add '318 Open Sources the ASR Setup Tool' to Live-MSN" alt="Add '318 Open Sources the ASR Setup Tool' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=318+Open+Sources+the+ASR+Setup+Tool&amp;url=http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/" title="Add '318 Open Sources the ASR Setup Tool' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add '318 Open Sources the ASR Setup Tool' to SlashDot" alt="Add '318 Open Sources the ASR Setup Tool' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/&amp;t=318+Open+Sources+the+ASR+Setup+Tool" title="Add '318 Open Sources the ASR Setup Tool' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add '318 Open Sources the ASR Setup Tool' to FaceBook" alt="Add '318 Open Sources the ASR Setup Tool' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/mass-deployments/318-open-sources-the-asr-setup-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Screen Shots &amp; ARD</title>
		<link>http://techjournal.318.com/mac-os-x-server/screen-shots-ard/</link>
		<comments>http://techjournal.318.com/mac-os-x-server/screen-shots-ard/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 14:36:21 +0000</pubDate>
		<dc:creator>Beau Hunter</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Mac OS X Server]]></category>
		<category><![CDATA[Apple Remote Desktop]]></category>
		<category><![CDATA[screencapture]]></category>

		<guid isPermaLink="false">http://www.318.com/techjournal/?p=425</guid>
		<description><![CDATA[For what it&#8217;s worth, we take ours from the command line. It helps keep proper track of the names screens. Simply open up a terminal window on a remote server via Apple Remote Desktop (ARD) and run the following command: sleep 3; screencapture -iw ~/Desktop/filename.png When you run that full string as a command you&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>For what it&#8217;s worth, we take ours from the command line. It helps keep proper track of the names screens. Simply open up a terminal window on a remote server via Apple Remote Desktop (ARD) and run the following command:</p>
<blockquote><p>sleep 3; screencapture -iw ~/Desktop/filename.png</p></blockquote>
<p>When you run that full string as a command you&#8217;ll have 3 seconds after hitting enter to highlight your target window, at which point your cursor will switch to the photo in window selection mode. Alternatively, you can run:</p>
<blockquote><p>sleep 3; screencapture -iwc</p></blockquote>
<p>Which will capture the picture to the remote machines clipboard (and can then be copied via ARD, and opened in Preview (File-&gt;new from clipboard).</p>
<!-- Social Bookmarking Reloaded BEGIN --><div class="social_bookmark"><em>Link To:</em><br /><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http://techjournal.318.com/mac-os-x-server/screen-shots-ard/&amp;title=Screen+Shots+%26%23038%3B+ARD" title="Add 'Screen Shots &#038; ARD' to Del.icio.us"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/delicious.png" title="Add 'Screen Shots &#038; ARD' to Del.icio.us" alt="Add 'Screen Shots &#038; ARD' to Del.icio.us" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http://techjournal.318.com/mac-os-x-server/screen-shots-ard/&amp;title=Screen+Shots+%26%23038%3B+ARD" title="Add 'Screen Shots &#038; ARD' to digg"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/digg.png" title="Add 'Screen Shots &#038; ARD' to digg" alt="Add 'Screen Shots &#038; ARD' to digg" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://feedmelinks.com/categorize?from=toolbar&amp;op=submit&amp;name=Screen+Shots+%26%23038%3B+ARD&amp;url=http://techjournal.318.com/mac-os-x-server/screen-shots-ard/&amp;version=0.7" title="Add 'Screen Shots &#038; ARD' to Feed Me Links"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/feedmelinks.png" title="Add 'Screen Shots &#038; ARD' to Feed Me Links" alt="Add 'Screen Shots &#038; ARD' to Feed Me Links" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http://techjournal.318.com/mac-os-x-server/screen-shots-ard/" title="Add 'Screen Shots &#038; ARD' to Technorati"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/technorati.png" title="Add 'Screen Shots &#038; ARD' to Technorati" alt="Add 'Screen Shots &#038; ARD' to Technorati" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http://techjournal.318.com/mac-os-x-server/screen-shots-ard/&amp;t=Screen+Shots+%26%23038%3B+ARD" title="Add 'Screen Shots &#038; ARD' to Yahoo My Web"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/yahoo_myweb.png" title="Add 'Screen Shots &#038; ARD' to Yahoo My Web" alt="Add 'Screen Shots &#038; ARD' to Yahoo My Web" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.newsvine.com/_wine/save?u=http://techjournal.318.com/mac-os-x-server/screen-shots-ard/&amp;h=Screen+Shots+%26%23038%3B+ARD" title="Add 'Screen Shots &#038; ARD' to Newsvine"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/newsvine.png" title="Add 'Screen Shots &#038; ARD' to Newsvine" alt="Add 'Screen Shots &#038; ARD' to Newsvine" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://ekstreme.com/socializer/?url=http://techjournal.318.com/mac-os-x-server/screen-shots-ard/&amp;title=Screen+Shots+%26%23038%3B+ARD" title="Add 'Screen Shots &#038; ARD' to Socializer"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/socializer.png" title="Add 'Screen Shots &#038; ARD' to Socializer" alt="Add 'Screen Shots &#038; ARD' to Socializer" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.stumbleupon.com/submit?url=http://techjournal.318.com/mac-os-x-server/screen-shots-ard/&amp;title=Screen+Shots+%26%23038%3B+ARD" title="Add 'Screen Shots &#038; ARD' to Stumble Upon"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/stumbleupon.png" title="Add 'Screen Shots &#038; ARD' to Stumble Upon" alt="Add 'Screen Shots &#038; ARD' to Stumble Upon" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http://techjournal.318.com/mac-os-x-server/screen-shots-ard/&amp;title=Screen+Shots+%26%23038%3B+ARD" title="Add 'Screen Shots &#038; ARD' to Google Bookmarks"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/google.png" title="Add 'Screen Shots &#038; ARD' to Google Bookmarks" alt="Add 'Screen Shots &#038; ARD' to Google Bookmarks" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://oknotizie.alice.it/post?url=http://techjournal.318.com/mac-os-x-server/screen-shots-ard/&amp;title=Screen+Shots+%26%23038%3B+ARD" title="Add 'Screen Shots &#038; ARD' to OKnotizie"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/oknotizie.gif" title="Add 'Screen Shots &#038; ARD' to OKnotizie" alt="Add 'Screen Shots &#038; ARD' to OKnotizie" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http://techjournal.318.com/mac-os-x-server/screen-shots-ard/&amp;T=Screen+Shots+%26%23038%3B+ARD" title="Add 'Screen Shots &#038; ARD' to Propeller"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/propeller.png" title="Add 'Screen Shots &#038; ARD' to Propeller" alt="Add 'Screen Shots &#038; ARD' to Propeller" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.bookmark.it/bookmark.php?url=http://techjournal.318.com/mac-os-x-server/screen-shots-ard/" title="Add 'Screen Shots &#038; ARD' to Bookmark.it"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/bookmark.png" title="Add 'Screen Shots &#038; ARD' to Bookmark.it" alt="Add 'Screen Shots &#038; ARD' to Bookmark.it" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://mystuff.ask.com/mysearch/QuickWebSave?v=1.2&amp;t=webpages&amp;title=Screen+Shots+%26%23038%3B+ARD&amp;url=http://techjournal.318.com/mac-os-x-server/screen-shots-ard/" title="Add 'Screen Shots &#038; ARD' to Ask"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/ask.png" title="Add 'Screen Shots &#038; ARD' to Ask" alt="Add 'Screen Shots &#038; ARD' to Ask" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="https://favorites.live.com/quickadd.aspx?url=http://techjournal.318.com/mac-os-x-server/screen-shots-ard/&amp;title=Screen+Shots+%26%23038%3B+ARD" title="Add 'Screen Shots &#038; ARD' to Live-MSN"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/live.png" title="Add 'Screen Shots &#038; ARD' to Live-MSN" alt="Add 'Screen Shots &#038; ARD' to Live-MSN" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://slashdot.org/bookmark.pl?title=Screen+Shots+%26%23038%3B+ARD&amp;url=http://techjournal.318.com/mac-os-x-server/screen-shots-ard/" title="Add 'Screen Shots &#038; ARD' to SlashDot"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/slashdot.png" title="Add 'Screen Shots &#038; ARD' to SlashDot" alt="Add 'Screen Shots &#038; ARD' to SlashDot" /></a><a class="social_img" onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,border=0,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.facebook.com/share.php?u=http://techjournal.318.com/mac-os-x-server/screen-shots-ard/&amp;t=Screen+Shots+%26%23038%3B+ARD" title="Add 'Screen Shots &#038; ARD' to FaceBook"><img src="http://techjournal.318.com/wp-content/plugins/social-bookmarking-reloaded/facebook.png" title="Add 'Screen Shots &#038; ARD' to FaceBook" alt="Add 'Screen Shots &#038; ARD' to FaceBook" /></a></div>
<!-- Social Bookmarking Reloaded END -->]]></content:encoded>
			<wfw:commentRss>http://techjournal.318.com/mac-os-x-server/screen-shots-ard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
