Skip to main content

Moving Day

Today, my wife and I will be moving in to our new house. This means we will be without an Internet connection for two or three days, so I won't be online until the weekend or early next week. Also, moving doesn't leave much time to be online for the next week or so.

To make matters more complicated, I have a medical procedure in the middle of the day. I started this morning packing boxes, trying to get what I can done before the out-patient procedure. You never know how long it will take to recover from the anesthesia and general discomfort when you have any medial procedure.

The notion of being off-line, disconnected from readers and friends, is a little frustrating. What does that say about our culture and our strange need to be connected at all times? It's as if we don't exist without a network connection.

Last year, I tried to have at least one "tech free" day a week. This didn't mean no phone, but it meant no sitting at a computer and working. Even my "tech free" was something closer to "tech-light" instead of entirely free. I compulsively read online news, various blogs, and forums like Slashdot. Only when my wife and I leave the house do I really find myself tech free.

Anyway, I'll be returning next week. I keep promising that my schedule of a new post each week, to each of our blogs, will be revived. Life does keep getting in the way, but a new house and stable routine should help.

As I prepare to spend time off-line, I'm reminded of how interconnected the topics about which I write can be. We imagine technology solving problems, improving our lives, but at the same time these great inventions can cause alienation, economic disruption, and other unintended consequences. Imagine all the electricity networks require, the plastics, the chemicals used to make chips, and so forth. A "good thing" can have a lot of costs, many of them hidden from our daily thoughts.

I am compiling a long list of blogging ideas as we prepare to move for this second time in under a year. If you have any topics you'd like me to address, feel free to post those, too!

Comments

Popular posts from this blog

MarsEdit and Blogging

MarsEdit (Photo credit: Wikipedia ) Mailing posts to blogs, a practice I adopted in 2005, allows a blogger like me to store copies of draft posts within email. If Blogger , WordPress, or the blogging platform of the moment crashes or for some other reason eats my posts, at least I have the original drafts of most entries. I find having such a nicely organized archive convenient — much easier than remembering to archive posts from Blogger or WordPress to my computer. With this post, I am testing MarsEdit from Red Sweater Software based on recent reviews, including an overview on 9to5Mac . Composing posts an email offers a fast way to prepare draft blogs, but the email does not always work well if you want to include basic formatting, images, and links to online resources. Submitting to Blogger via Apple Mail often produced complex HTML with unnecessary font and paragraph formatting styles. Problems with rich text led me to convert blog entries to plaintext in Apple Mail

Learning to Program

Late last night I installed the update to Apple's OS X programming tool suite, Xcode 4. This summer, in my "free" time I intend to work my way through my old copy of Teach Yourself C and the several Objective-C books I own. While I do play with various languages and tools, from AppleScript to PHP, I've never managed to master Objective-C — which is something I want to do. As I've written several times, knowing simple coding techniques is a practical skill and one that helps learn problem solving strategies. Even my use of AppleScript and Visual Basic for Applications (VBA) on a regular basis helps remind me to tackle problems in distinct steps, with clear objectives from step to step. There are many free programming tools that students should be encouraged to try. On OS X, the first two tools I suggest to non-technical students are Automator and AppleScript. These tools allow you to automate tasks on OS X, similar to the batch files of DOS or the macros of Wor

Learning to Code: Comments Count

I like comments in computer programming source code. I've never been the programmer to claim, "My code doesn't need comments." Maybe it is because I've always worked on so many projects that I need comments  to remind me what I was thinking when I entered the source code into the text editor. Most programmers end up in a similar situation. They look at a function and wonder, "Why did I do it this way?" Tangent : I also like comments in my "human" writing projects. One of the sad consequences of moving to digital media is that we might lose all the little marginalia authors and editors leave on manuscript drafts. That thought, the desire to preserve my notes, is worthy of its own blog post — so watch for a post on writing software and notes. Here are my rules for comments: Source code files should begin with identifying comments and an update log. Functions, subroutines, and blocks of code should have at least one descriptive comment.