His portfolio reflects years consumed with trekking the globe, but photographer Jauder Ho only rediscovered his love for the art several years ago. Taking advantage of an opportunity for a vacation for the first time in over a decade, Jauder Ho ended up taking a trip to Japan including a trek up Mount Fuji. That followed by the road trip of a lifetime driving across the States had a profound effect on how he perceives the world. Since then, Jauder Ho has seen the world shot by shot, each one serving as a reminder of changing moments in time. In his portfolio, Jauder Ho juxtaposes long exposure shots of beautiful scenery with pictures focused on details that explain more to the story. Jauder Ho strives to take portraits that describe the feelings of his subjects and reflect his ability to arouse emotions from the viewer. Combining skills acquired from continual photography with what it takes to see life on stills, Jauder Ho has created a body of work that reflects the world both great and small. Here, Jauder Ho brings you selected content from his personal collection as well as sharing interesting items found from the Internet. Identica

Fix Python import sha/md5 deprecated warnings

While looking for a way to decrypt eReader files so that I can read previously purchased ebooks in PDB format on my Palm Pre, I found a python script (ereader2html.py) that purports to remove the encryption.

However, upon initial execution, I got the following error:

DeprecationWarning: the sha module is deprecated; 
use the hashlib module instead

Some quick Googling later, it looks like the fix is pretty simple.

  1. Replace the import sha with import hashlib.
  2. Replace all occurrences of sha.new() with hashlib.sha1()

| Sharing from Fix Python import sha/md5 deprecated warnings: Tweet