feedface.com
http://www.feedface.com/
OS X, The World and BeyondLessons from My Father"<i>He said two things matter when you break the law: the skill of your attorney and your control of the media."</i><br/>
<br/>
Juan Thompson's lesson from his father - Hunter S. Thompson<br/>
<a href="http://men.msn.com/articlebl.aspx?cp-documentid=7880247>1=32001" target="_blank">Article on MSN</a> (via <a href="http://daringfireball.net/" target="_blank">Daring Fireball</a>) -patrick2008-06-16T20:11:00+00:00DCistLiving in the metropolitan area of D.C.?<br/>
Then <a href="http://dcist.com/" target="_blank">DCist</a> is definitely something for you. Events, news, ... basically a summary of what's happening in D.C. (and around it) right now. -patrick2008-06-12T04:49:00+00:00TorGeo v1.00A Perl script that combines the cached router information of Tor and Vidalia's geo-cache to create country-specific exit-nodes.<br/>
Another fine <a href="http://www.feedface.com/projects/mini.html">mini project</a> -patrick2008-06-08T00:02:00+00:00NetBeans and Log4JThanks to <a href="http://blogs.cismet.de/gadgets/beanmill/" target="_blank">Beanmill</a>, it is now easy to capture <a href="http://logging.apache.org/log4j/" target="_blank">Log4J</a> output easily within <a href="http://www.netbeans.org" target="_blank">NetBeans</a> (tested w/ 6.1).<br/>
Here some code to make it more clear:<br/>
<br/>
<b>Main.java</b></br/>
<pre>import org.apache.log4j.PropertyConfigurator;
public class Main {
public static void main(String[] args) {
PropertyConfigurator.configure("Logging.properties");
/* ... */
}
}</pre>
<b>MyClass.java</b></br/>
<pre>import org.apache.log4j.Logger;
public class MyClass{
private static final Logger LOGGER = Logger.getLogger(MyClass.class);
public void doSomething(int number) {
LOGGER.trace("Entering (" + number + ")");
}
}</pre>
<b>Logging.properties</b></br/>
<pre>log4j.appender.socket=org.apache.log4j.net.SocketAppender
log4j.appender.socket.RemoteHost=localhost
log4j.appender.socket.Port=4445
log4j.appender.socket.LocationInfo=false
log4j.rootLogger=ALL, socket</pre> -patrick2008-06-05T22:11:00+00:00"here in korea" blogSandra moved with her family from the U.S. to South Korea. Now she fills her blog with thoughts on Korea, issues they are facing, etc.<br/>
<a href="http://hereinkorea.blogspot.com/">Here In Korea</a> -patrick2008-05-29T06:24:00+00:00