Older blog entries for roozbeh (starting at number 154)

Fedora: The other weekend, I flew to Boston for FUDCon F11. I mostly did it to reboot myself back into free software contribution, something I hadn't done a lot last year (because of settling in California and various other stressful and depressing situations).

I saw interesting stuff and boring stuff, but the best thing that happened was meeting "spot". He spent a couple of hours with me over drinks, providing free wisdom (and selling me ideas?). He’s so amazing!

Wikipedia: Back in August, there was an article in Washington Post about me and my dear Ahmadinejad, including references to this weblog.

The reporter did not really contact me after the interviews, so I thought the article was cancelled. Apparently it was not.

He called it “Word War III”. It gives interesting insight towards the lifetime of a Wikipedia article. It also has some quotes from me that I find a bit funny now. It’s like the missing piece of this weblog. Read it!

AWOL: I’ve been AWOL for the most of 2008. Sorry guys. Now I’m trying to be back.

The short story is I moved to California in early February, and settling in the western world proved to be harder than it seemed at my age of almost thirty. I am working at HighTech Passport (HTP), an internationalization and localization company based in San Jose. I am HTP’s only “Internationalization Specialist”.

It was also very hard to get here. It all started when the now famous Mahmoud Ahmadinejad was elected as the President of Iran. I wrote a blog post, explaining my understanding of the situation and asking readers to point a way out to me.

Lot’s of friends and acquaintances wrote to me, with comforting advice and encouragement. But the most useful proved to come from Razvan Vilt, who I believe read my post from either Planet Fedora or Planet GNOME.

Razvan suggested a position at Bucharest, Romania, at the European branch of HighTech Passport. But after lots of paperwork, it proved impossible to get a Romanian work visa for me (there was no clear path). But after a short and depressing hiatus, the US headquarters came up with an offer for what I am doing now as my day job.

It took ages for everything to go through. Being an Iranian was another problem: the usual path for Iranians to go the US was either go as a student or win the green card lottery. Direct go-to-US-for-work cases are very rare for Iranians.

The process of applying for my H1-B visa started in November 2006. In February HTP applied to the US Department of Labour, and in April 2007, to US Citizenship and Immigration Services (USCIS). I was a happy winner of the first ever H1-B lottery, and USCIS answered in June 2007. After finding that the US Consulate at Dubai had no free appointment time in the next three months, I applied at the US Embassy at Ankara in late August. (The trip proved to be an adrenalin-heavy headache, which started because of a travel agent losing our reservation, and ended in pink yoghurt all over a plane, but that’s a story for another day.)

If all would go well, I was supposed to start working in San Jose in October 2007. After all, a German colleague was going through the same procedures, and got her visa the next day. But of course, being Iranian complicates everything.

At the embassy, they applied for a Security Advisory Opinion for me and Elnaz, which is basically permission from several US federal agencies to issue the visa (any single one of can make the procedure very long). We went back to Iran, to wait for it to get ready.

Elnaz's acceptance came in two weeks. But week after week we checked the embassy’s website, and there was no news of mine. The problem was that Elnaz, as a dependent of me, could not travel to the US before me, and her clearance was only valid for three months. And well, it happened: hers expired in December 2007. We were reserving new flights to Ankara and cancelling the previous reservation almost every week.

We reapplied for a new clearance for her, and waited for mine to come. When mine finally arrived in January 2008 (in about four months and a half), it was now her turn. We had assumed that it would be shorter the second time: it wasn’t. After a few weeks we bit the bullet and decided that I should travel to the US sooner: there was a chance that my clearance would expire before hers came, putting us into a forever-repeating loop.

I flew to Ankara again, got my visa, and flew to the US. The next day, in early February 2008, almost three years after I started seeking a job outside Iran, I started working at my new job. Elnaz got her visa and arrived four or five weeks later, with quite a few horror stories on the way.

...

Settling in the US has proved much harder than it seemed, and I plan to tell the stories here some day.

The best news is that I finally have a laptop, a Lenovo X300 that arrived yesterday. It’s quite comfortable: they keyboard is a wonder, and the whole thing is so light, one can mistake it with a book. Fedora 10 is quite fast on it too (although a bit buggy).

Mentioned in Knuth: My name is now mentioned in Knuth!

It is in pre-fascicle 1a, Bitwise Tricks and Techniques (PostScript, 1.1MiB): check the index for "Pournader, Roozbeh".

My contribution is a very small improvement on a UTF-8 bit manipulation trick I talked about in a former blog post.

17 Jan 2008 (updated 17 Jan 2008 at 15:57 UTC) »
Bit manipulation: Ages ago, in October 2005, Federico asked for improvements to a certain g_utf8_offset_to_pointer() function.

This resulted in an optimization match by various people, which Behdad has somehow summarized here (read also the comments).

Fast forward to December 2006, when I was going over the new Unicode book and was trying to make sure Gnome and friends are Unicode compliant. One of the bugs I filed was this one, and some of the answers I received somehow discouraged me from continuing the effort which basically led me to stop the whole thing. (The bug is about getting rid of legacy support for an old version of UTF-8 which is now considered by the Unicode Standard to be a security problem.)

Then, last month I have been reading some draft material Donald Knuth is putting online, for his infamous Volume 4 of The Art of Computer Programming. One of the pre-fascicles he has put online is about Bitwise Tricks and Techniques, which I really enjoyed reading. Knuth, being a Unicode fan, had inserted some interesting excercises, regarding UTF-8 and UTF-16.

One of the exercises included a magic (!) formula to replace the utf8_skip_data array (see Federico's post again). It is provided in exercise 197.

Knuth's formula not only needs no memory reference, it's also branch-free (which is considered very good for many modern CPU architectures). The formula does it with four operations, which would become five when adapted to the present formulation used in glib. The only problem is that it only works for proper UTF-8, the version the Unicode Standard requires, but not glib's UTF-8.

I tried to extend Knuth's formula to glib's UTF-8, and did it on paper with two more operations (seven instead of five), using 64-bit boolean arithmetic.

After chatting with Behdad, he told me it's not really worth it to replace the array with the formula (I cannot understand the reasons well enough to explain them here, but I trust him), but he was interested in seeing my extended formula.

So last night, I tried to make sure my formula works fine before emailing it to Behdad. And I found a bug, which meant that I needed to add two more operations to get it done properly, a total of nine operations.

This is my new formula, which is tested and works fine. It may not provide exactly the same results as the utf8_skip_data array for all values, but many of the array's cells are redundant. For necessary cells, it provides the same results:


def utf8_skipper(c):
  t = (c >> 1)^0x7F
  return ((0x924900009201B128 >> ((t & ~(t
>> 1))*3)) & 7)+1

Can you do it in less that nine operations? Or with 32-bit boolean arithmetic only? [With no branching or memory access, of course.]

This may just be a mental exercise, but please email me if you could, as I'm starting to feel an affection towards the problem!

The Middle Eastern view: The stand-up comedian Maz Jobrani talks about the Middle Eastern view in his Axis of Evil Comedy Tour. He says that he knew what would happen when he watched Zinedine Zidane headbutt Materazzi: He knew that some French people that considered Zidane one of themselves, would suddenly start to say: “This fucking guy’s Alegerian!”

So, I just wish to share my own Middle Eastern view. I just read the story on slashdot about a guy buying a hard drive, finding that it contains bathroom tiles, and having problems returning it. What I immediately thought was: “He did it himself!” I read more, and I saw that many people consider him honest and a victim, which was also what I came to after reading the comments.

The sad point is, unfortunately, lots of Iranian muslims lie very easily, and even enjoy it, although it’s something that’s very frowned upon in the scripture and the sayings. Even very religious muslims who own shops in the bazaar and contribute heavily to religious causes like building mosques, lie very easily about everything and even pose as victims. So in this case, I automatically thought that the victim had done it himself, because I had got used to such deceptive self-victimizations. Ah, before I forget, I believe President Ahmadinejad leads them all!

Not that the story has much similarity with Maz Jobrani’s, just that suddenly a Middle Easterner’s view of an event or a story may be so different from the rest of the world’s.

By the way, I also found a wonderful quote in the slashdot comments: “I was tired of North Korea’s harsh penalties for being a citizen. That’s why I moved to Iran!”

Che: Here’s a great way to celebrate Che’s death anniversary: Where are the Rosa Luxemburg t-shirts?

In other news, apparently access to my Persian weblog (not updated for quite a while) is blocked by some (but not all) Iranian ISPs. My mother-in-law found about it, when she was searching my name in Google, and then called Elnaz, my wife: “There were so many hits for Roozbeh, but his website was filtered!”

OOXML: I’m still tired from a one-week Turkey trip, in the middle of which I was supposed to finalize the drafting of comments to accompany Iran’s No vote to OOXML. Hard work for which some shameless people are trying to claim credit for...

I will write about the adventurous Turkey trip as soon as I can. It’s quite a entertaining story, considering all the disasters that happened to us. Also more on OOXML later.

16 Jun 2007 (updated 16 Jun 2007 at 15:32 UTC) »
Teaching: My brother Behnam teaches GNU/Linux and various software that usually come with it, specially server-related applications. A week ago, after he had talked about an hour about how yum works, how to use it, and how to install a certain piece of software (let's call it FreeFoo) that the students were being taught about (on Fedora and with yum), a student asked a question:

Student: I was wondering if you would please give us a copy of the FreeFoo software you just installed on the computer?

Behnam: But I don’t have anything apart from the OS installation CDs, of which you have copies. The application yum does all the rest.

Student: But you just installed it! You should have a CD somewhere.

Behnam: It’s installed off the Internet, as I told you.

And then Behnam explains again for half an hour how yum works.
Student: [not believing him] Ah, still, would you give us a copy if you have one on you?
9 Jun 2007 (updated 16 Jun 2007 at 14:29 UTC) »
Holidays: Working at your own (and a bunch of friends’) company means that arranging holidays with friends will be easier and harder at the same time. But we did it anyway. I am just back from a road trip across Iran, going from Tehran to Qazvin to Zanjan to Tabriz to Kandovan to Jolfa to Kaleybar to Ardebil to Astara to Chalus and then back to Tehran. There were seven of us, five Iranians and two Irishmen, one of them Michael Everson (blog, wikipedia article), whom I have worked with on quite a few character encoding proposals for the Unicode Standard.

Among the most interesting parts of the trip, was going to the Babak Fort during a very mysty day when we couldn’t see more than five meters around. Michael remained in the car, and tried to decode the joining and shaping behavior of the Psalter Pahlavi script, a script that is only found in a fourth century CE twelve-page document (and also recently on a damaged cross found around Herat). We, the others, tried to find the path to the castle in the mist and was lost after twenty minutes, trying to find the coordinates of the castle by phoning friends and asking them to dig Google Earth and other friends with GPS devices but seeing no success, and then finally finding our way by Christian (our other Irish guest) hearing a loud radio playing in Azerbaijani which we followed and resulted in us getting found.

I’m looking forward to mapping the route to the castle on OSM.

145 older entries...

New Advogato Features

New HTML Parser: The long-awaited libxml2 based HTML parser code is live. It needs further work but already handles most markup better than the original parser.

Keep up with the latest Advogato features by reading the Advogato status blog.

If you're a C programmer with some spare time, take a look at the mod_virgule project page and help us with one of the tasks on the ToDo list!