Articles in the Uncategorized Category
Uncategorized »
In an earlier blog entry, I pondered the question of whether or not XDoclet was a necessary tool. Norman Richards has a wonderful response to my question.
Uncategorized »
I use Microsoft Outlook for all my e-mail and contact management, so I’ve been looking for a news aggregator that integrated well with Outlook.
I tried intraVnews and I was fairly happy with it. There are a few problems, but its a pretty good product overall. The main problem was that every news item is pulled in as a seperate item (like an e-mail). This was a little annoying because I subscribe to about 30 different sources and I get a lot of news updates. I wanted …
Uncategorized »
In his Weblog, Perryn Fowler recently advised to “Make it easy to use well, not hard to use badly“. This makes a lot of sense to me and reminds me of another bit of wisdom that I’ve heard from sales people, “cater to your top performers”.
Wisdom from the realm of sales advises sales managers to focus their training budgets on their top sales people. For example, many sales managers will spend their money sending their top sales-people to training seminars, while not training the rest of the …
Uncategorized »
I just added comments to my blog using Halo Scan.
Update: I am now using blogger.com’s new commenting capability.
Uncategorized »
I heard a news headline on the radio this morning about how some people in China are finding ways to circumvent the governments attempts to restrict internet access. I got to thinking about the possibility of a Web-based Web browser. After doing a search, I was quickly reminded that just about 99.99% of any software ideas anybody comes up with, somebody else has already written or pondered about.
The way it would work is that you would have a server that has no filtering/restrictions that exists outside of the …
Uncategorized »
I have two new articles online:
GZIPping with Java
JBoss Meets Eclipse: Introducing the JBoss IDE
Uncategorized »
Microsoft and Sendmail must have read my February 11th blog entry.
They are coming up with a solution to stop spam which essentially uses authentication. This sounds promising.
Uncategorized »
Here is a simple (homegrown) Timer class that I use to capture execution time in Java:
import java.io.PrintStream;
final class Timer
{
private long startTime;
private long endTime;
public Timer()
{
reset();
}
public void start()
{
System.gc();
startTime =
System.currentTimeMillis();
}
public void end()
{
System.gc();
endTime =
System.currentTimeMillis();
}
public long duration()
{
return (endTime - startTime);
}
public void printDuration( PrintStream out )
{
long elapsedTimeInSecond =
duration() / 1000;
long remainderInMillis =
duration() % 1000;
out.println(”\nTotal execution time:”
+ elapsedTimeInSecond
+ “.”
+ remainderInMillis
+ ” seconds”);
}
public void reset()
{
startTime = 0;
endTime = 0;
}
public static void main( String[] args )
{
Timer timer = new Timer();
timer.start();
for (int i = 0; i < 500; i++)
{
System.out.print(”#”);
}
timer.end();
timer.printDuration(System.out);
}
}
Uncategorized »
I’ve recently been experimenting with XDoclet and I have to say that it really seems to simplify things. But when you think about it, it seems like somewhat of a round trip.
Developers have gone to great lengths to externalize properties and deployment-related information out of source code and into XML files. They have gone so far as to require you to define all of this information externally. For example, Struts uses the struts-config.xml file to define the interaction between pages in a Web application. So far as I know, …
Uncategorized »
This article outlines a new strategy for combating spam. P. Oscar Boykin and Vwani Roychowdhury of the University of California, Los Angeles came up with the idea of turning to social networks (life Friendster) to determine if the source of the e-mail that you are receiving is “friendly” (pun intended).
Yahoo is probably in a very good position to implement something like this. If you receive an e-mail from an address that is in your addressbook, then it will end up in your inbox. Let’s say that your have 100 people …
