Friday, August 29, 2008

Stormy Productions web site

For anyone interested in seeing why I didn't pursue a career in web design, head on over to here:

www.stormyprods.com

It's pretending to be the web site for my new software development company. I have no artistic talent, so right now it's very monochromatic, barebones, and the logo art (not that I'd really call it art) is very rough.

I'm going to now refrain from any more postings on this blog regarding iPhones or software development. All that sort of content will now be posted on the company web site.

iPhone Notes Font Change

If you don't have an iPhone, you can stop reading.

I just accidentally discovered a way to disable the default "handwritten" style font (officially called Marker Felt) used in the iPhone Notes app. This can be done on a note-by-note basis. Here's a screen shot illustrating the differences between the two fonts:


It's quite simple to get this behavior. First (and you only need to do this once) go into your main iPhone settings and enable an international keyboard. You can do it via the Keyboard settings (as shown below) or via the International settings. Choose to add a new keyboard, specifically one with Japanese support.


Then, when you are editing a note, press the world icon next to the space bar:



This will toggle your keyboard mode amongst the keyboard settings you chose earlier. When you get to the Japanese keyboard (as can be seen by the funky space bar) simply press any character on the keyboard and your current note will instantly revert to a normal non-handwritten font. And, as an added benefit, you can type Japanese characters.



Even if you delete the international characters from the note, it will remain in this font. I'm assuming the iPhone must be saving either font or character set information on each individual note. Too bad there's no way to select a specific font to make each note stand out from others on the main list.

Thursday, August 28, 2008

Office mishap

I had a mishap with my new office. As can be seen in my previous picture of the home office - it's actually just my dining room table with a couple of laptops (and a sewing machine) on it. Well, since it does double as my dining room table, I tend to eat there while working in front of the computers.

This morning I was eating a bowl of cereal and I noticed a small drop of milk splashed onto the laptop. So, as I continued eat the cereal with one hand, I reached up with my other hand to wipe the milk of the laptop. Unfortunately for me, the bowl of milk was balanced on top of a paper notebook I had been using for taking notes and the edge of the notebook was overhanging the edge of the table slightly. So, as I reached up with my other hand, I clipped the edge of the notebook and dumped most of the bowl of cereal (milk and all!) on to my laptop computer. Whoops! I just had to laugh out loud at my total clumsiness. In an attempt to clean up a couple drops of milk, I ended up completely soaking my computer in milk.

Fortunately, my computer appears to like milk. It's still running just fine. Though, I do hope it doesn't start to smell.

Sorry, I didn't take a picture. It was tempting to take one, but I figured my time was better spent mopping up the milk before it soaked into the computer too much.

Monday, August 25, 2008

New Office


With a new job comes a new office. It's a bit of a mess. My boss is a bit of a slob. I don't know why he insists on keeping a sewing machine on my desk.

This is my first day of self-employment. So far it doesn't really seem like work. It's more like what I would normally enjoy doing in my free time on the computer anyhow. Hopefully I'll figure out a way to actually earn an income with it at some point. But for now it'll be a lot of research and learning.

I'm hoping to target my applications to the iPhone and Mac, so I have to get up to speed first with Apple's Cocoa programming environment. I'm already an official Apple-registered iPhone developer (along with about a bazillion other software developers chasing the iPhone application development goldrush), but I've been doing low-level embedded programming for the past 8 years, so it'll probably take me a month or so to get proficient with Apple's tools. Maybe in two months (hopefully less) I'll have something professional-looking for the iTunes store.

Monday, August 18, 2008

Automating Photo uploads in Blogger

This post is going to be somewhat technical. (Mom, you can stop reading right now - you're not missing anything.) I'm going to describe how to automate the uploading of photos to Blogger such that it is fairly easy to then compose a blog entry referencing those photos. This process assumes you have a Mac (since it uses AppleScript) and an FTP account on a server where you will be hosting your images. It also assumes you have the program Graphic Converter and the Cyber Duck FTP client.

First, some background.

I recently discovered that when I use the normal Blogger interface for uploading photos, Blogger is doing some sort of color conversion with the images. What I see after I upload an image is not the same as what I originally sent. Since most of the images I upload to this blog are photos, having the color changed on me - even slightly - is somewhat of a problem. I'm not claiming to have any artistic vision, but I would like what I try to display be displayed in the most accurate manner possible.

So, to get around this problem, I decided to resort to hosting my photos on my own FTP server. The problem with this is I can no longer use the convenient feature in Blogger for inserting an image in my post. I now have to do my own conversion of the photos, making a separate thumbnail image along with the larger sized image, upload those images to the FTP server and then remember the path for the images so when I craft the custom HTML code to insert the images in my blog post, the path correctly references the thumbnail and links to the larger image. Then, if I am including several photos in my blog post, I have to repeat this process for each photo! Ug! That would take forever! And I'm a slow enough writer as it is.

Fortunately, computers don't mind doing repetitive tasks such as what I just described and in fact they can do it quickly and error free. All I needed to do was write a small script to perform the proper actions. Here's a link to the sample script. It takes a list of photos, generates thumbnails of them, uploads both the thumbnails and original images to my FTP server, and then inserts into my clipboard the HTML text necessary to reference these images in my blog posting. Oh, and then the script deletes the original photos and thumbnails from my computer. That's an important point to know, especially if you are planning on using this script. THE SCRIPT IF USED AS IS WILL DELETE YOUR ORIGINAL PHOTOS! For me this is what I want since the originals are just low-res exports from my photo management system.

I should also note that the script I am using is based on a script written by Jerry Stratton. His excellent detailed description of using AppleScript with GraphicConverter can be found here. When I first needed to perform this scripting task I had no experience with AppleScript and Jerry's example was just what I needed. If you aren't too familiar with AppleScript, I'd recommend first checking out Jerry's site. He provides much more detail in the description of his script and how it works.

Here's the normal workflow for me using this script. I am using Adobe Lightroom for managing my photos. When I have a set of photos I'd like to upload to my blog, I choose to export them. I export them in a lower resolution for the web - usually with a max width or height of 600 pixels. Since these low-res photos will be deleted once I'm done, I export them to a scratch directory called blog-drop.



At the very bottom of the export dialog window there is an option to perform Post-processing" on the exported images. This is where you will choose to run the AppleScript to create thumbnails and upload the images to the FTP server.



Once you export the photos, your mouse cursor will turn into a black and white spinning wheel while the AppleScript runs. After it is complete, you can then go to the Blogger post editor and simply hit the paste key and the HTML code for referencing the just uploaded photos will automatically appear.



And that's about it as far as using the script. Don't forget, as written, the script WILL DELETE YOUR PHOTOS!!! If you don't want that to happen, look for the following lines in the script:

    -- Send all the processed files and then delete them
    ftpSend(thumbNails, destinationThumbFolder, 1)
    ftpSend(sourceFiles, destinationImageFolder, 1)

If you don't want the files to be deleted after they are FTP'd to the server, change the last argument of 1 to a 0.

One other note - the call to open an FTP connection looks like this:

    connect to hostName as user userName with protocol ftpProtocol with initial folder dest

You may notice that there is no password listed in this. I am using the feature of CyberDuck that allows saving the FTP password to the Mac keychain. This is much more secure than hardcoding the password into the script. If someone looks at your script, they won't know what the FTP password is. Of course, it could be argued that the use of FTP itself is not secure and I'd agree. Using plain FTP your username and password are sent over the Internet as clear text. If you are concerned about such things, then use SFTP instead (assuming your FTP server supports it).

Poor product design

When I bought my condo it came with a new washer and dryer. The dryer has a very annoying "feature." When the drying cycle is complete, the dryer sounds an alarm. Then, every 5 minutes after that, it sounds the alarm again and the dryer startups up and tumbles for about 30 seconds. This process repeats until I either turn off the dryer or open the dryer door. The reasoning, I suppose, is it is trying to prevent the clothes from becoming wrinkled. But come on! To do this forever is just ridiculous.

This feature - which can't be turned off - means if I put clothes in the dryer and then leave my condo, my neighbors will get to listen to the dryer alarm every five minutes until I get home and turn it off. Or, if I want to run the dryer just before going to sleep, the alarm ensures I'll wake up in the middle of the night to empty the clothes, otherwise I'll get to listen to some loud beeping every five minutes throughout the night.

Is it really that important to have unwrinkled clothes? I think a much better feature would be to have such an alarm on the washing machine. I can easily forget I put a load of clothes in the washer and then discover it a day later. Wet clothes in a washer sitting for a day is never a good thing. The mildew smell is usually so bad I have to re-wash the clothes. Nothing bad like that would happen if I left clothes in the dryer for a day, yet the designer of these machines felt the dryer needs a constant alarm, yet the washer gets none.

Sunday, August 17, 2008

Attack of the Nematodes

While overwatering my bonsai plant, I made an odd discovery. It appeared a worm had washed out of the bottom of the pot. Here's a picture of it. It's the pale worm-like looking thing in the water.



To get a sense of scale in these pictures, the dark blue tray with the water in it is about 5 inches across. The leaves floating in the water are tiny - only 1/4 of an inch in length. So, this worm is pretty small - probably less than an inch in length.

While looking at the worm a little closer, I noticed it had little tendrils coming off it in places and the tendrils were moving! I thought that was a bit odd.



Upon further inspection, I discovered those tendrils weren't tendrils at all, but were tiny worm-like critters (maybe a couple mm in length) that were swimming around! Ick! I'm really at a loss to explain what they are. After researching it a bit, I'm guessing these are some type of nematode. Most nematodes are microscopic, but some are bigger.

In these last two pictures, I highlighted the critters so they are easier to spot.



In this picture, some of them look a bit flatter - at least in the picture. When I was watching them with my naked eye they always appeared tube-shaped to me. Perhaps it's distortion from the water or they really are flatter than I thought. If that's the case, maybe they're planarians. I dunno.



I was surprised by how strong they were. One was flipping around on the edge of the water and was actually moving one of the leaves that was floating in the water. Pretty strong for something only a few millimeters long!

There's a whole ecosystem living in my bonsai plant of which I wasn't even aware.

Unexpected Blogger photo conversion

There appears to be something odd going on with photos when uploaded via the Blogger interface. Normally, Blogger automatically resizes the photo, but as far as I knew, it didn't alter anything else about the photo. Today I discovered something odd is occurring with the color of the photos. I have no idea if it's a new development or whether I just happened to notice it now.

Here's an example. This first photo is what my original photo looked like. The second photo is how it appears if I use Blogger's photo upload feature.



Feel free to click on the photos to see even large versions. The color changes are much more obvious with the full-sized version. Notice the coloring of the second photo is washed out. It's somewhat subtle, but it bugs me enough that I'm now going to start resizing photos myself so I know exactly what will appear on this blog.

Random Eye Dull Photo - Lady Bug



There were no blackberries on this blackberry bush, but there was a lady bug.

Ghost Plants

I have no idea what these plants are, but they reminded me of ghosts. They're kind of translucent and lack any sort of color. Perhaps they're mushrooms?



A friend pointed them out to me while we were hunting for blackberries in the Douglas State Forest.



From this last close-up, it does appear the plant has a tiny bit of color. There's a bit of yellow inside the "flower" shaped part of the plant.


UPDATE: I wasn't too far off calling it a ghost plant. That's actually one of the names it goes by. It's officially called Monotropa Uniflora, also known as Indian Pipes or Ghost Plant. If you follow the previous link (click on the Latin name), you can read a bit more about the plant. The interesting thing is the plant has no chlorophyll, so it has to get its energy by being a parasite of sorts (like a mushroom).

Mmmmm.... toasted marshmallow



Oh wait.... that's not marshmallow. It's a mushroom!



This visual ambiguity of a close-up shot reminds me of the National Geographic World magazine I used to have a subscription to when I was a kid. There was a monthly feature called "What in the World" which would show close-ups of various things and you'd have to guess what it really was.

Friday, August 15, 2008

Why?

I find scenes like this very discouraging. Someone emptied their
ashtray in a parking lot - yet they were a foot away from a trash can.
How lazy can you get?

Monday, August 11, 2008

Victory!

In honor of the somewhat politically incorrect Rhode Island holiday, Victory Day (guess what the victory is), my family had a get together over the long weekend at my sister's house up in Wolfeboro, New Hampshire.

As part of the weekend festivities, a friendly competition was held between the two factions of visitors - those sleeping at the lakeside and those staying at lodging away from the lake. There were about 12 people on a team.

The competition started with a scavenger hunt that involved finding items in town - as many banks, realtors, and churches as possible, various more specific objects (like all the locations that have a bear or moose), and then the more usual scavenger hunt items (like find a feather, a clam shell, etc.)

The scavenger hunt ran for two days. On the second day (Sunday), my sister organized a whole series of competitions for the two groups - some involving individual team members (such as the pie eating contest and the underwater endurance test) and other events involving groups of team members (such as volleyball, bocce, and the water balloon toss). There were also some slightly more outlandish feats of skill, such as the peanut butter and jelly swim relay race (where a sandwich is built along the race and the final result is the person at the finish line has to eat a very soggy pb&j sandwich).

Not knowing there was this competition planned, I had invited two friends of mine to come up for the weekend to hang out. I had explained to them how things are really casual with my family - there's no organized events - people just do their own thing, maybe have a pickup game of volleyball, or wander into town, or go kayaking, etc. So, it came as a surprise to all three of us when my sister passed out a schedule on Saturday night outlining the events for the next day. It was especially surprising when the schedule looked like this (click on the picture for a larger view):



Needless to say, after reading some of the descriptions of the events, it was obviously a joke. But, it was funny to hear people initially start complaining about the 6:00am start time, and then hear people start laughing at some of the more ridiculous contests.

After things settled down, my sister then passed out the real schedule, which looked like this:



That was a much more reasonable schedule and it turned out to be a very fun time.

For the record, the Outcasts (we were the non-lake lodging people) defeated the Silverback Wolverine Monkeys in an extremely close match. After all the points from all the contests were tallied, we won by only one point.

We then had an awards ceremony where everyone hummed the olympic awards theme music while my sister hung the gold medals around the winning team members' necks.

Yeah, my family is crazy. I love 'em!

As captain of the winning team, I get to be keeper of the "Stormont Survivors" trophy for the year (pictured below). Hopefully it doesn't come with a curse like the blue bird did. (Just kidding Mom! Really! Please don't ban the trophy!)

An Interesting Warning

This past weekend I received a French press as a birthday gift. I was just reading the labeling on the glass pot in which the coffee is made and found the following:



The second warning in the list gave me a chuckle. It's not like a small child would even fit in the pot! (I know, I know, that's not the intent of the warning. But still, it seems like a common sense thing. Of course you should not give children scalding hot liquids.) The way the warning was written seems strange - it's more like how you would word a warning about keeping bleach and ammonia apart. It's not like children will explode when exposed to hot liquids.

Sunday, August 03, 2008

More about Goals

I neglected to mention one thing in my recent post about setting goals. As part of reevaluating my goals in life, I decided to quit my job. I gave my official notice on Friday, July 25th and my last day will be August 22nd. My boss had requested that I not tell anyone until a time he thought was right. Occasionally someone from work might read this blog, so I refrained from mentioning this news until now.

This September I would have been working at this same place for 8 years. While I enjoyed the work and the pay was great, I came to the realization that I just wasn't challenging myself anymore. So, rather than just go to work for another company, I've decided to try my hand at freelance work. The plan is to work on software application development. It's something I've been interested in doing and I've been trying to work on some designs recently, but I found I just didn't have the free time outside of work to dedicate to make any substantial progress. Now I'll be able to concentrate on it full time. I've got enough money saved up to cover my expenses for about a year, so hopefully within that time I can get a sense whether it'll work as a career or not.

Coincidentally, a week after I gave my notice at work, I finally heard back from Partners in Health. It's been over 3 months, so they are contacting all the past interviewees to see who is still available and interested. They are still in the process of setting up the program and I haven't heard back from them as to what the timeframe might be when they finally start this program, but I did let them know it is something I would still be interested in doing. Heck, I've already quit my job and coincidentally my current plan was to be possibly working for the next year without any income, so spending a year in Rwanda isn't as much of a big leap as it would have been 3 months ago.

Handgun shooting

I had my first experience firing a real handgun yesterday. I went with some friends to a local shooting range. It's not something I normally would have thought of trying, but I think it was a worthwhile experience. Guns are a fact of life in American society. Sure, I've gone my whole life so far never having encountered a handgun, but as one of my friends suggested, it's probably better to be at least familiar with one just in case. Granted, the operation of a handgun isn't complicated, but there are a few details I wouldn't have been expecting.

First off, the volume of the sound was a lot louder than I anticipated. Even with the ear protection, I was initially finding myself flinching every time someone in another lane fired their weapon - especially with the higher caliber guns. After a while I got used to it, but at first it was quite jarring.

Secondly, I was surprised by how nervous I actually was just holding the gun. Not that one is supposed to be so casual with a gun that they take it for granted, but my hands were visibly shaking at first. Again, after a while I got more comfortable with it and was no longer shaking, but as can be seen by my first first target shooting (only 8 yards away), I was initially all over the place. One shot almost missed the target completely (look at the right edge of the target for a small tear).



For a reference point, the outmost circle on the target is 8.5 inches in diameter. The black area of the target is 3 inches in diameter.

This next picture shows my third attempt. I was getting a bit better, but still there was the occasional wild shot (look in the upper left corner, for example). Also, I moved the target a bit closer - down to 6 yards. A hadn't brought my eye glasses and at 8 yards I was squinting trying to see where my shots were hitting.



This target was probably my best for accuracy, but in this case it was even closer - only 5 yards away.



All told, I fired 100 rounds - 10 sets of 10. It was interesting to compare the results of each successive set and see improvements and trends of how I tended to be off-target. I'm left handed and I tended to find my shots going off to the left frequently. One of the instructors at the range explained that if you squeeze the trigger too hard, you'll find your shots going off in the direction of your primary hand. So, I guess I was doing that.

The gun I was using was a Ruger rimfire .22 caliber pistol. I think it was the Ruger Mark III™ but I'm not certain.

Bonsai

Yesterday I went with some friends to visit a bonsai store. This place is located in Bellingham, Massachusetts and is called New England Bonsai Gardens. It's a very large store - it has several large greenhouses with a huge variety of bonsai plants. I had driven driven by this place in the past (it's not too far from my condo) and was always curious about stopping, but never had the time. I'm glad my friends suggested going. It's a very nice place.

Right now there's a sale going on - 80% off a (rapidly shrinking) selection of plants. You can get some great deals on really old bonsai that would normally cost hundreds of dollars. With the 80% off, some of them are even cheaper than the original cost of the ceramic pot they came in. Unfortunately for me, I had to pass up on the good deals. All the plants that really appealed to me were outdoor bonsai. Living in a condo, I don't have any outdoor area for plants. Instead, I ended up picking up a small bonsai that is more suited for indoors:



It's a Texas ebony tree. The shop owner explained to me that for indoor bonsai plants it's better to go with a tropical variety. The outdoor bonsai plants need the change of seasons in order to trigger proper growth, while the tropical climate plants need a more consistent temperature all year round.

Interestingly, the Texas ebony plant closes its leaves at night. When I was first bringing the plant back from the store, the leaves started closing up and I wasn't sure if it was normal. By the time nightfall came, the leaves were completely closed, giving the plant a somewhat wilted appearance. Fortunately, from what I've read, that is the normal behavior of legume plants (which Texas ebony is).

Here's what the plant looked like once all the leaves closed up.



Here's a closeup of the closed leaves.



And here's a close-up of the leaves when they are open.


If you are ever in the Bellingham area, it's definitely worth a visit to New England Bonsai Gardens. The shop owner is extremely helpful. Even if you don't buy anything, it's nice to just walk around and take a look at the beautiful plants.

(Hmmm... I just noticed all my photos in this post have a watermark with my name. I just upgraded my photo software and apparently I accidentally turned on a feature for adding a watermark when I export photos for the web.)