<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Tech Notes @ Fernvale</title>
	<atom:link href="http://fernvale.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://fernvale.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sun, 25 Sep 2011 02:32:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='fernvale.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Tech Notes @ Fernvale</title>
		<link>http://fernvale.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://fernvale.wordpress.com/osd.xml" title="Tech Notes @ Fernvale" />
	<atom:link rel='hub' href='http://fernvale.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Generic DAO</title>
		<link>http://fernvale.wordpress.com/2010/11/23/generic-dao/</link>
		<comments>http://fernvale.wordpress.com/2010/11/23/generic-dao/#comments</comments>
		<pubDate>Tue, 23 Nov 2010 10:01:36 +0000</pubDate>
		<dc:creator>singchyun</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://fernvale.wordpress.com/?p=72</guid>
		<description><![CDATA[This is based on Generic Data Access Objects on Hibernate forums. I modified it for JPA. import java.lang.reflect.ParameterizedType; import javax.persistence.EntityManager; public abstract class GenericDAOImpl { private Class persistentClass; protected EntityManager em; @SuppressWarnings("unchecked") public GenericDAOImpl(EntityManager emgr) { this.persistentClass = (Class) ((ParameterizedType) getClass() .getGenericSuperclass()).getActualTypeArguments()[0]; this.em = emgr; } public T findById(ID id) { T entity = em.find(persistentClass, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=72&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is based on Generic Data Access Objects on Hibernate forums. I modified it for JPA.<br />
<code><br />
import java.lang.reflect.ParameterizedType;<br />
import javax.persistence.EntityManager;</p>
<p>public abstract class GenericDAOImpl {<br />
private Class persistentClass;<br />
protected EntityManager em;</p>
<p>@SuppressWarnings("unchecked")<br />
public GenericDAOImpl(EntityManager emgr) {<br />
this.persistentClass = (Class) ((ParameterizedType) getClass()<br />
.getGenericSuperclass()).getActualTypeArguments()[0];<br />
this.em = emgr;<br />
}</p>
<p>public T findById(ID id) {<br />
T entity = em.find(persistentClass, id);<br />
return entity;<br />
}</p>
<p>public void create(T entity) {<br />
em.persist(entity);<br />
}</p>
<p>public void update(T entity) {<br />
em.merge(entity);<br />
}</p>
<p>public void remove(T entity) {<br />
em.remove(entity);<br />
}<br />
}<br />
</code></p>
<p>Source of info: <a href="http://community.jboss.org/wiki/GenericDataAccessObjects#The_DAO_interfaces">http://community.jboss.org/wiki/GenericDataAccessObjects#The_DAO_interfaces</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fernvale.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fernvale.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fernvale.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fernvale.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fernvale.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fernvale.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fernvale.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fernvale.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fernvale.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fernvale.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fernvale.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fernvale.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fernvale.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fernvale.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=72&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernvale.wordpress.com/2010/11/23/generic-dao/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f1f1b918d57e14def3c22be0de21770f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sing chyun</media:title>
		</media:content>
	</item>
		<item>
		<title>Making Vista faster</title>
		<link>http://fernvale.wordpress.com/2009/03/19/making-vista-faster/</link>
		<comments>http://fernvale.wordpress.com/2009/03/19/making-vista-faster/#comments</comments>
		<pubDate>Thu, 19 Mar 2009 03:43:47 +0000</pubDate>
		<dc:creator>singchyun</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[windows vista]]></category>

		<guid isPermaLink="false">http://fernvale.wordpress.com/2009/03/19/making-vista-faster/</guid>
		<description><![CDATA[Some handy tips on improving Vista&#8217;s performance. Get rid of bloat. http://www.techsupportalert.com/make-vista-run-faster.htm<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=68&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Some handy tips on improving Vista&#8217;s performance. Get rid of bloat.</p>
<p><a href="http://www.techsupportalert.com/make-vista-run-faster.htm">http://www.techsupportalert.com/make-vista-run-faster.htm</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fernvale.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fernvale.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fernvale.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fernvale.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fernvale.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fernvale.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fernvale.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fernvale.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fernvale.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fernvale.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fernvale.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fernvale.wordpress.com/68/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fernvale.wordpress.com/68/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fernvale.wordpress.com/68/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=68&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernvale.wordpress.com/2009/03/19/making-vista-faster/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f1f1b918d57e14def3c22be0de21770f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sing chyun</media:title>
		</media:content>
	</item>
		<item>
		<title>Starting JavaDB for Sun Portal Server</title>
		<link>http://fernvale.wordpress.com/2008/11/20/starting-javadb-for-sun-portal-server/</link>
		<comments>http://fernvale.wordpress.com/2008/11/20/starting-javadb-for-sun-portal-server/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 04:59:26 +0000</pubDate>
		<dc:creator>singchyun</dc:creator>
				<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://fernvale.wordpress.com/?p=66</guid>
		<description><![CDATA[Starting/stopping JavaDB: /usr/jdk/entsys-j2se/bin/java -classpath /opt/SUNWjavadb/lib/derby.jar:/opt/SUNWjavadb/lib/derbytools.jar:/opt/SUNWjavadb/lib/derbynet.jar -Dderby.system.home=/var/opt/SUNWportal/derby org.apache.derby.drda.NetworkServerControl &#60;start&#124;shutdown&#62; The process will be connected to the terminal from which it was started. To leave it running in the background, use the nohup command. References: http://docs.sun.com/app/docs/doc/819-5025/6n74td5jt?a=view<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=66&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Starting/stopping JavaDB:</p>
<p>/usr/jdk/entsys-j2se/bin/java -classpath /opt/SUNWjavadb/lib/derby.jar:/opt/SUNWjavadb/lib/derbytools.jar:/opt/SUNWjavadb/lib/derbynet.jar -Dderby.system.home=/var/opt/SUNWportal/derby org.apache.derby.drda.NetworkServerControl &lt;start|shutdown&gt;</p>
<p>The process will be connected to the terminal from which it was started. To leave it running in the background, use the nohup command.</p>
<p>References: <a href="http://docs.sun.com/app/docs/doc/819-5025/6n74td5jt?a=view" target="_blank">http://docs.sun.com/app/docs/doc/819-5025/6n74td5jt?a=view</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fernvale.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fernvale.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fernvale.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fernvale.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fernvale.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fernvale.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fernvale.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fernvale.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fernvale.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fernvale.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fernvale.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fernvale.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fernvale.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fernvale.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=66&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernvale.wordpress.com/2008/11/20/starting-javadb-for-sun-portal-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f1f1b918d57e14def3c22be0de21770f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sing chyun</media:title>
		</media:content>
	</item>
		<item>
		<title>Adding new disk to Solaris 10 on VMWare</title>
		<link>http://fernvale.wordpress.com/2008/11/19/adding-new-disk-to-solaris-10-on-vmware/</link>
		<comments>http://fernvale.wordpress.com/2008/11/19/adding-new-disk-to-solaris-10-on-vmware/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 13:36:27 +0000</pubDate>
		<dc:creator>singchyun</dc:creator>
				<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://fernvale.wordpress.com/?p=64</guid>
		<description><![CDATA[A wonderful and thorough guide on adding new disks to Solaris 10 on VMWare: http://blogs.sun.com/harcey/entry/solaris_x86_vmware_adding_a<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=64&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A wonderful and thorough guide on adding new disks to Solaris 10 on VMWare:</p>
<p><a href="http://blogs.sun.com/harcey/entry/solaris_x86_vmware_adding_a">http://blogs.sun.com/harcey/entry/solaris_x86_vmware_adding_a</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fernvale.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fernvale.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fernvale.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fernvale.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fernvale.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fernvale.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fernvale.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fernvale.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fernvale.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fernvale.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fernvale.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fernvale.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fernvale.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fernvale.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=64&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernvale.wordpress.com/2008/11/19/adding-new-disk-to-solaris-10-on-vmware/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f1f1b918d57e14def3c22be0de21770f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sing chyun</media:title>
		</media:content>
	</item>
		<item>
		<title>Adding swap space in Solaris</title>
		<link>http://fernvale.wordpress.com/2008/11/19/adding-swap-space-in-solaris/</link>
		<comments>http://fernvale.wordpress.com/2008/11/19/adding-swap-space-in-solaris/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 13:26:46 +0000</pubDate>
		<dc:creator>singchyun</dc:creator>
				<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://fernvale.wordpress.com/?p=62</guid>
		<description><![CDATA[When desperate for more swap space in Solaris, this will add more swap space temporarily until the next reboot: mkfile 512m /path/to/new/swap/file swap -a /path/to/new/swap/file Verify the new swap space: swap -l References: http://www.tech-recipes.com/rx/163/add-swap-space-temporarily-in-solaris/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=62&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When desperate for more swap space in Solaris, this will add more swap space temporarily until the next reboot:</p>
<blockquote><p>mkfile 512m /path/to/new/swap/file</p>
<p>swap -a /path/to/new/swap/file</p></blockquote>
<p>Verify the new swap space:</p>
<blockquote><p>swap -l</p></blockquote>
<p>References: <a href="http://www.tech-recipes.com/rx/163/add-swap-space-temporarily-in-solaris/">http://www.tech-recipes.com/rx/163/add-swap-space-temporarily-in-solaris/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fernvale.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fernvale.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fernvale.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fernvale.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fernvale.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fernvale.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fernvale.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fernvale.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fernvale.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fernvale.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fernvale.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fernvale.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fernvale.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fernvale.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=62&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernvale.wordpress.com/2008/11/19/adding-swap-space-in-solaris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f1f1b918d57e14def3c22be0de21770f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sing chyun</media:title>
		</media:content>
	</item>
		<item>
		<title>Changing Solaris host name and domain name</title>
		<link>http://fernvale.wordpress.com/2008/11/19/changing-solaris-host-name-and-domain-name/</link>
		<comments>http://fernvale.wordpress.com/2008/11/19/changing-solaris-host-name-and-domain-name/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 16:37:48 +0000</pubDate>
		<dc:creator>singchyun</dc:creator>
				<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://fernvale.wordpress.com/?p=58</guid>
		<description><![CDATA[References: http://pantsblazing.com/geek/get_solaris_online.html In addition, edit /etc/defaultdomain After the above is done, restart network services: svcadm restart network/physical<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=58&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>References: <a href="http://pantsblazing.com/geek/get_solaris_online.html" target="_blank">http://pantsblazing.com/geek/get_solaris_online.html</a></p>
<p><em><strong>In addition</strong></em>, edit /etc/defaultdomain</p>
<p>After the above is done, restart network services: svcadm restart network/physical</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fernvale.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fernvale.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fernvale.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fernvale.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fernvale.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fernvale.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fernvale.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fernvale.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fernvale.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fernvale.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fernvale.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fernvale.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fernvale.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fernvale.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=58&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernvale.wordpress.com/2008/11/19/changing-solaris-host-name-and-domain-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f1f1b918d57e14def3c22be0de21770f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sing chyun</media:title>
		</media:content>
	</item>
		<item>
		<title>ufsdump and ufsrestore</title>
		<link>http://fernvale.wordpress.com/2008/11/04/ufsdump-and-ufsrestore/</link>
		<comments>http://fernvale.wordpress.com/2008/11/04/ufsdump-and-ufsrestore/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 14:24:55 +0000</pubDate>
		<dc:creator>singchyun</dc:creator>
				<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://fernvale.wordpress.com/?p=56</guid>
		<description><![CDATA[ufsdump 0f /path/to/mydumpfile /export/home/mystuffs-to-be-backup/ ufsrestore fr mydumpfile  (this will dump the contents in the current working directory)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=56&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul>
<li>ufsdump 0f /path/to/mydumpfile /export/home/mystuffs-to-be-backup/</li>
<li>ufsrestore fr mydumpfile  <em>(this will dump the contents in the current working directory)</em></li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fernvale.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fernvale.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fernvale.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fernvale.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fernvale.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fernvale.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fernvale.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fernvale.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fernvale.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fernvale.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fernvale.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fernvale.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fernvale.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fernvale.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=56&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernvale.wordpress.com/2008/11/04/ufsdump-and-ufsrestore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f1f1b918d57e14def3c22be0de21770f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sing chyun</media:title>
		</media:content>
	</item>
		<item>
		<title>Optimal HTML width: 960 pixels</title>
		<link>http://fernvale.wordpress.com/2008/10/07/optimal-html-width-960-pixels/</link>
		<comments>http://fernvale.wordpress.com/2008/10/07/optimal-html-width-960-pixels/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 12:53:18 +0000</pubDate>
		<dc:creator>singchyun</dc:creator>
				<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://fernvale.wordpress.com/?p=52</guid>
		<description><![CDATA[Assuming a screen resolution of 1024px, what should be the optimal HTML page width? Cameron Moll shares an interesting concept: a 960-pixel page width. One of the reasons is due to 960 being divisible by 1, 2, 3, 4, 5, 6, 8, 10, 12, 15, 16, 20, 24, 30, 32, 40, 48, 60, 64, 80, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=52&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Assuming a screen resolution of 1024px, what should be the optimal HTML page width?</p>
<p><a href="http://www.cameronmoll.com/archives/001220.html" target="_blank">Cameron Moll</a> shares an interesting concept: a <strong>960</strong>-pixel page width. One of the reasons is due to 960 being divisible by 1, 2, 3, 4, 5, 6, 8, 10, 12, 15, 16, 20, 24, 30, 32, 40, 48, 60, 64, 80, 96, 120, 160, 192, 240, 320, 480, and 960. It sure offers a lot of grid possibilities. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fernvale.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fernvale.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fernvale.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fernvale.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fernvale.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fernvale.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fernvale.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fernvale.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fernvale.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fernvale.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fernvale.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fernvale.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fernvale.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fernvale.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=52&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernvale.wordpress.com/2008/10/07/optimal-html-width-960-pixels/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f1f1b918d57e14def3c22be0de21770f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sing chyun</media:title>
		</media:content>
	</item>
		<item>
		<title>Small little icons</title>
		<link>http://fernvale.wordpress.com/2008/09/18/small-little-icons/</link>
		<comments>http://fernvale.wordpress.com/2008/09/18/small-little-icons/#comments</comments>
		<pubDate>Thu, 18 Sep 2008 09:51:06 +0000</pubDate>
		<dc:creator>singchyun</dc:creator>
				<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://fernvale.wordpress.com/?p=50</guid>
		<description><![CDATA[    Needing small little utility icons for your applications? Find them all here at: http://www.famfamfam.com/lab/icons/silk/: Seven hundred 16-by-16 pixel icons to tickle your fancy.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=50&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://www.famfamfam.com/lab/icons/silk/icons/table_edit.png" alt="" width="16" height="16" /> <img class="alignnone" src="http://www.famfamfam.com/lab/icons/silk/icons/wand.png" alt="" width="16" height="16" /> <img class="alignnone" src="http://www.famfamfam.com/lab/icons/silk/icons/table_save.png" alt="" width="16" height="16" /> <img class="alignnone" src="http://www.famfamfam.com/lab/icons/silk/icons/accept.png" alt="" width="16" height="16" /></p>
<p>Needing small little utility icons for your applications? Find them all here at: <a href="http://www.famfamfam.com/lab/icons/silk/">http://www.famfamfam.com/lab/icons/silk/</a>: <strong>Seven hundred</strong> 16-by-16 pixel icons to tickle your fancy. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fernvale.wordpress.com/50/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fernvale.wordpress.com/50/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fernvale.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fernvale.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fernvale.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fernvale.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fernvale.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fernvale.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fernvale.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fernvale.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fernvale.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fernvale.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fernvale.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fernvale.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fernvale.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fernvale.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=50&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernvale.wordpress.com/2008/09/18/small-little-icons/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f1f1b918d57e14def3c22be0de21770f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sing chyun</media:title>
		</media:content>

		<media:content url="http://www.famfamfam.com/lab/icons/silk/icons/table_edit.png" medium="image" />

		<media:content url="http://www.famfamfam.com/lab/icons/silk/icons/wand.png" medium="image" />

		<media:content url="http://www.famfamfam.com/lab/icons/silk/icons/table_save.png" medium="image" />

		<media:content url="http://www.famfamfam.com/lab/icons/silk/icons/accept.png" medium="image" />
	</item>
		<item>
		<title>Develop a full application using CakePHP</title>
		<link>http://fernvale.wordpress.com/2008/08/29/develop-a-full-application-using-cakephp/</link>
		<comments>http://fernvale.wordpress.com/2008/08/29/develop-a-full-application-using-cakephp/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 17:34:48 +0000</pubDate>
		<dc:creator>singchyun</dc:creator>
				<category><![CDATA[cakephp]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://fernvale.wordpress.com/?p=47</guid>
		<description><![CDATA[James Fairhurst has come up with an excellent series of postings on how to build a full application using CakePHP. It is a wonderful tutorial for newbies who are starting on CakePHP. Thanks James! Follow the whole series here: http://www.jamesfairhurst.co.uk/tags/view/cakephp/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=47&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>James Fairhurst has come up with an excellent series of postings on how to build a <em><strong>full </strong></em>application using CakePHP. It is a wonderful tutorial for newbies who are starting on CakePHP. Thanks James!</p>
<p>Follow the whole series here: <a href="http://www.jamesfairhurst.co.uk/tags/view/cakephp/" target="_blank">http://www.jamesfairhurst.co.uk/tags/view/cakephp/</a></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/fernvale.wordpress.com/47/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/fernvale.wordpress.com/47/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/fernvale.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/fernvale.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/fernvale.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/fernvale.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/fernvale.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/fernvale.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/fernvale.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/fernvale.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/fernvale.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/fernvale.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/fernvale.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/fernvale.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/fernvale.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/fernvale.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=fernvale.wordpress.com&amp;blog=946228&amp;post=47&amp;subd=fernvale&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://fernvale.wordpress.com/2008/08/29/develop-a-full-application-using-cakephp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/f1f1b918d57e14def3c22be0de21770f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">sing chyun</media:title>
		</media:content>
	</item>
	</channel>
</rss>
