This is actually part 2 of the series. C++, like most programming languages, starts counting at zero. Part 0 of the series is here . I had intended to make Part 1 about serialization of objects, but that can wait. If you can’t get past constructors in C++, you won’t get very far. I have… Continue reading The C++ Way. Part 1. Constructor Tips and Traps
Category: Computers & Software
A Sound Card Adventure
Keeping the computers humming along at EP Studios, where there are more computers per cubic foot than the average Google data cluster, is a continual challenge. A few days ago the TV sound died on MediumHeadBoy. All other sounds from the computer were fine. I should mention that MediumHeadBoy is our kitchen computer and is… Continue reading A Sound Card Adventure
Fax Machines Are Stupid
It came to me today as a sudden revelation (an “ah-ha” moment) that our fax machine is a total anachronism, like something out of the 19th century. Here it is the 21st century, and we are still sending back and forth images of paper documents over the phone lines, using an old-fashioned modem, completely independently… Continue reading Fax Machines Are Stupid
New ClickIt Coming Soon
I’m working on the next version of ClickIt. ClickIt is an automatic computer document signing program. It allows batch signing of documents in programs that don’t allow batch signing. It was originally designed to work with the Allscripts EMR system which forces the user to repetitively click the Sign button, wait for the next document… Continue reading New ClickIt Coming Soon
Blogging From My Droid
Yes it’s possible to write a blog post on an Android phone using WordPress for Android. Why anyone would want to write a post on the Droid’s clunky keyboard is an excellent question. I suppose if there is something you just can’t wait to write about, and it’s short…
Emacs Word Wrap Modes
I had problems sending posts to WordPress from weblogger on Emacs because of formatting errors. I have been using auto-fill-mode in Emacs to avoid lines extending off the screen. Auto-fill-mode works by inserting newline characters (ASCII 0A, C-j) at the end of each line. Turning off auto-fill-mode does not eliminate these characters. If you want… Continue reading Emacs Word Wrap Modes
The C++ Way. Part 0.
I’ve decided to write a series of posts on what I call “The C++ Way” analogous to “The Ruby Way,” a book and philosophy of the Ruby Language. After programming in C++ for years, I still struggle to think in C++. I constantly ask myself “what would Bjarne (Stroustroup) do (WWBD)?” when attacking a programming… Continue reading The C++ Way. Part 0.
Testing Emacs Weblogger Mode
I installed WebloggerMode into Emacs 23.1 and am testing it out. Yes, right here, live! Typing text into Emacs, even some simple HTML is much faster and more fun than typing into the Wordpress text editor. I’ve got all my memorized shortcuts in Emacs to create my text. Supposedly I can post and publish my… Continue reading Testing Emacs Weblogger Mode
What's Happened To The Bookstores?
If you are a bookstore aficionado you can’t have avoided noticing how they have deteriorated over the last ten years. Fewer books, less variety, more open spaces and chairs, fewer people, most of whom are there to drink coffee and work on their laptops using free Wifi connections — it’s hard to pin it down… Continue reading What's Happened To The Bookstores?
Singleton Madness
I’ve been spending the last few weeks trying to exorcise a pesky singleton class from EP Simulator. This is the Options class, which contains all the program options that are saved from session to session. There is only one set of Options, so I had naively made the class a singleton. Singletons being what they… Continue reading Singleton Madness