Will Wright’s latest software toy is out, and while I would be excited over such an ambitious project, I have also been underwhelmed by SimCity 4 and other games of that type in the past several years. There’s also a protest afoot against the game’s copy protection, so it has just over one star on Amazon.com. On a mailing list at work I explained that instead of rushing out to buy the new game, I’m taking a wait-and-see approach:
My interpretation is that it is an intriguing idea, but rather than building an interesting and educational toy, EA smashed it into an over-hyped high-priced bauble aimed at mass-market appeal. You can download the creature creator for free, but instead of being constrained by say, the amount of metabolism your creature would require or how fast it could reproduce given all it attributes, the only trade-off I could find was that if you spend more “money” you can buy more “features” . . .
My approach for now is to boycott the initial sales to see if they come around on the DRM, and wait to hear what other folks think of it, as well as maybe a price drop.
I spend a few minutes most mornings at the bus shelter at 19th Ave and Taraval. In July, they featured this public-service ad on the street side of the shelter, encouraging black youth to “stay alive and free” eating mama’s home cooking, rather than the cuisine associated with orange jumpsuits:
Cheesy, but well-meaning. I encourage all youth to “stay alive and free”.
The shelter side of this shelter usually features bizarre fashion advertising. In July, on the flip side of the above poster was this bizarre lady: a white woman seductively holding handcuffs. In addition to promoting “fashion” I guess she was trying to explain that temptations can be crassly grotesque:
To be sure, my neighborhood is dominated by Chinese families. Red is the color you wear on your wedding day.
Meanwhile, over on the BART, I see this strange poster in the distance:
I got up to take a closer look to discover a black man in his underwear, barricading the door against the sodomy we assume accompanies a prostate exam. “If you’re over 50, or an African American over 45, get your prostate exam!”
No comment.
So, yeah, there are some provocative posters, questionable imagery, but look beyond advertising to real folk, and you’ll see some soul.
This week I upgraded the guts in my desktop. For the video card I jumped up to an ASUS EN9600GT silent graphics card. It is pretty “bleeding edge” as far as Linux goes, and it is a double-wide card with a massive heatsink where others would have a fan. I like to reduce the white noise.
Unfortunately, it is too new for the currently-supported Ubuntu drivers. I used Ubuntu’s NvidiaManual docs to manually upgrade to the 173.14.12 drivers from NVidia’s site, and then things were happier. Except video playback. Files and DVDs seem to work okay, but the colors are off, notably, people get rendered with blue or purple flesh. (more…)
The deal is I’m trying to set some image published each Thursday. I missed last week for sure. Today is a double-header from around 2006: practice sketching cartoon characters based on a book I purchased on impulse on how to draw cartoons:
The first page is just practice drawing a simple character from repeated elements: nose, eyes, chin, ear, hair, smile. Then he gets a trapezoidal boy, simple arms, easy legs . . . . then we try posing him. On the next page we try to bring in some action.
A healthy reminder as to how you can achieve a great deal with simplicity, and that I should practice.
Ahhh, Ikea! Our favorite one-stop shop to kill an entire Saturday stocking up on inexpensive husgeråd. The checkout process can be exhausting, but I tend to find the post-unloading furniture assembly to be relaxing.
But, fret not, as I had done, for after my whining, Paul posted the number for Ikea US Corporate Headquarters, and I have since heard from others that calling this number indeed connects you to friendly human beings who can resolve problems for you:
(610)834-0180
If you find that this does or does not bring you satisfaction, please let me know. Cheers!
When people ask me what I do I answer either “computer stuff” or “Unix systems administration” and when asked what that means I answer that I keep the servers up and running. If you happen to be curious about my technical background you can review an old copy of my resumé online.
SAGE members and survey participants now have access to the 2007 System Administrator’s Salary Survey at http://www.sage.org/salsurv/. It is nice to check in an see how well one’s compensation aligns with that of one’s peers. I like the summary:
“A technically challenging profession that pays its entry people as much as US$50,000/year is an interesting one. System administration appears to be a fine way to make a living. Experience, education, and enhanced skillsets seem to be the growth path of choice.”
My current employer is known for its generous compensation, and the current survey is an affirmation of that. More importantly I’m enjoying my experience of my present employer and with any luck may actually hold this job for a few years.
I still hope to eventually return to Chicago to work. The San Francisco Bay Area has the highest average salaries, though Chicago averages not much less. The catch is that most Chicago jobs are in the financial services industry, and that is a less enjoyable work environment than the Silicon Valley culture.
I’m 32 years old, and so I try to behave like a grownup and not get excited over all the injustices of the world. And I try to have a reasoned, diplomatically nuanced outlook on world affairs. When it comes to Chinese politics I understand the tensions between regional independence and national cohesion, the tension between personal freedoms and the scary business of managing a rapidly industrializing nation of 1.2 billion people and limited natural resources . . . I care about what happens in China but I uhm, try to be a properly diplomatic adult and defer to them doing it their way.
This is the first contemporary “doodle” that I’m posting. I hope there will be more. I have long had a crush on the word “iconoclast” which basically means non-conformist, someone who marches to their own drumbeat, conventions be damned. I like it because it kind of sounds like “ironclad”. The “ironclad iconoclast” chugging along the seas blowing up wooden preconceptions!
Yeah, anyway, that crazy guy with the mug is me. Seriously, I can drink coffee from a paper cup if I have to but why should I have to? So, if I’m headed to a cafe I pack my own mug. Of course, Starbucks will still hand me my pastry in a bag, like I’m some sort of cretin.
I don’t actually talk as much as “Mr Iconoclast” but I have smiled and answered “MUG SIZE!”
Also, that overly-wide middle line could be considered a bug, which I could have fixed on the computer, but have chosen to preserve for posterity. Nyah!
The other day I was working on a shell script to be run on several hundred machines at the same time. Since the script was going to download a file from a central server, and I did not want to overwhelm the central server with hundreds of simultaneous requests, I decided that I wanted to add a random wait time. But how do you conjure a random number within a specific range in a shell script?
Updated: Due to much feedback, I now know of three ways to do this . . .
1) On BSD systems, you can use jot(1): sleep `jot -r 1 1 900`
2) If you are scripting with bash, you can use $RANDOM: sleep `echo $RANDOM%900 | bc`
3) For portability, you can resort to my first solution: # Sleep up to fifteen minutes
sleep `echo $$%900 | bc`
$$ is the process ID (PID), or “random seed” which on most systems is a value between 1 and 65,535. Fifteen minutes is 900 seconds. % is modulo, which is like division but it gives you the remainder. Thus, $$ % 900 will give you a result between 0 and 899. With bash, $RANDOM provides the same utility, except it is a different value whenever you reference it.
Updated yet again . . . says a friend:
nah it’s using `echo .. | bc` that bugs me, 2 fork+execs, let your shell do the math, it knows how
so $(( $$ % 900 )) should work in bsd sh
For efficiency, you could rewrite the latter two solutions:
2.1) sleep $(( $RANDOM % 900 ))
3.1) sleep $(( $$ % 900 ))
The revised solution will work in sh-derived shells: sh, bash, ksh. My original “portable” solution will also work if you’re scripting in csh or tcsh.
“I pledge allegiance, to the flag, of the United States of America. And to the Republic, for which it stands, one nation, indivisible, with Liberty and Justice for All.”
Notice anything missing?
Some time in grammar school I figured there was something wrong with an Atheist pledging allegiance “under God” and after some time I came to pause when we would recite those two words. “one nation . . . indivisible.”
I can recite the Pledge of Allegiance no problem. But as a devout Atheist and an honest patriot I skip the Joseph McCarthy “under God” feature because it is sacrilegious to make false professions, and dangerously reckless to claim holy sanction for the State.
So, here’s to Independence from Tyranny and state-sanctioned religion!!