User jonathan-stafford - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T03:59:50Zhttp://stackoverflow.com/feeds/user/27587http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1689227/maven-is-it-a-good-common-practice-to-use-it-only-for-dependency-mgmt-and-the/1689697#16896970Answer by jonathan-stafford for maven - is it a good / common practice to use it only for dependency mgmt and then let the ant do everything else..?jonathan-stafford2009-11-06T19:16:23Z2009-11-06T19:16:23Z<p>I'm a Maven fan, but it's not without its problems. Some of the issues I remember (and still fight):</p>
<ul>
<li>Just like Ant, it has a magical syntax that can be hard to understand. If you're familiar with Any you may forget that, but lots of Ant tasks are terribly documented. The same is true for Maven. One of the reasons I eventually switched to Maven, though, is that for many of the mojos (similar to Ant tasks), you don't have to understand how to configure them. You just have to put the various pieces in the right place (which can be as hard as configuring a task...).</li>
<li>The automatic dependency management is amazing!... when it works. When you have to use non-Maven dependencies (like Hadoop) it becomes a problem. You either have to reference them as system scope dependencies, find somebody else who has packaged them, or package them yourself. And you eventually need to setup your own Maven proxy, like Nexus. And that's a whole extra hassle.</li>
<li>Maven is a lot of trouble on non-network or isolated LANs. The automagic is great, as long as you're networked.</li>
</ul>
http://stackoverflow.com/questions/1245176/how-can-i-use-the-input-logs-pcapbinary-with-map-rreduce-hadoop/1506189#15061891Answer by jonathan-stafford for How Can I Use The Input Logs .PCAP(Binary) With Map Rreduce Hadoopjonathan-stafford2009-10-01T20:12:03Z2009-10-01T20:12:03Z<p>Write an InputFormat that reads PCAP files, returning something like LongWritable for the key (the nth packet in the file) and PacketWritable as the value (containing the PCAP data). For the InputSplit you can use FileSplit, or MultiFileSplit for better performance, as an individual PCAP file can be read surprisingly quickly.</p>
<p>Unless your blocksize is larger than the size of your pcap files, you will experience lots of network IO...</p>
http://stackoverflow.com/questions/1436076/advanced-queries-in-hbase/1506162#15061621Answer by jonathan-stafford for Advanced queries in HBasejonathan-stafford2009-10-01T20:08:08Z2009-10-01T20:08:08Z<p>The query as described is better suited to a relational database. You can answer the query quickly, however, by precomputing the result. For example, you might have a table where the key is the number of classes in common, and the cells are individual students that have key-many classes in common.</p>
<p>You could use a variant on this to answer questions like "which students are in class X and class Y": use the classes as pieces of the key (in alphabetical ordering, or something at least consistent), and again, each column is a student.</p>
http://stackoverflow.com/questions/206320/how-do-i-distinguish-a-file-from-a-directory-in-perl/206351#2063513Answer by jonathan-stafford for How do I distinguish a file from a directory in Perl?jonathan-stafford2008-10-15T20:37:21Z2008-10-15T20:37:21Z<pre>
my $dh = opendir(".");
my @entries = grep !/^\.\.?$/, readdir($dh);
closedir $dh;
foreach my $entry (@entries) {
if(-f $entry) {
# $entry is a file
} elsif (-d $entry) {
# $entry is a directory
}
}
</pre>
http://stackoverflow.com/questions/205573/java-at-runtime-find-all-classes-in-app-that-extend-a-base-class/205903#2059030Answer by jonathan-stafford for Java: At runtime, find all classes in app that extend a base classjonathan-stafford2008-10-15T18:41:04Z2008-10-15T19:51:44Z<p>Unfortunately this isn't entirely possible as the ClassLoader won't tell you what classes are available. You can, however, get fairly close doing something like this:</p>
<p><code>
for (String classpathEntry : System.getProperty("java.class.path").split(System.getProperty("path.separator")) {<br/>
if (classpathEntry.endsWith(".jar")) {<br/>
File jar = new File(classpathEntry);<br/> JarInputStream is = new JarInputStream(new ByteArrayInputStream(jar));<br/>
<br/>
JarEntry entry;<br/>
while( (entry = is.getNextJarEntry()) != null) {<br/>
if(entry.getName().endsWith(".class")) {<br/>
// Class.forName(entry.getName()) and check<br/>
// for implementation of the interface<br/>
}<br/>
}<br/>
}<br/>
}<br/>
</code></p>
<p><strong>Edit:</strong> johnstok is correct (in the comments) that this only works for standalone Java applications, and won't work under an application server.</p>
http://stackoverflow.com/questions/205666/what-is-the-best-way-to-perform-timestamp-comparison-in-bash/205694#2056941Answer by jonathan-stafford for What is the Best Way to Perform Timestamp Comparison in Bashjonathan-stafford2008-10-15T17:43:41Z2008-10-15T17:55:39Z<p>Use the date command to convert the two times into a standard format, and subtract them. You'll probably want to store the previous execution time in a dotfile then do something like:</p>
<p><code>
last = <code>cat /tmp/.lastrun</code><br/>
curr = <code>date '+%s'</code><br/></p>
<p>diff = $(($curr - $last))<br/>
if [ $diff -gt 3600 ]; then<br/>
# ...<br/>
fi<br/></p>
<p>echo "$curr" >/tmp/.lastrun<br/>
</code></p>
<p>(Thanks, Steve.)</p>
http://stackoverflow.com/questions/205534/database-for-enormous-amounts-of-data/205649#2056493Answer by jonathan-stafford for Database for ENORMOUS amounts of data?jonathan-stafford2008-10-15T17:30:44Z2008-10-15T17:30:44Z<p>Really depends on what your idea of huge is, and what you want to do with it. For SQL-like access: </p>
<ul>
<li>Gigabytes of data can easily be handled by any FOSS or commercial product.</li>
<li>Hundreds of gigabytes+ usually means something like Teradata</li>
</ul>
<p>For more specialized processing, <a href="http://hadoop.apache.org/core/" rel="nofollow">Hadoop</a> and <a href="http://hadoop.apache.org/hbase/" rel="nofollow">HBase</a> are appropriate. (Several similar products exist including <a href="http://sector.sourceforge.net" rel="nofollow">Sector</a>/<a href="http://sector.sourceforge.net/sphere.html" rel="nofollow">Sphere</a> and <a href="http://www.gridgain.com/" rel="nofollow">GridGain</a> to name a couple.) Hadoop is a cloud-computing architecture modeled on Google's filesystem, and can hold hundreds of petabytes. HBase is a "database" which runs on Hadoop, with similar capabilities. I say "database" because it is column-oriented, a very different model from row-oriented databases like MySQL, PostreSQL, Oracle, etc.</p>
<p>Hadoop/HBase are more suited either to data warehousing, or situations where you can precompute the queries you'll need to run, and have them executed out-of-band via <a href="http://en.wikipedia.org/wiki/MapReduce" rel="nofollow">MapReduce</a>.</p>
http://stackoverflow.com/questions/169530/what-was-the-most-important-milestone-in-your-programming-career/205066#2050661Answer by jonathan-stafford for What was the most important milestone in your programming career?jonathan-stafford2008-10-15T15:02:49Z2008-10-15T16:05:50Z<p>Co-oping while in college. The degree itself was useful, but mostly because so many employers require one. But co-oping (cooperative education, a paid intership) was what really mattered to me. It made me stand out from all the other just-graduated students, and it made my college experience much more productive as I had actual programming experience.</p>
<p>So many students think homework assignments prepare you for real programming. And they are so wrong.</p>
http://stackoverflow.com/questions/203984/how-do-i-remove-repeated-elements-from-arraylist/203992#2039928Answer by jonathan-stafford for How do I remove repeated elements from ArrayList?jonathan-stafford2008-10-15T08:11:27Z2008-10-15T08:11:27Z<p>If you don't want duplicates in a Collection, you should consider why you're using a Collection that allows duplicates. The easiest way to remove repeated elements is to add the contents to a Set (which will not allow duplicates) and then add the Set back to the ArrayList:</p>
<p><code>
ArrayList al = new ArrayList();<br/>
// add elements to al, including duplicates<br/>
HashSet hs = new HashSet();<br/>
hs.addAll(al);<br/>
al.clear();<br/>
al.addAll(hs);<br/>
</code></p>
<p>Of course, this destroys the ordering of the elements in the ArrayList...</p>
http://stackoverflow.com/questions/62534/what-is-the-lowest-cost-cross-platform-approach-to-parse-xml-using-ksh/202176#2021761Answer by jonathan-stafford for What is the lowest-cost, cross-platform approach to parse XML using ksh?jonathan-stafford2008-10-14T18:01:16Z2008-10-14T18:01:16Z<p>Depending on your meaning of "parsing" <a href="http://xmlstar.sourceforge.net/" rel="nofollow">XMLStarlet</a> may be a good option. It's completely command-line driven and supports selection and editing of XML files, as well as XSLT.</p>
http://stackoverflow.com/questions/1656639/killer-facility-or-scenario-that-would-make-another-jvm-a-better-choice-than-the/1656943#1656943Comment by jonathan-stafford on Killer facility or scenario that would make another JVM a better choice than the Sun JVM?jonathan-stafford2009-11-06T19:19:47Z2009-11-06T19:19:47ZMore configurable than the Sun JVM? Sun's JVM must have 20+ configurable parameters. Having even more is not a good thing. <a href="http://java.sun.com/docs/hotspot/gc5.0/gc_tuning_5.html" rel="nofollow">java.sun.com/docs/hotspot/…</a>http://stackoverflow.com/questions/194147/are-there-good-reasons-not-to-use-an-orm/194204#194204Comment by jonathan-stafford on Are there good reasons not to use an ORM?jonathan-stafford2008-10-17T17:49:42Z2008-10-17T17:49:42ZThe repetition isn't true any longer. If you use JPA annotations, you only need to specify things once. Hibernate will even build your database create statements for you, although that's most useful for determining if your mapping was correct.http://stackoverflow.com/questions/205666/what-is-the-best-way-to-perform-timestamp-comparison-in-bash/205694#205694Comment by jonathan-stafford on What is the Best Way to Perform Timestamp Comparison in Bashjonathan-stafford2008-10-15T17:54:48Z2008-10-15T17:54:48ZBecause although I thought that option existed, I kept overlooking it...http://stackoverflow.com/questions/58640/great-programming-quotes/58692#58692Comment by jonathan-stafford on Great programming quotesjonathan-stafford2008-10-15T17:33:03Z2008-10-15T17:33:03ZTrying to account for this law, in my office we think the maximum time to deliver a project is bound by twice the estimate to the next unit of time. So, a 2 week estimate should never take more than 4 months. We've proven even this insufficient...