Hello, (a Different Part of the) World

Last week I traveled to Dubai and Qatar, a vacation with my spouse and an opportunity to see the Middle East.

Dubai was luxurious, a center of wealth and commerce, a spot where my spouse wanted to indulge in some well-deserved pampering. But I got out often, mostly on foot, and explored the environs (Deira City).

I really enjoyed the Middle Eastern cuisine, and foul medames is going to be rotated into my carb-free diet. Of course, it being a Muslim country, you’re out of luck if you’re craving (pork) bacon – I wasn’t – but it was interesting to see the alternatives: had I access to a kitchen, I would have loved to try the veal bacon we found in a supermarket. And beef bacon, which I did have, could also rotate into my diet, it being much less greasy (that’s a feature) than pork bacon.

Being an aficionado of tall buildings (my when-I-grow-up goal from the age of 12 to 16 or so was to be an architect), I had to go up the Burj Khalifa, at 2717 feet the tallest building on Earth. It was almost comical how tall it is, literally towering over the 1000+ foot buildings around it. A beautiful piece of architecture, and well worth the price.

We stayed at the Park Hyatt, a western-style hotel, but one matching the design of the older Middle East, as opposed to the glass-and-steel buildings in the area that could have been in the skyline of Chicago.

A couple of matters about Dubai: I’d read online that they’re very strict about bringing things into the country, specifically alcohol, tobacco, and drugs, including prescription medications. So I spent some time beforehand, getting copies of my prescriptions, then anxiously awaited the full-body and cavity searches when I arrived.

Hah. It’s simpler to get into a Smithsonian museum than to go through customs in Dubai. In fact, I wasn’t really sure that I was going through it until I was done. That’s it? Much worrying for nothing, and I guess for the first time, there was incorrect information on the Internet.

Note: Dubai is dry, i.e., alcohol isn’t sold, except in hotels, where it is insanely expensive, at five to ten times the cost in a store over here. But at the Dubai airport, you can go through the duty-free shop on the way out of the airport and bring up to five bottles out. So, for all my readers who are going to Dubai and want to drink wine while you’re there, that’s my helpful tip. You’re welcome.

Dubai is also very orderly. I noticed that people don’t even jaywalk, even at night with no cars around, and just patiently wait for the pedestrian signal to switch to green.

On to Qatar, to the west. I traveled there alone, while the missus left in the opposite direction, back to where she is currently working. I had an overnight layout in Doha, so I took off, on foot, and walked up to Souk Waqif, an outdoor (mostly) market to the north of the city. Getting up there was no easy feat, since my own feet were frequently ensconced in a nice thicket of mud, left there by the recent rain. Evidently when you almost never get rain, you don’t build drains for the roads, so much of the water went onto the “sidewalks”, i.e., the area, possibly but not necessarily paved, alongside the roads.

And Qatar is not orderly. I had a couple of close calls with cars: there evidently is no right of way for pedestrians. More like “you can get right out of the way”. That might be one reason that I encountered nearly no one else during my five or six mile stroll around the city.

Souk Waqif was fascinating. I love being a fish out of water, and as a nearly-stereotypical North American, I didn’t fit in at all. Perfect. Nearly everyone there was Arabic, but there were enough written and spoken English that I didn’t have any difficulty.

I saw and listened to an outdoor performance, and Middle Eastern music is becoming a new favorite, especially since I tend to like music that others abhor (metal, old country and western, and disco). On the plane I listened to El Liala’s Khalina Lewahdina, a very catchy mixture of Arabic music and disco (sorry, I mean “hip-hop”), and I must have listened to it ten times.

At Souk Waqif I went to an outdoor cafe and had an excellent dinner: lamb and chicken kabobs, moutabai, fattouch, and a couple of (non-alcoholic) drinks, whose names escape me. I also enjoyed, for the first time, a shisha, of grape and mint. I need one of those. (Off Jeff goes to Amazon … ). I guess that’s what is otherwise known as a hookah. Well, consider my horizons broadened.

After I ordered my dinner (and yes, this blog entry is about to have a reference to programming, so those of you that have stuck this far will have your patience rewarded), I got out my phone and decided to do a little Scrabble practice. See, I’ve been writing an Android app (my first) to help me (and anyone else) practice Scrabble words. I’m a big-time Scrabble fan (jpace317 on Origin), and
although I’m decent at bingos, I’m trying to up my game with the three- and four-letter words. (I’m looking in your direction, zax and chay.)

So I fired up my app, XuMoQi, and the first query was: “.uq” (as in, what is the missing letter). Answer, “suq”, a variant spelling of … wait for it … “souk”. As in Souk Waqif. Holy freaking moley.

(I seem to have a bit of a weird-timing record with serendipitous moments like that, such as my car finally giving up the ghost (actually, its transmission, at 175,038 miles), while I was driving out to the dealer to buy my new car. Oh, and adding to the weirdness is that it was on my birthday.)

Anyway, that’s the story of my travels.

Oh, and back home: after fourteen hours in the air, at the airport there was no question about when I was going through the passport check and customs. I wanted to apologize to those in the non-U.S. citizens queue, given that it looked like they would be waiting for at least an hour to get through. So to all my non-U.S. citizen readers who landed at Dulles airport the afternoon of 12 January 2014, on behalf of the entire United States of America, I offer my most profound apologies.

The reading material of choice during the trip: Sway, Evolution of Useful Things, Code, and Don’t Put Me In, Coach. The last book was light reading material, and perfect for unwinding on the plane. If you ever spent time as a bench-warming basketball player (I’m looking in my own direction here), I highly recommend it.

Tests Result in Better Programs, and Programmers

It’s widely noted and accepted that tests result in better code. My conjecture is that tests result in vastly improved programmers.

Even with a good test suite, the first implementation of a project will be utilitarian, complying with the edict of “just get it working!”. This are the red and green phases of the red/green/refactor cycle: red is when the tests fail, and green is when they pass. Too often, that initial version is the end of the cycle for many programmers and projects, which is why, in general, version 1 of a program is horrible:

win101logo

In the refactoring phase the project goes from simply “working” to being well-crafted. Thus the programmer as well has changed their mindset from writing “working” code to writing well-crafted code, and the programmer has been elevated to a higher level of craftsmanship.

Refactoring code is when a programmer can develop their skills and push the boundaries of their knowledge, such as delving into advanced object-oriented programming and metaprogramming, which are often considered dauntingly complex and risky. But used properly, they can dramatically improve a project, and I believe what is more important, they can dramatically improve the programmer.

In my experience, this was first proven to me when I was working on a large C++ project, my module being our persistence layer, providing a J2EE-like (but vastly simpler) interface with PostgreSQL. Although in that era (the late 1990s) Test-Driven Development hadn’t become popular, my daily goal was to write more test code than “real” code, usually between 500 and 1500 lines per day, usually, but not always, writing my tests first.

As my test suite grew and I became more confident in its ability to catch errors, I pushed my knowledge of C++, particularly with templates and the Standard Template Library, eventually reaching a point when I really understood the magic of the STL code. Had I not had such tests, and thus confidence, I likely would have refrained from pushing myself into an area that previously was in the dark, murky area of C++ to me, and I would not have gained valuable expertise as a C++ programmer.

In fact, I’d say that it’s only because of tests that I’ve felt confident learning a new language, such as when I rewrote DiffJ in JRuby, a language I hadn’t used. Having a thorough test suite made the learning process much easier.

The bottom line is that programmers must understand that testing includes refactoring (including of the test code itself), and that the refactoring phase is where programmers, and projects, can become significantly better.

Oh, and with thorough refactoring that horrible version 1 can eventually lead to significant improvements:

macos

Shorter Directory Names in Emacs Ibuffer and Mode Line

I use Emacs and Z shell exclusively, and have been frustrated at times about the features in Z shell that are not in Emacs, one being the shortened directory names. These are used for navigating (changing directories and displayed in the prompt), and are especially useful with long/deep directory names.

In Java projects, this is beneficial, because the hierarchy tends to be so deep. For example, with the path:

   /home/me/proj/com/mycompany/projectx/trunk/src/main/java/com/mycompany/util/FooUtil.java

In Z shell the directory can be given a short name with:

   hash -d projectx=/home/me/proj/com/mycompany/projectx/trunk

So the file can be referred as:

   less ~projectx/src/main/java/com/mycompany/util/FooUtil.java

And this can be done more extensively than that, such as:

   hash -d pxutil=~projectx/src/main/java/com/mycompany/util

And used as:

   less ~pxutil/FooUtil.java

That also makes for a shorter directory name displayed in the prompt, such as this for DiffJ:

    (~diffj)-[master]-(0)%

Which without Zsh hashes would be:

    (/home/jpace/proj/org/incava/diffj)-[master]-(0)%

So I’ve become used to that in my shell, but have been frustrated with my editor, which shows the full path in the default ibuffer display, running out to over 100 columns:

    TokenList.java   1699 /home/jpace/proj/org/incava/diffj/src/main/java/org/incava/diffj/code/TokenList.java

It also seemed redundant that in the above, TokenList.java is displayed twice, so the filename-and-process column could be replaced with only the directory name.

I looked around for examples about changing the columns in ibuffer, but found few examples, mainly the same code repeated on various sites online, variations of this from http://www.emacswiki.org/emacs/IbufferMode:

;; Use human readable Size column instead of original one
(define-ibuffer-column size-h
  (:name "Size" :inline t)
  (cond
   ((> (buffer-size) 1000000) (format "%7.3fM" (/ (buffer-size) 1000000.0)))
   ((> (buffer-size) 1000) (format "%7.3fk" (/ (buffer-size) 1000.0)))
   (t (format "%8d" (buffer-size)))))

That was a starting point, but I couldn’t find anything more about revising the filename-and-process column, which shows the above long path.

The following code adds a ‘dirname’ format to ibuffer to shorten the filename and show only the directory:

(defvar jep:filename-subs
  '(("/home/jpace" . "~")
    (".*/Projects/com/mycompany/is/" . "~is/")
    ("/home/jpace/proj/org/incava/" . "~incava/")
    ("/$" . "")))

(define-ibuffer-column dirname
  (:name "Directory"
	 :inline nil)
  (if (buffer-file-name buffer)
      (str-replace-all (file-name-directory (buffer-file-name buffer)) jep:filename-subs)
    (or dired-directory
	"")))

(setq ibuffer-formats
      '((mark modified read-only " "
	      (name 30 30 :left :elide)
	      " "
	      (size 9 -1 :right)
	      " " dirname)
	(mark modified read-only " "
	      (name 30 30 :left :elide)
	      " "
	      (size 9 -1 :right)
	      " " filename-and-process)
	(mark " "
	      (name 30 30 :left :elide)
	      " " filename-and-process)))

Now my ibuffer looks like:

[ diffj ]
    TokenList.java    1699 ~incava/diffj/src/main/java/org/incava/diffj/code
    build.gradle       892 ~incava/diffj
    etc....

Much better.

Coincidentally, I had the same complaint about the modeline, which defaults to the same display as ibuffer, with the full path of the file. So I tweaked the modeline code to do the same:

(defvar jep:modeline-subs
  '(("/home/jpace/" . "~/")
    (".*/Projects/com/mycompany/is/" . "~is/")
    ("/proj/org/incava/" . "~incava/")
    ("/$" . "")
    ))

(defun jep:modeline-dir-abbrev ()
  (str-replace-all default-directory jep:modeline-subs))

(setq default-mode-line-format
      (list ""
            'mode-line-modified
            "%25b--"
            " ["
            '(:eval (jep:modeline-dir-abbrev))
            "] "
            "%[("
            'mode-name
            "%n"
            'mode-line-process
            ")%]--"
             "L%l--"
             "C%c--"
            '(-3 . "%P")
            "-%-"))

Note that the modeline and ibuffer code above uses this function, which I put in ~/.emacs.d/lisp/str.el:

(defun str-replace-all (str pats)
  (if (null pats)
      str
    (let* ((pat (car pats))
	   (lhs (car pat))
	   (rhs (cdr pat)))
      (replace-regexp-in-string lhs rhs (str-replace-all str (cdr pats))))))

So there is my contribution. Here it is in action:

emacs_dirname

And it’s included with my Emacs configuration on GitHub.