Author Archives: eddie

Restlet Development: AWS Style Security

In the first part of this series, we looked at building a very minimal Restlet application using Spring configuration. In this article, we’re going to add security. Specifically, Amazon Web Services style security. As before, I’m trying to hit on … Continue reading

Posted in Development | Tagged , , , , | Leave a comment

Restlet Development: Spring Integration

I’ve recently been working on a project that, like most, has several parts: a web site, a mobile app, a desktop app, and tying it all together, a server. Not being one to buck current trends, I’m building the server … Continue reading

Posted in Development | Tagged , , , | Leave a comment

Android, Java, and Differences Between the Two.

I’ve recently started learning Android development. I’ve enjoyed working on small devices since my first job out of college in 1989 developing an app for a portable bar code scanner. I haven’t been able to do much development like this … Continue reading

Posted in General | Tagged , | Leave a comment

New site!

You may notice that the site looks a bit different now. I have moved from using my web provider’s hosted WordPress instance to my own copy. This will give me much more control over the site. There is a downside … Continue reading

Posted in General, Personal | Tagged | Leave a comment

LDNS for Windows – Source

Should have done this earlier. I’ve had several requests for the LDNS library that I built on Windows, so here it is. I’ll be the first to admit that it’s a quick and dirty port, with minimal testing. Around the … Continue reading

Posted in General, LDNS, Windows | Leave a comment

LDNS on Windows – Success!

FINALLY! ldns is now working on Windows. More polish would be good, but it is working. Ultimately the changes weren’t too tough. Had to find replacements for a couple of functions (gettimeofday and getopts) and add a function for creating … Continue reading

Posted in General, LDNS, Windows | 5 Comments

LDNS on Windows, take 2

After many attempts, and just recently finding posts on Google groups from someone else trying to do the same thing (use ldns from XPCOM) it’s become obvious that linking the VC++ built XPCOM libraries with Cygwin built ldns just won’t … Continue reading

Posted in General, LDNS, Windows | 4 Comments

Mixing Cygwin, XPCOM, ldns

In my continuing adventures working on a .tel extension for Thunderbird, I’ve switched to using ldns for the DNS lookups. After a bit of futzing around to give ldns the ability to get the DNS server addresses from the Windows … Continue reading

Posted in .tel, Cygwin, General, LDNS, XPCOM | Leave a comment

MS Suckage Beyond My Wildest Imagination

OK, so I’ve been working on some stuff related to the .tel domains – basically an extension for Thunderbird / Firefox for synchronizing contact info through a domain. Best I can tell the DNS support in Firefox already doesn’t support … Continue reading

Posted in .tel, General, Windows, XPCOM | 2 Comments

Unit Testing and Databases

Recently I’ve been refactoring some DB access code. Basically unraveling the DB code that is sprinkled throughout the code into a separate layer. Testing this code is challenging and honestly tedious. 

Posted in General, Unit Testing | Leave a comment