Big weekend: I have bonded the first fuselage skins onto my Bede BD-4C airplane. I painted 3M Scotch-Weld #10 Contact Adhesive onto both the skin and the fuselage angles and then “just” stuck the two together. Here are a few photos. There is actually more adhesive on the plane than is visible in the pictures. The […]
More Fuselage Skin
The rear part of the fuselage of the Bede BD-4C airplane that I am building is about 11 feet long. There are eight pieces of skin which cover it. The aft-most pieces are 0.016 inches thick and about 7.5 feet long. The four pieces farther forward are 0.020 inches thick about 3.5 feet long. I […]
Installing Lift Reserve
As you know, if you are a citizen of the universe, I am building a Bede BD-4C airplane and I have been writing about the process here on my blog for the last couple of years. Today I am going to write about something that few aviators, and even fewer homebuilders, write about. I am […]
MySQL + UTF-8 + PHP 5.3.10 + JSON = Trouble
Yesterday, I spent longer than I care to admit debugging an update to an old PHP script. It fetched a string from a MySQL database and (here’s the new part) passed the string to json_encode(). That call failed when the data included the multibyte characters ¼ or ½ or ¾. All of my attempts to remove the multibyte […]
Progress on the Fuselage Skin
I have made a bunch of progress on the first piece of fuselage skin for my Bede BD-4C airplane. This is the piece on the top of the fuselage, at the rear. It sits under the vertical stabilizer so, no surprise, I got to cut a hole in the skin for the stabilizer’s spar to […]
Cut the First Skin
Tonight, I screwed up my courage and made a diagonal cut along a 4 foot by 8 foot sheet of aluminum. This is the first piece of fuselage skin for my Bede BD-4C airplane.
Python Singleton
I needed a singleton database class in a Python 2.7 program and wrote it this way. class Singleton(type): _instances = {} def __call__(cls, *args, **kwargs): if cls not in cls._instances: cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs) return cls._instances[cls] class Database(): __metaclass__ = Singleton def __init__(self): self.db = MySQLdb.connect(…) I like this pattern but I realized that […]
Horizontal Tail on Bede BD-4C
Big day today. I attached the horizontal stabilator (horizontal tail) to my Bede BD-4C fuselage for the first time. Check out the video:
Transurethral Resection of the Prostate (T.U.R.P.)
So you want the gory details about Transurethral Resection of the Prostate (T.U.R.P.)? OK. I am happy to oblige. Here is the nitty-gritty about how I came to have a T.U.R.P., how it went, and how I feel now that it is done. WARNING: This essay is explicit about symptoms and body parts associated with […]
Goal Achieved: Lost 32 Pounds
I have lost 32 pounds. 🙂 It took a year and I am very pleased. I used the Weight Watchers mobile app and self-discipline. I did not bother with the WW meetings. For the last few weeks, I have maintained my weight without following the WW program, just eating sensibly, so this morning I […]
Prostate: Unintelligent Design at Its Worst
Want a chuckle? No, want a belly aching guffaw? Check out the male urinary plumbing. You got a nice small tube running from the bladder out through the “you know what” to the outside world. Wrapped around that tube is the prostate gland, which grows and hardens over the years, squeezing the tube until nothing flows […]
Mitsubishi i-MiEV Electric Car Range
Several of us have been discussing the range of the Mitsubishi i-MiEV electric car in a Google+ community. What started as a simple query, “What kind of range do you guys get? 62 EPA miles?” made me realize that I rarely think about our i’s range in terms of miles. Instead, I am simply concerned with […]
Wings Fit
If you have been following my progress building a Bede BD-4C airplane for awhile, you might have been wondering where I have been and why I have not posted anything for several months. Frankly, I hit a terribly frustrating phase and have been too discouraged to write about it. I finally got past it, though, so […]
Mitsubishi i-MiEV Mileage
Shortly after we picked up our Mitsubishi i-MiEV electric car, I bought a Kill-A-Watt meter, so that I could measure the amount of energy that goes into charging the car’s battery. I know that I pay 11¢ per killowatt-hour so this allows me the calculate the cost of running the car. I am intentionally measuring […]
No No No Vibrations
I have been driving our new Mitsubishi i-MiEV electric car almost exclusively since we got it, two weeks ago. I still grin like a fool as I glide virtually silently from a stop up to cruising speed. I grin even more when I lift my foot off of the accelerator pedal and the gauge on […]
Our New Mitsubishi i-MiEV Electric Car
We just bought a Mitsubishi i-MiEV electric car and boy-oh-boy is it fun! This little gem drives “just like a car,” costs about 3 cents per mile to run, has four doors (plus a hatchback), and is surprisingly spacious. Believe it or not, the Mitsubishi i-MiEV is the “big” car in our family, being 10 […]
How I Chose to Build a Bede BD-4C
Several people have asked me how I chose to build a Bede BD-4C airplane instead of any number of more common planes. The questions come in three forms, all of which read like “How did you decide to build this plane?” but, when taken in context, sound more like: Are you nuts? How can you […]
Read-Only Python Properties
Following onto yesterday’s post about Python Properties and @property, there is a neat little trick to create a read-only property of a Python class. All you have to do is omit the setter. This Hero class has a read-write property “name” class Hero(object): def __init__(self, **kwargs): self.name = kwargs[‘name’] @property def name(self): return ‘%s %s’ % […]
Python Properties and @property
My son pointed me at PyCharm and, while poking through it’s built-in “intentions,” I discovered Python’s @property decorator, which led me to learn more about the Pythonic way to handle class properties. Unlike Java and C++, Python encourages you to create public class attributes (a/k/a properties). Here is an example: class Hero(object): def __init__(self, **kwargs): […]
A Graceful Exit from the Syria Trap
President Obama is in a tight spot. On the one hand, he wants to appear strong and follow through on his “red line” statement. On the other hand, he wants to appear strong and not knuckle under to Congress’ disapproval of military action in Syria. The only choices being discussed are: a) Attack Syria, or […]
- « Previous Page
- 1
- …
- 12
- 13
- 14
- 15
- 16
- …
- 45
- Next Page »