
Barton was quoted saying , “My new gym will be so inspiring that even techies will start looking like their fantasy characters.” For a look at what the new gym will look like, see the gallery on their website.

The Food Network released the names of contestents for The Next Iron Chef, and Holly Smith is on the list. Smith, of Cafe Juanita and Poco Carretto, joined nine other top chefs in five weeks of worldwide taping, flying ‘from Los Angeles to Japan to New York to compete in the food fight of their professional lives.’
Anyone invoking the world's great drinking cities has to place New Orleans pretty close to the top.It's the birthplace of Peychaud's bitters and Southern Comfort, of the Sazerac and the Ramos gin fizz. And it has a long-standing absinthe legacy, including in 2007 being the first port of entry for the liquor since it was outlawed by the U.S. Department of Agriculture in 1912. Not a bad inheritance.
However, the cocktail revolution sweeping New York, San Francisco and Chicago -- the speak-easies and fedora-sporting bartenders alchemizing booze into transcendent mixology -- has been slow to come to town. But a new crop of bars and bartenders are giving the Big Easy's drinking scene a decidedly upscale flavor.
In this telephone call, which has become one of the more famous exchanges LBJ
recorded, the President asked a leader of the Haggar clothing company for some
custom-made pants, providing specific (and sometimes graphic) instructions on
how they should be customized for him.
One wonders what the advertising folks were smoking when they came up with this new TV advertisement for SPAM.
// Return the logical disk for the VHD's first partition
property String^ LogicalDisk
{
String^ get()
{
String^ physicalPath = this->PhysicalPath; // Calls GetVirtualDiskPhysicalPath API wrapper
String^ logicalDisk = nullptr;
// Use WMI to get the logical drive for the first partition on the VHD disk
RelatedObjectQuery^ q = gcnew RelatedObjectQuery(String::Format("\\\\.\\root\\cimv2:Win32_DiskDrive.DeviceID='{0}'", physicalPath), "Win32_DiskPartition");
ManagementObjectSearcher^ searcher = gcnew ManagementObjectSearcher(q);
String^ firstPartition = nullptr;
for each (ManagementObject^ o in searcher->Get())
{
firstPartition = o->Path->ToString();
break;
}
if (firstPartition != nullptr)
{
// Now see which volumes are related to the partitions
q = gcnew RelatedObjectQuery(firstPartition, "Win32_LogicalDisk");
searcher->Query = q;
for each (ManagementObject^ o in searcher->Get())
{
logicalDisk = o->GetPropertyValue("Name")->ToString();
break;
}
}
return logicalDisk;
}
}
If you thought of organisms as computers with IP addresses, each functional group of cells in the organism would be listening to the environment through its own active port. So, as port 25 maps specifically to SMTP services on a computer, port H1 maps specifically to the windpipe region on a human. Interestingly, the same port H1 maps to the intestinal tract on a bird. Thus, the same H1N1 virus will attack the respiratory system of a human, and the gut of a bird.
Ooh, goodie! I enjoyed The Algebraist and Matter
and can't wait to get started on this one!
It sounds like a bit of a departure from his Culture and far-future sci-fi, as this one is set on Earth in the (near?) future. It sounds like it may be more like some of Ken Macleod's books (or dare I say it, "The Diamond Age"). There's not really enough info on Amazon's page to know, though. So I guess I should be patient :)
It's available now for pre-order from Amazon (hardcover)... The softcover version will be out later in the year.
There is also an interesting article featuring Banks and other sci-fi authors on the BBC website here. The topic is "Can science fiction keep up with modern science?"