Archive for the ‘Weekly Yeti’ Category

27
Nov
2008



I think I mentioned in last weeks ‘Weekly Good Stuff’ that I was having fun playing around with wordpress at work, and finding out just how powerful this blogging platform is… Well, I figured it would be good samaritan like of me to share the stuff I’ve been figuring out. Here’s the first tastey tidbit.

Pulling in meta/custom fields from other pages.

I needed to pull in some contact details for the sidebar on one page that already exsisted as custom fields (meta) on another page. I’ve been using the flutter plugin, but that’s basically just a fancy way to display custom fields in the admin (making it easier for end users, especially if you’re developing for people who ain’t so savvy). So, I needed to get this data from the entries on one page (contact) to the sidebar on another (about-us). After some googling and searching the WP forums, I found some code that kind of did the right thing. It references the actual database, and the post ID, so it’s not very versatile. However if you’re figuring the post ID of the page you need to reference isn’t gonna change, then you’re in business.

<?
$pages = $wpdb->get_results(”
SELECT * from $wpdb->posts
WHERE post_type=’page’
AND ID= ‘67′
ORDER BY post_title
“);
//the above checks the database for posts that are actually pages, it then (I think?) finds the ID //of the post you need by number. The order by probably doesn’t need to be there anymore, //but I left it in just incase!

foreach($pages as $page) :
$address_line_1 = get_post_meta($page->ID, ‘address_line_1′, $single = true);
$address_line_2 = get_post_meta($page->ID, ‘address_line_2′, $single = true);
$city = get_post_meta($page->ID, ‘city’, $single = true);
$postcode = get_post_meta($page->ID, ‘postcode’, $single = true);
$telephone = get_post_meta($page->ID, ‘telephone’, $single = true);
$fax = get_post_meta($page->ID, ‘fax’, $single = true);
$email = get_post_meta($page->ID, ‘email’, $single = true);
// this bit is to pull any meta from the child page
//in this case it’s the custom fields that are used to display the address/contact details.
//echo ‘<h2><a href=”‘ .  get_permalink($page->ID) .  ‘” title=”‘ . $page->post_title . ‘”>’ . //$page->post_title .  ‘</a></h2>’; //this would, if uncommented, show the page title.

// right, here I’m echoing the variables that exist in the page we’ve referenced (67 ie. contact)
echo ‘<li>’ . $address_line_1 . ‘ </a></li>’;
echo ‘<li>’ . $address_line_2 . ‘ </a></li>’;
echo ‘<li>’ . $city . ‘ </a></li>’;
echo ‘<li>’ . $postcode . ‘ </a></li>’;
echo ‘<li>Tel: ‘ . $telephone . ‘ </a></li>’;
echo ‘<li> Fax: ‘ . $fax . ‘ </a></li>’;
echo ‘<li>’ . $email . ‘ </a></li>’;
endforeach;
?>

There we go… now I’m no php developer, so this is probably really hacky/shit code… but it works hah. So, I figure if you need to use it, you can. Also, this is why hiphop ain’t so good, I spend my time finding out shit for other sites! Bah. Soon, soon.








This weeks yeti is brought to you by another strange and wonderful creature - The Yeti crab!

Ok, so I only picked this because of it’s namesake, but still, it’s definitely Yeti goodness. This guy’s a pretty recent discovery, too, found in the Pacific ocean in 2006. Ok so it’s real name is Kiwa Hirsuta, and it’s a friendly crustacean (think… Crusty Crab). Here’s a video about his discovery:





17
Sep
2008



On the theme of Disney, this week’s Yeti comes to you from the Expedition Everest ride at Disney’s Animal Kingdom.

Here he is:

From wikipedia…

The complex yeti figure has the following technical details

  • The yeti’s “skin” measures 1,000 square feet (93 m2), and is held in place by 1,000 snaps and 250 zippers.
  • The yeti’s movement is controlled by 19 actuators.
  • The yeti can move five feet horizontally, and two feet vertically.
  • The yeti is 22 feet (6.7 m) tall.

Recently the Yeti figure has stopped moving, and is now in what is referred to as “B Mode,” where the yeti does not move, but a strobe effect is cast on it to give the impression that the figure was still moving. It is unknown at the time whether or not the yeti will be fixed.

So there ya go.





27
Aug
2008



This week’s weekly yeti is brought to you from Etsy.com and the wonderful seller PearsonMaron. These hand crafted Yeti magnets will add a crytid touch to any boring fridge door.





20
Aug
2008



WOW! So much to write about in the weekly yeti this week :D It all started last week I guess, but I’d already lined up that super cute t-shirt for you guys to check out then…

Well, this news has even been on the BBC (originally here, and most recently here), so it’s pretty big! I’ve been following it on Cryptomundo and a few other blogs, and it’s just hilariously hoaxy.

Basically, a couple of guys tried to say they’d found bigfoot’s body… even going so far as to arrange a press conference where they would unveil bigfoots rotting corpse. Suffice to say it’s all a hoax, and it’s been revealed that the body was nothing more than an ape suit with some roadkill thrown in for good measure.

One of the guys was a cop, who it’s believed is getting the boot after this whole debacle. Anyway, check out those links above for some more indepth info about it all :)