<?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>Pacific-Design.com</title>
	<atom:link href="http://pacific-design.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pacific-design.com</link>
	<description>Custom high performance search engine development contract or hire by Kevin Duraj Tel: (310) 774-948</description>
	<lastBuildDate>Sat, 06 Mar 2010 21:29:57 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Running Hadoop Jobs Mac OS X</title>
		<link>http://pacific-design.com/2010/03/running-hadoop-jobs-mac-os-x/</link>
		<comments>http://pacific-design.com/2010/03/running-hadoop-jobs-mac-os-x/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 04:16:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hadoop]]></category>

		<guid isPermaLink="false">http://pacific-design.com/?p=388</guid>
		<description><![CDATA[This guide is written to help Cornell students using Mac OS X 10.5 with setting up a development environment for working with Hadoop and running Hadoop jobs on the Cornell Center for Advanced Computing (CAC) Hadoop cluster. This guide will walk you through compiling and running a simple example Hadoop job. More information is available at the [...]]]></description>
			<content:encoded><![CDATA[<p>This guide is written to help Cornell students using Mac OS X 10.5 with setting up a development environment for working with <a href="http://www.hadoop.org">Hadoop</a> and running Hadoop jobs on the <a href="http://www.cac.cornell.edu/">Cornell Center for Advanced Computing (CAC)</a> Hadoop cluster. This guide will walk you through compiling and running a simple example Hadoop job. More information is available at the official <a href="http://hadoop.apache.org/core/docs/current/mapred_tutorial.html#Example%3A+WordCount+v1.0">Hadoop Map-Reduce Tutorial.</a></p>
<p>Reference: <a href="http://www.infosci.cornell.edu/hadoop/mac.html">http://www.infosci.cornell.edu/hadoop/mac.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pacific-design.com/2010/03/running-hadoop-jobs-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create Remove Swapfile</title>
		<link>http://pacific-design.com/2010/03/create-remove-swapfile/</link>
		<comments>http://pacific-design.com/2010/03/create-remove-swapfile/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 07:46:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux Administration]]></category>

		<guid isPermaLink="false">http://pacific-design.com/?p=346</guid>
		<description><![CDATA[
#!/bin/sh
#----------------------------------------------------------#
function create_swapfile()
{
  echo "Creating Swap file ..."
  dd if=/dev/zero of=/swapfile bs=1024 count=12582912
  mkswap /swapfile
  swapon /swapfile
}
#----------------------------------------------------------#
function remove_swapfile()
{
  echo "Removing Swap file ..."
  swapoff /swapfile
  rm /swapfile
}
#----------------------------------------------------------#
remove_swapfile

]]></description>
			<content:encoded><![CDATA[<p><code><br />
#!/bin/sh<br />
#----------------------------------------------------------#<br />
function create_swapfile()<br />
{<br />
  echo "Creating Swap file ..."<br />
  dd if=/dev/zero of=/swapfile bs=1024 count=12582912<br />
  mkswap /swapfile<br />
  swapon /swapfile<br />
}<br />
#----------------------------------------------------------#<br />
function remove_swapfile()<br />
{<br />
  echo "Removing Swap file ..."<br />
  swapoff /swapfile<br />
  rm /swapfile<br />
}<br />
#----------------------------------------------------------#</p>
<p>remove_swapfile<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://pacific-design.com/2010/03/create-remove-swapfile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Installation on Mac</title>
		<link>http://pacific-design.com/2010/03/zend-installation-on-mac/</link>
		<comments>http://pacific-design.com/2010/03/zend-installation-on-mac/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 05:52:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP Zend Framework]]></category>

		<guid isPermaLink="false">http://pacific-design.com/?p=341</guid>
		<description><![CDATA[Zend_Tool for OS X or Linux
• Extract the downloaded archive file, ZendFramework-1.10.0-minimal.zip in your Downloads directory by double clicking on it.
• Copy to /usr/local/ZendFrameworkCli by opening Terminal and typing:
sudo cp -r ~/Downloads/ZendFramework-1.10.0-minimal /usr/local/ZendFrameworkCli
• Edit your bash profile to provide an alias:
• From Terminal, type: open ~/.bash_profile
alias zf=/usr/local/ZendFrameworkCli/bin/zf.sh 
to the end of the file
• Save and [...]]]></description>
			<content:encoded><![CDATA[<p>Zend_Tool for OS X or Linux<br />
• Extract the downloaded archive file, ZendFramework-1.10.0-minimal.zip in your Downloads directory by double clicking on it.<br />
• Copy to /usr/local/ZendFrameworkCli by opening Terminal and typing:<br />
<strong>sudo cp -r ~/Downloads/ZendFramework-1.10.0-minimal /usr/local/ZendFrameworkCli</strong></p>
<p>• Edit your bash profile to provide an alias:<br />
• From Terminal, type: open ~/.bash_profile<br />
<strong>alias zf=/usr/local/ZendFrameworkCli/bin/zf.sh </strong><br />
to the end of the file<br />
• Save and exit</p>
]]></content:encoded>
			<wfw:commentRss>http://pacific-design.com/2010/03/zend-installation-on-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yum Repository by Utter Ramblings</title>
		<link>http://pacific-design.com/2010/02/yum-repository/</link>
		<comments>http://pacific-design.com/2010/02/yum-repository/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 06:28:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CentOS]]></category>

		<guid isPermaLink="false">http://pacific-design.com/?p=334</guid>
		<description><![CDATA[Reference: http://www.jasonlitka.com/
]]></description>
			<content:encoded><![CDATA[<p>Reference: <a href="http://www.jasonlitka.com/">http://www.jasonlitka.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pacific-design.com/2010/02/yum-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital Element</title>
		<link>http://pacific-design.com/2010/02/digital-element/</link>
		<comments>http://pacific-design.com/2010/02/digital-element/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 04:54:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://pacific-design.com/?p=332</guid>
		<description><![CDATA[Digital Element delivers the de facto standard in IP Intelligence and geotargeting technologies, which are leveraged by the world’s largest ad networks, publishers, emerging technology companies, e-tailers, analytics platforms and more. In business since 1999, Digital Element strives to bring new reach, relevance and revenue to its clients&#8217; online endeavors, with the ultimate goal of [...]]]></description>
			<content:encoded><![CDATA[<p>Digital Element delivers the de facto standard in IP Intelligence and geotargeting technologies, which are leveraged by the world’s largest ad networks, publishers, emerging technology companies, e-tailers, analytics platforms and more. In business since 1999, Digital Element strives to bring new reach, relevance and revenue to its clients&#8217; online endeavors, with the ultimate goal of improving the online experience for consumers around the world.</p>
<p>Reference: <a href="http://www.digital-element.com/">http://www.digital-element.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pacific-design.com/2010/02/digital-element/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove Subversion</title>
		<link>http://pacific-design.com/2010/02/remove-subversion/</link>
		<comments>http://pacific-design.com/2010/02/remove-subversion/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 01:45:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Bash]]></category>

		<guid isPermaLink="false">http://pacific-design.com/?p=330</guid>
		<description><![CDATA[
#!/bin/sh
echo "Recursively removing .svn folders from"
pwd
rm -rf `find . -type d -name .svn`

]]></description>
			<content:encoded><![CDATA[<p><code><br />
#!/bin/sh<br />
echo "Recursively removing .svn folders from"<br />
pwd<br />
rm -rf `find . -type d -name .svn`<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://pacific-design.com/2010/02/remove-subversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Annotations source 1.3</title>
		<link>http://pacific-design.com/2010/02/annotations-source-1-3/</link>
		<comments>http://pacific-design.com/2010/02/annotations-source-1-3/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 01:16:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Maven]]></category>

		<guid isPermaLink="false">http://pacific-design.com/?p=308</guid>
		<description><![CDATA[Annotations are not supported in -source 1.3 – Maven
To enable annotation the following configuration needs to be added to project pom.xml




      maven-compiler-plugin
      
        1.6
        1.6
      
   [...]]]></description>
			<content:encoded><![CDATA[<p>Annotations are not supported in -source 1.3 – Maven</p>
<p>To enable annotation the following configuration needs to be added to project pom.xml</p>
<p><xmp></p>
<p><build></p>
<plugins>
<plugin>
      <artifactid>maven-compiler-plugin</artifactid><br />
      <configuration><br />
        <source>1.6</source><br />
        <target>1.6</target><br />
      </configuration>
    </plugin>
</plugins>
</build></p>
<p></xmp></p>
]]></content:encoded>
			<wfw:commentRss>http://pacific-design.com/2010/02/annotations-source-1-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maven Settings with IntelliJ</title>
		<link>http://pacific-design.com/2010/02/maven-intellij/</link>
		<comments>http://pacific-design.com/2010/02/maven-intellij/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 19:57:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Maven]]></category>

		<guid isPermaLink="false">http://pacific-design.com/?p=290</guid>
		<description><![CDATA[Maven tutorial in 5 minutes
http://maven.apache.org/guides/getting-started/maven-in-five-minutes.html
Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project&#8217;s build, reporting and documentation from a central piece of information.

Settings
Maven
Maven Home Directory:
/usr/share/java/apache-maven-2.0.9

Reference: http://maven.apache.org/download.html
]]></description>
			<content:encoded><![CDATA[<p>Maven tutorial in 5 minutes</p>
<p><a href="http://maven.apache.org/guides/getting-started/maven-in-five-minutes.html">http://maven.apache.org/guides/getting-started/maven-in-five-minutes.html</a></p>
<p>Apache Maven is a software project management and comprehension tool. Based on the concept of a project object model (POM), Maven can manage a project&#8217;s build, reporting and documentation from a central piece of information.</p>
<ol>
<li>Settings</li>
<li>Maven</li>
<li>Maven Home Directory:</li>
<li>/usr/share/java/apache-maven-2.0.9</li>
</ol>
<p>Reference: <a href="http://maven.apache.org/download.html">http://maven.apache.org/download.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pacific-design.com/2010/02/maven-intellij/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Module Dependencies Settings with IntelliJ</title>
		<link>http://pacific-design.com/2010/02/mac-intellij-java-module-dependencies/</link>
		<comments>http://pacific-design.com/2010/02/mac-intellij-java-module-dependencies/#comments</comments>
		<pubDate>Sun, 28 Feb 2010 19:36:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://pacific-design.com/?p=285</guid>
		<description><![CDATA[
Project Structure
Modules
Dependencies
Module SDK &#8211; new
/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0

]]></description>
			<content:encoded><![CDATA[<ul>
<li>Project Structure</li>
<li>Modules</li>
<li>Dependencies</li>
<li>Module SDK &#8211; new</li>
<li>/System/Library/Frameworks/JavaVM.framework/Versions/1.6.0</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://pacific-design.com/2010/02/mac-intellij-java-module-dependencies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jonathan Wellons</title>
		<link>http://pacific-design.com/2010/02/jonathan-wellons/</link>
		<comments>http://pacific-design.com/2010/02/jonathan-wellons/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 15:52:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[People]]></category>

		<guid isPermaLink="false">http://pacific-design.com/?p=283</guid>
		<description><![CDATA[Linear Programming, Optimization, Wireless Mesh Network Routing, Traffic Engineering, Operations Research, Algorithms, Programming Languages, Limits of Computing, Computer Science Education, Number Theory and Recreational Mathematics.
Reference: http://jonathanwellons.com/
]]></description>
			<content:encoded><![CDATA[<p>Linear Programming, Optimization, Wireless Mesh Network Routing, Traffic Engineering, Operations Research, Algorithms, Programming Languages, Limits of Computing, Computer Science Education, Number Theory and Recreational Mathematics.</p>
<p>Reference: <a href="http://jonathanwellons.com/">http://jonathanwellons.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pacific-design.com/2010/02/jonathan-wellons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
