18Feb/100

Saying Goodbye to Transparencies and Roundies

and goodbye to pitiful SEO, too...

After several years of experimenting with css rounded corners and transparency and the various perplexing cross-browser issues, I've redesigned this website and even moved it over to a new platform. Gone are the strange hoops I needed to jump through to add new stories to this site.

Here's one last glimpse of the original Geek on the Loose:

Geek on the Loose screenshot

I've also put a lot of effort into trying to follow good SEO principles on the new site. It may not have been obvious, but the old site was created before I had studied up on SEO and probably violated every major principle. It was a real SEO train-wreck. It will be very interesting to find out if I've learned anything or not.

Filed under: Design No Comments
17Feb/101

Parallelism and Abstraction in Java

Here's an interesting parallel programming interview with Intel's Paul Guermonprez covering threads, JSR166y, and Hadoop. I particularly enjoyed the Hadoop discussion at the end.

The discussion focused on efforts to separate Java programming from the nitty gritty details of threads. This separation allows a greater number of developers to successfully program for parallel environment by removing focus on the technical details, and thus reducing the knowledge required to write the code. There's also some coverage of the benefits of the higher level of abstraction of functional programming and how the functional programming style is being incorporated into the Java concurrency model. The text has this:

The future will be functional programming or won't be at all.

Intellectually, I applaud these efforts. Emotionally, I feel some loss.

My first introduction to threads was in a systems programming class, using the C language and Pthreads library. Pthreads blew my mind, or maybe it was lack of quality in the lectures. Either way, determined not to be defeated by Pthreads, I went out and bought a stack of books on Pthreads and threads in general and set out to wrap my mind around threads. It worked, but along the way, I learned that I loved the challenge and so I embraced concurrency and parallelism with much enthusiasm. This knowledge that I've accumulated will always be of great value, but as I move toward programming threads at further and further abstractions, I'll lose that close connection to the internals, and I'm a little saddened by that.

Filed under: Java 1 Comment
16Feb/100

Martin Odersky and Josh Suereth at Scala BASE Tonight

I'm looking forward to a Scala BASE meeting tonight that is headlined by Martin Odersky and Josh Suereth.

From the announcement email:

Professor Martin Odersky is the director of the LAMP group at EPFL, the creator of the Scala programming language, and author of Programming in Scala.

Josh Suereth hosted the first Scala Lift Off East in Reston, VA and has been involved with lots of Scala projects including scala-tools.org, scala-arm, scala-io, scala-jigsaw, and scala-lolz.

Filed under: Scala No Comments
14Feb/100

Found: Nice OWASP Top 10 Cheat Sheet

I discovered this very useful, developer-centric cheat sheet for the OWASP Top 10 for 2010 (go directly to the pdf). It's nice and concise and gets straight to the simplest code fixes that will work. Memorize it and your code will be better than it was before. Better, stronger, faster...

Here's the current OWASP 2010 Top 10 list (this is release candidate 1, so it could change):

  1. Injection
  2. Cross Site Scripting (XSS)
  3. Broken Authentication and Session Management
  4. Insecure Direct Object References
  5. Cross Site Request Forgery (CSRF)
  6. Security Misconfiguration
  7. Failure to Restrict URL Access
  8. Unvalidated Redirects and Forwards
  9. Insecure Cryptographic Storage
  10. Insufficient Transport Layer Protection

If you are a developer and you don't know what some of these security risks are OWASP top 10 cheat sheetand how to avoid them in your code, then you should be reading this: OWASP Top 10 2010 RC1 (pdf).

Filed under: Security No Comments
7Feb/100

Looking Forward to HTML5

I've seen a lot in the geek news lately about HTML5. I've tried to get a book, but none are available for a few more months, and O'Reilly doesn't even have a "rough cuts" book yet.

Today, via DZone, I discovered this super nifty HTML5 sketch pad demo.

I'm really looking forward to the widespread use of HTML5, especially since Adobe can't be bothered to make their Flex Builder work in Linux.

HTML5 demo

Filed under: Design No Comments