I now have in my possession a Mamiya RB67 Pro S which I recently purchased from Keh Camera.  First, let me begin by saying that when I was entering the profession of photography back in the 90s these cameras were untouchable for the average, just out of college photographer, but due to the recent onslaught of digital cameras, these babies are being sold off by pros looking for the digital edge.

All of this is of course is good news for those like me who can buy a complete setup for under $200 bucks. That's right, this once untouchable camera is now a relic and can easily be obtained on eBay or Keh.  I have been like a giddy child at Christmas for a week now as the new parts to my camera system are delivered one by one.  To add to my excitement, film is also still readily produced for these cameras by companies like Fuji, Rollei and Ilford.  Fuji even makes a instant film for using the RB's Polaroid back.

OK, so on with my impressions.  The body for this camera is very sturdy and completely manual.  No need for silly batteries that always go dead on you anyway.  Perhaps one of the greatest features of the body is the  standard bellows which are attached to the focusing knobs.  This bellows unit instantly turns any lens into a macro lens.  No real need to buy expensive macro lenses. Next, attached directly behind the body is the rotating back hence the designation "RB."  This device is pure genius.  Simply rotate the back to either horizontal or vertical compositions and leave the body exactly as it is.  Finally, Viewfinders and prisms come in a variety of styles and are easily attached to the top of the body. Rotating the back also changes the marks in the viewfinder so one can better see how to compose the image.

The last piece to this photographic puzzle is the lens.  First, Mamiya lenses are known for being tack sharp. Secondly, the lens contains a leaf shutter mechanism so flash syncing can be done at any speed. The lens also contains the pc flash input and a place to attach a cable release.  Finally, the lens also has a button for mirror up photography.  Simply move the button to the mirror up position and those mirror slapped, blurry images will be a thing of the past.

The bottom line here is this camera has every pro feature you could ever want or need at ridiculously low pricing right now. So go out there and buy a old medium format camera and have a blast.


A friend of mine has started his own photography business and asked me to go on a shoot with him in a few weeks.  Of course, being a former semi-pro, it was hard to pass up the offer.  The idea of getting out there sizing up a composition and hearing the rattle snap and whine of my Kiev 88 shutter firing can be a great experience.

As you can well imagine one thought leads to another and so I began to thing about photography in general and where we have been as photographers and where we might end up as photographers.  My journey in photography started in college where I spent a great deal of time working for my college newspaper and yearbook as the photo editor.  I shot hundreds of rolls of 35mm and 120mm film and countless hours in the darkroom developing and printing the film.  It was a great experience and one that is not easily forgotten.

Today, film has been replaced by digital imaging and I have to admit that some of the romance of photography has left me.  Yes, photography is more than just the what type of medium is used to record the image.  It is still about lighting, composition and technology and I doubt that will ever change much, but the romance of the all manual camera combined with the mad scientist like environment for processing that film is nearing the end of its life.  Oh, please don't misunderstand me.  I am one who generally embraces change.  After all I am a software developer and software is constantly in flux and the only constant there is change, but somehow I hoped digital imaging would not impact photography as quickly as it did.

I would love to sit here and say that medium format film still has the advantage over digital, but I would be a liar.  About every test I have read proves otherwise.  However, if you want a challenge and you want to do something different and perhaps even for a moment,  exciting, take out an old manual camera and really think about what you are doing with it.  Think about the exposure and composition.  Concentrate on the shot and feel the patience begin to overcome the fast paced lifestyle of the modern world.  For a moment it is just you and your subject.  No modern, fancy electronic gizmo with digital screens for proofing your shots.  It is just you and your knowledge of light and composition.
I am about 8 months into developing with Objective C and XCode for the iPhone and I thought I would give a list of the pros and cons.

Pros:
  • The navigation controllers rock.  There is no better navigation paradigm out there.
  • Watching your code run on an iPhone or iPad is a truly exciting event.
  • Adequate string handling

Cons:
  • Sudden deallocation of an object even when that object is marked with retain.  This is a random yet completely frustrating event.  This problem tends to be less of a problem when using ARC, but if you are like me you have old code to maintain which does not use ARC and would take too much time to convert and debug.
  • Brackets instead of parenthesis - come one with the horrible smalltalk syntax.
  • In today's world of screaming hardware do we really need to allocate and deallocate our own objects?
  • XCode is horrific in comparison to Eclipse and VS.
  • Variable values displayed in the debug area are often just plain wrong.  Using NSLog shows the real values of the variables.
  • Debugging takes way too long! 
  • No overloading?  Yes, that's right, no overloading.
  • Dangling pointers even when the object is marked with retain
  • Poor examples on the Apple site including an example of how to create a singleton class, which as it turns out is totally incorrect.
  • No low level try catch block.  That's right, try catch is mostly worthless and should probably  be removed from the language.
  • Did I mention garbage collection is not present?
  • Method names are far too long and hard to remember.  Keep Google up and running at all times because you will forget the names.
  • You can use dot operator syntax with object.property, but not object.method



I could go on  but I think you get the point.




 

This is one of those code snippets that took me a while to find on the net so I thought I would put it here so maybe someone else might come across it without too much difficulty.  Its just one of those weird iOS development problems.

How to center a UIImageView within a custom cell?

    UIImageView *pic = [[UIImageView alloc] initWithImage:[arr objectAtIndex:indexPath.row]]; 
    pic.center = CGPointMake(cell.contentView.bounds.size.width / 2 , 60);
    pic.contentMode = UIViewContentModeScaleAspectFit;
    cell.selectionStyle = UITableViewCellSelectionStyleGray;
    [cell.contentView addSubview:pic];

 [arr objectAtIndex:indexPath.row]] is just an array holding my images.  It could be any image here.
"Easy now line up the sights and squeeze the trigger", my grandfather whispered as I held the Remington .22 rifle.  A moment later the telltale crack was heard as the bullet raced to the tin can sitting on an old stump only 20 yards away.  The can flew up into the air and I yelled "Yes!."  My grandfather, who had seen this many times in the past said.  Good shot but you didn't hit the can.  "What do you mean I didn't hit the can?  I will just run down to the stump and get the can and show you.", I replied.

Moments later I returned with the can and sure enough there wasn't a hole in it.  The only thing about the can that appeared different was a bit of gritty Pennsylvania mud on the base .  "You hit directly under it.",  Gramp said in a matter of fact way.   It didn't matter to me.  In my mind I was happy and I was totally hooked on this interesting device called a gun. 

What is it that attracts a man to firearms?  Perhaps it is the raw power one feels when behind one or maybe it is loud noise it makes when fired, or maybe the joy of hitting a tiny target 100 yards away.  I don't know, but whatever it is, is unique to men.  I know, I know women enjoy shooting also, but somehow I don't think it is the same as it is with a man.  There is something unique about a man and his shotgun or rifle.  Men have used guns to hunt food for their family, defend and fight for our country.  They are as much a part of America as the apple pie or the American flag.

Those who find guns appalling  need to understand how owning a gun is an American tradition that has shaped us. It is part of who we are as a society.  Personally I have no desire to hunt animals or harm others.  I simply and plainly enjoy shooting.  I have no trouble with those who hunt as it is an excellent past time which can provide the family with healthy and unprocessed food as well as various clothing items such as gloves and coats.  I grew up with hunters all around me and they are a great bunch of people.  I'd take a bunch of hunters as friends any day to the average liberal coward we have turned out in our major cities.

Well I am 38 now and I guess you could say I have my own .22.  One day, just as my grandfather did, I will take my son to the shooting range and show him how to hit that tin can.  Gramp, I love you, and thanks for taking a kid shooting.


Many years ago as a child, my mother thought that it would be prudent to send me for a dental checkup with our family dentist. She had made an appointment for me earlier in the month and the big day had finally arrived. Yep, the big day.  The day when I would find out what a dentist was, what he did and how he did it.

So we hopped into our VW Dasher and began the drive downtown.  The trip seemed  longer that day than most and my mind continually wandered onto thoughts about what this experience would entail and how my experience would compare to other stories I had heard.  Terrible!, terrible stories had been told to me by other family members. Including stories from my often animated Uncle Mark who could put the fear of God into a five year old boy with his dazzling talents.

Well the trip ended a  few minutes later and we made our way into the office parking lot finding a nice place to park near the front of the building.  Have you ever noticed you can always find a great parking place at the dentist office?  We entered the office through the side door and into an area I later was told was the reception area.  Entering this room, I glanced around to find fake plants, patients fidgeting and old torn, probably uninteresting, magazines littering  tables in each corner.

I took seat on one side of the room and my mother took the seat next to me.   The next half hour, I carefully watched each patient as one by one the poor souls  were called back to take their turn with the dentist.  Even at the tender age of five, I knew something was not right in this place.  Perhaps it was the look on the faces of the patients or the strange odors wafting in from the long hall whenever the hygienist opened the hallway door.

Well, it wasn't too long before my name was called and off my mother and I trudged down the hall and into an empty examination room. It probably wasn't that cold in there  but it seemed that way to me. My arms had goose bumps and my face had that funny tingly feeling you get when you have had too much sugar.  My mom tried to keep my mind off where I was, and told me I had nothing to worry about and that everyone has to go to the dentist.  Later, when I became a parent I found out that this tactic is about all a mother can do to help her poor child get through bad experiences and that the parent wants to get out of there just as much as the child.

 After a few minutes of sitting in the chair and looking at the pictures of teeth plastering the wall, I was greeted by the dentist.  He made a couple jokes that I smiled at even though I had no idea what he was saying or the meaning of what he said.  The man had short hair and seemed middle age to me, but he was probably in his early thirties at most. At five, everyone looks old.

The dentist began by shining a light in my face and examining my mouth with some kind of pick.  Every once in a while he would stop and scrape the tool on a tooth then tell me to spit in a little bowl mounted to the chair (this was before those suction things they use now).  After the exam  he turned toward my mother and informed her that I had a small cavity and should have it filled.  "Filled? Oh no!", I thought. "I remember this from those horrible stories my uncle told. I believe, in those stories, he may have mentioned something about a drill and horrific eye bursting pain." Before I could utter a word of protest,  a high pitched sound broke through my thoughts.  There it was, in front of me. What I now know as an instrument of pure evil.  It was...  The drill!  Now some of you are reading this wondering if I missed something.  Perhaps I missed the part about needles and numbing my mouth. No, no I didn't forget to mention that, this boy was being drilled without novacane, as they called it then.  Yep this guy didn't give me one drop of pain killer. He was going 19th century on me.

Of course, it only took a few seconds of drilling before I began to feel the pain. The smell of a dentist who had smoked too many cigarettes  combined with the smell of burning decayed tooth filled the air. I must have been turning white, because he glanced at my mom and  assured her that people my age do not feel pain when drilling and if the do it is very minor.  I can now and could at that moment say that was utter and total nonsense.  My job, however,  at this point was to be the tough little man and hang in there.  Pain was part of life, my Marine father often said.  This was one of those times where I would have to push through the pain and be a tough little Marine.

I don't know how long it took.  It seemed like maybe 15 or 20 minutes, but it was long enough.  When I sat up from the chair I was exhausted and laden with sweat.  I now completely understood what a dentist was, what he did and how he did it. All of my questions had been thoroughly answered without uttering a word.  He was a sadist quack!

My feelings toward dentists have not changed.  They continue with each visit to reinforce my ideas formed at a young age.  Perhaps there are good dentists out there but I doubt it.

  




The smell of the turkey roasting in the oven brings back many a memory of family gatherings around the holidays, but something is mysteriously missing at this years Thanksgiving.  Great Food!

I remember my grandmother making huge batches of mashed potatoes, bowls of turkey gravy, several pumpkin pies, and of course, the ever delicious apple pie.  Unfortunately all of this is but a distant memory. Today, the culture is all about healthy foods and how to "immitate" the Thanksgiving experience with substitutes to those famous dishes.

So what are we having this year?  Well thank God the turkey and stuffing are still present, but that is where the similarities come to a total halt.   This year the potatoes have been replaced with "real" vegetables, the pies are crustless pies because of course white flour is evil and the gravy well, you know, it is fatty of course so that is missing.

Is this celebrating?  I find it a poor and totally lacking substitute for the real deal.  At the same time I get the fact that we are becoming a fat, lazy and unproductive society.  It seems, however, that we could still be a productive society, yet still eat all of those great foods.  Our country fathers made the country what is is today and I'll bet they had some apple pie at Thanksgiving.