Day Z: The Zombie Game We’ve Been Waiting For?
When I bought Dead Island for PC, I expected it to be a vast, open-ended strategic zombie survival game—a complement to excellent tactical zombie fare like Left 4 Dead. Unfortunately, it failed up to my expectations. Sure, it was fun, gory co-op glory, but it was essentially a slasher-on-rails. I continued to dream (or nightmare) of a game that might take advantage of that cavernous space of gaming potential: the sandbox zombie survival MMORPG.
And that's when I heard about Day Z. If you've got a zombie state of mind like me, get that hanky ready, because you're about to drool. Day Z is a free third-party mod for the first-person shooter Arma II that seems to have the potential to deliver exactly the vastly detailed, gritty, desperate, and unpredictable gameplay we've been desperate to see. Players begin with only a revolver and meager supplies, and they must explore Arma II's massive, zombie-infested continent (~85 square miles!) to survive. Players need to constantly balance their needs with the risk of injury and death—not only from zombies, but also other players. This is the real deal in terms of feedback: when you die, you stay dead. You have to start over.
If that wasn't enough to whet your appetite, here are some other cool things we've heard:
- Your characters are hosted on dedicated servers, so you can pick up where you left off.
- Up to 100 players can participate on a single server/map. (Unconfirmed.)
- You can repair and use vehicles, as long as you can find the right parts.
- Sound and movement can attract zombies. Firing your gun has consequences!
- The game tracks hunger, "blood pressure" (overall health), and localized injuries. You can die from any one of these.
- You can hunt NPC animals and cook them into food.
- You can kill other players, but the game tracks "morality", and you can become a bandit by player-killing.
- Game time = real time, based on server location.
- The average life expectancy is just under 5 hours of gameplay.
Here's a good introductory video that shows you how the game looks and plays:
If you've played this, let us know how you like it! More on this soon.
Adding Featured Image Headers to LightWord
Featured images are a marvelous tweak available in some WordPress themes that allow you to specify a different custom header image in each post/page. For instance, notice that the custom header at the top is different than the default headers we use here at Riverwind. Unfortunately, the LightWord theme we use does not natively support featured image headers. Here's how to fix that while still allowing LightWord to use its randomized (or not) default headers.
1) Before you begin, back up your theme files! This is very important!
2) Modify the LightWord Settings (in Appearance in your Dashboard) to enable custom header images, and set them to the correct width. I use the wider LightWave theme, so my images are 960px wide x 100px tall.
3) Create some custom header images. I recommend at least one default image and one feature image for initial testing.
4) Edit LightWave's Theme Functions (functions.php) file using either the built-in editor (in Appearance) or a third-party editor through FTP. Look for this code around line 475:
function lightword_header_image(){
global $lw_top_header_image, $lw_top_header_image_height, $lw_top_header_image_width, $top_header_image_path;
if($lw_top_header_image == "Enabled") { ?>
<a name="top" title="<?php bloginfo('name'); ?>" href="<?php if(function_exists('home_url')) echo home_url(); else bloginfo('url'); ?>"><span id="top" style="background:url('<?php header_image(); ?>') no-repeat;height:<?php echo HEADER_IMAGE_HEIGHT; ?>px;width:<?php echo HEADER_IMAGE_WIDTH; ?>px"><strong><?php bloginfo('name'); ?></strong></span></a>
<?php }else{ ?>
<div id="top_cufon"><h1 id="logo"><a name="top" title="<?php bloginfo('name'); ?>" href="<?php if(function_exists('home_url')) echo home_url(); else bloginfo('url'); ?>"><?php bloginfo('name'); ?></a> <small><?php bloginfo('description'); ?></small></h1></div>
<?php
}
}
This code is invoked from the header.php file to write the header span or div to the correct location. What we need to do is to replace the default header image with our featured image when a featured image exists. To do this, replace the above code with this:
function lightword_header_image(){
global $lw_top_header_image, $lw_top_header_image_height, $lw_top_header_image_width, $top_header_image_path;
if($lw_top_header_image == "Enabled") { ?>
<a name="top" title="<?php bloginfo('name'); ?>" href="<?php if(function_exists('home_url')) echo home_url(); else bloginfo('url'); ?>"><span id="top" style="background:url('<?php if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail()) && !(is_home()) ) { echo wp_get_attachment_url( get_post_thumbnail_id( $post->ID ) ); } else { header_image(); } ?>') no-repeat;height:<?php echo HEADER_IMAGE_HEIGHT; ?>px;width:<?php echo HEADER_IMAGE_WIDTH; ?>px"><strong><?php bloginfo('name'); ?></strong></span></a>
<?php }else{ ?>
<div id="top_cufon"><h1 id="logo"><a name="top" title="<?php bloginfo('name'); ?>" href="<?php if(function_exists('home_url')) echo home_url(); else bloginfo('url'); ?>"><?php bloginfo('name'); ?></a> <small><?php bloginfo('description'); ?></small></h1></div>
<?php
}
}
If you look closely at line 6, you can see where we've made the necessary change.
5) Edit the Single Post (single.php) and Main Index Templates (index.php) to remove the featured image from the body of your posts. You can leave them there if you want, but I don't see a point once you've decided to use the Featured Image to pimp out your header. Open each file and remove or comment out this line:
<?php if ( (function_exists('has_post_thumbnail')) && (has_post_thumbnail()) ) { the_post_thumbnail(array( 200,200 ), array( 'class' => 'alignleft' )); } ?>
LightWord and Enhanced TooltipGlossary
I love the LightWord theme (that I'm currently using), but today I was on the verge of abandoning it because it doesn't play well with hovers. Specifically, it wasn't working with Enhanced TooltipGlossary (ETG), while all the other themes I tried seemed to play nicely. The solution turns out to be very simple, and the fact that it took me a while to figure out is probably a sign of the web programming rust starting to settle.
For your reference, ETG is a plugin designed to manage a glossary on your site. Glossary terms appear in posts and pages as links to the glossary, and optionally, when users hover over the link, the plugin can create a nice JavaScript hover box that gives a short definition. For instance: overhead press.
The problem with this plugin (and other hovers) is that the #content div has a z-index of 20. I wouldn't recommend changing this; rather, you should edit the CSS of the hover box to have a higher z-index. For ETG, you should:
- Go to your Dashboard and then select Plugins > Editor.
- In the Editor, select ETG as the plugin to edit and press "Select".
- On the right side, you should see a list of ETG's files. Choose "enhanced-tooltipglossary/tooltip.css".
- Add a z-index above 20 to each CSS item therein.
#tt {position:absolute; display:block; z-index:30;} #tttop {display:block; height:5px; margin-left:5px; z-index:30;} #ttcont {display:block; padding:2px 12px 3px 7px; margin-left:5px; background:#666; color:white; z-index:30;} #ttbot {display:block; height:5px; margin-left:5px; z-index:30;}
And voila!
Fixing Disqus for LightWord (and Other Tweaks)
Up until recently, I've had a problem with Disqus in LightWord, namely that these little bubbles appeared around the buttons (see left). It turns out that these are nothing more than a few innocently misplaced unordered list bullets. To get rid of them, simply add this line to the "Custom CSS" in your LightWord Settings (Dashboard > Appearance > LightWord Settings):
#disqus_thread * {list-style:none outside none !important;}
Tada!
Removing Rounded Corners
If you're like me and you like custom image headers, you're probably annoyed by the rounded corners at the top. Those are images, not CSS, so you'll need to replace the content_top.png file either by editing it or just downloading mine. Use your favorite FTP program to replace it, of course.
Aligning the Custom Header
At least in my install, the LightWord body didn't line up with my custom headers. It turns out that they're just a couple of pixels off. Add this to your Custom CSS:
#top {margin-left:7px;}
Let me know if you're looking for any more tweaks for LightWord!
CrossFit Shoes: Inov8 F-Lite 230 vs Reebok RealFlex Nano
I love my Vibram FF Bikilas. I started using KSOs for windsurfing, and it was all but natural to grab a slightly thicker pair for barefoot running and eventually CrossFit. However, I came to the painful realization that barefoot running may have been a salubrious caveman pursuit, but barefoot box jumps probably weren't. Ow. It turns out that I have more than one set of balls that can be hurt by impact.
To fill that painful vacuum, in the spirit of Victorian exploration, I set upon the interwebz and searched far and widescreen, collecting all the best CrossFit shoes in the world for a final showdown of epic proportions! ... Okay, okay, maybe I just gaped, glassy-eyed, at shoe-wearing feet around the box until someone came up to tell me what they were and wipe the drool. Contestants?!
The CrossFit Shoes
Oh, how I love that black-and-red scheme. These are two very similar CrossFit shoes, both in appearance and function. Both shoes are comfortable and lightweight. Both soles are relatively incompressible and have a minor drop. Both have a similar price point. Here are some stats, including thickness and weight:
| Stat | F-Lite 230 | RealFlex Nano |
|---|---|---|
| MSRP (USA) | $120 | $120 |
| Heel-Toe Drop | 13mm-7mm (6mm)* | 9mm-5mm (4mm) |
| Mass | ~10 oz | ~10 oz |
| Cool Factor | A- | C+ |
*Technically, Inov8 F-Lite 195s may be a better counterpart to the Nanos due to the similarity of drop (9mm-6mm).
Which is right for me?
For most people, the 230s will be the shoe-in, because the Nanos are nigh impossible to find. I don't get it, Reebok. What's the point of marketing a shoe if nobody can buy it? I only found one store with Nanos in my size, and they were promptly left empty-footed after I poached out of the nature reserve they had set up for this rare species of footwear that had been born into extinction.
Anyways, these shoes are very similar, and the choice will probably come down to foot dimensions. The Nanos are far wider than the 230s. My piggies could be stricken by elephantiasis and still fit into the vast barn that is the Nano's toe box. The width difference is especially noticeable at the throat (where your arch is). If you have wider, flatter feet, you may find that most Inov8s will choke them. Apparently, trail runners have leonine paws for feet.
The Nanos also feature UForm, which means that Reebok has teamed up with Hot Pockets to give you the best combination of fit and taste possible. UForm is basically shrink-wrapping for your feet. If you have unusually shaped feet that are improperly constrained by shoes for normal people, this might help you out. Otherwise, it's a half-baked gimmick. No, literally. You're supposed to put your new $120 shoes in the oven. Let me know how that goes.
Any other differences between the two are probably illusory. Nonetheless, let's get into them.
A Noun: Sprezzatura
Sprezzatura is an Italian word originating from Baldassare Castiglione's The Book of the Courtier, where it is defined by the author as "a certain nonchalance, so as to conceal all art and make whatever one does or says appear to be without effort and almost without any thought about it".
In other words, Sprezzatura is an air of disregard meant to create the illusion of effortlessness; it belies the actual pains endured. Practice all year, make the half-court shot, and then shrug it off? Sprezzatura. Answer that Final Jeopardy question about Carthaginian history with a curt nod? Sprezzatura. Spend ten hours Facebook-stalking a cutie before "guessing" her sign? Sprez... no, that's just plain creepy.
Just remember, Sprezzatura is like the game: once you mention it out loud, everyone loses. Ah, and now, so did you.


Being a beginner at CrossFit can be a bewildering experience. CrossFit movements are hard, but remembering them is even harder. How do you remember what the difference is between a power snatch and power clean? Luckily, there's a method to this barbell-laden madness, and we're here to help.


