



<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>at.yamomzcrib.com &#187; @ymc</title>
	<atom:link href="http://at.yamomzcrib.com/category/ymc/feed/" rel="self" type="application/rss+xml" />
	<link>http://at.yamomzcrib.com</link>
	<description>bfnh dot h8r</description>
	<lastBuildDate>Wed, 21 Dec 2011 17:30:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>10 years ago&#8230;</title>
		<link>http://at.yamomzcrib.com/2009/12/10-years-ago/</link>
		<comments>http://at.yamomzcrib.com/2009/12/10-years-ago/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 17:02:53 +0000</pubDate>
		<dc:creator>bfnh</dc:creator>
				<category><![CDATA[@ymc]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[pr0n]]></category>
		<category><![CDATA[bangladesh]]></category>
		<category><![CDATA[posts about pictures]]></category>
		<category><![CDATA[proof of purchase]]></category>
		<category><![CDATA[y2k]]></category>

		<guid isPermaLink="false">http://at.yamomzcrib.com/?p=1673</guid>
		<description><![CDATA[that&#8217;s a real receipt. i remember getting off the bus. there may have been snow. that store is still there. can&#8217;t remember where i went for new years that year. 10 years later. new domain. same psuedonym. life, it continues&#8230; back then, times were stupid wild. [Click through to site to listen to the song] [...]]]></description>
			<content:encoded><![CDATA[<img width="420" height="225" src="http://at.yamomzcrib.com/wp-content/uploads/2009/12/10yearsago-420x225.png" class="attachment-medium center bigframe" alt="" title="eff a y2k" />
<p>that&#8217;s a real receipt. i remember getting off the bus. there may have been snow. that store is still there. can&#8217;t remember where i went for new years that year. 10 years later. new domain. same psuedonym. life, it continues&#8230;</p>
<p>back then, times were stupid wild.<br />
[Click through to site to listen to the song]</p>
<p>notes:<br />
 &#8211; gucci mane is stil abhorrent.<br />
 &#8211; i remain a sucker for idiotic bangladesh beats.</p>
<img src="http://at.yamomzcrib.com/?ak_action=api_record_view&id=1673&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://at.yamomzcrib.com/2009/12/10-years-ago/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>wordpress gallery shortcode update.</title>
		<link>http://at.yamomzcrib.com/2009/11/wordpress-gallery-shortcode-update/</link>
		<comments>http://at.yamomzcrib.com/2009/11/wordpress-gallery-shortcode-update/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 20:33:22 +0000</pubDate>
		<dc:creator>bfnh</dc:creator>
				<category><![CDATA[@ymc]]></category>
		<category><![CDATA[blogging about blogging]]></category>
		<category><![CDATA[geek shit]]></category>
		<category><![CDATA[november challenge]]></category>
		<category><![CDATA[rtfm]]></category>

		<guid isPermaLink="false">http://at.yamomzcrib.com/?p=1608</guid>
		<description><![CDATA[some history: since shortly after the release of the &#091;gallery] shortcode, I&#8217;ve been using a custom field called &#8220;useGallery&#8221; to conditionally show every thumbnail image attached to a particular post. i first did this after noticing in my log stats that users would bounce back and forth to get a look at all of the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>some history: </strong> since shortly after the release of the &#091;gallery] shortcode, I&#8217;ve been using a custom field called &#8220;useGallery&#8221; to conditionally show every thumbnail image attached to a particular post. i first did this after noticing in my log stats that users would bounce back and forth to get a look at all of the images included in a &#091;gallery] posting. i thought it made more sense to have all of the thumbnail images available at once so users didn&#8217;t have to waste clicks. after using that bit of code for awhile, i made a modest upgrade that changed the border color of the active image being viewed using conditional logic and some simple css additions to my stylesheet.</p>
<p>For the geeks &#8211; here&#8217;s a look at the code that did it.</p>
<pre class="brush: php; collapse: true; light: false; title: ; toolbar: true; notranslate">
$useGallery = $wpdb-&gt;get_var(&quot;SELECT meta_value useGallery FROM $wpdb-&gt;postmeta WHERE meta_key = 'useGallery' and post_id = $post-&gt;post_parent&quot;);

if ($useGallery == 1) {

$oImages = $wpdb-&gt;get_results(&quot;SELECT i.id aID, i.post_excerpt altTitle, i.post_content, i.post_name iName
FROM wp_posts p
join wp_posts i on p.id = i.post_parent
join wp_postmeta m on i.id = m.post_id and m.meta_key = '_wp_attachment_metadata'
where i.post_parent = $post-&gt;post_parent
order by i.menu_order&quot;);

$rowcount = $wpdb-&gt;num_rows;

echo '
&lt;h3&gt;other images (' . $rowcount . ')&lt;/h3&gt;';

$i = 0;
foreach($oImages as $oImage) :
	$i = $i + 1;
	$imgText = get_image_tag($oImage-&gt;aID,$oImage-&gt;altTitle,$oImage-&gt;altTitle,'','thumbnail');
    $iref = get_permalink($post-&gt;post_parent) .  $oImage-&gt;iName;

    if(($i % 3) == 1){echo '&lt;div class=\'gallery\'&gt;';}

    if ($oImage-&gt;aID == $id) { echo('&lt;dl class=\'gallery-current gallery-columns-3\'&gt;&lt;dt class=\'gallery-icon\'&gt;' . $imgText . '&lt;/dt&gt;&lt;/dl&gt;'); } else {
echo'&lt;dl class=\'gallery-item gallery-columns-3\'&gt;&lt;dt class=\'gallery-icon\'&gt;&lt;a href=' . $iref .'&gt;' . $imgText . '&lt;/a&gt;&lt;/dt&gt;&lt;/dl&gt;'; }

    if(($i % 3) == 0 || ($i == $rowcount)){echo '&lt;/div&gt;';}
endforeach;

echo '&lt;br style=\'clear: both;\' /&gt;';
}
</pre>
<p>For you nongeeks &#8211; this is what&#8217;s happening in &#8220;plain&#8221; english: first check to see if useGallery is set, then get all images from the post that this image we are currently looking at is attached to, count how many you have, loop over those images and display a thumbnail. while displaying a thumbnail, determine if the one you are currently looking at up top is the thumbnail you are displaying and give that a different css class so that you can shade it&#8217;s border a different color. also, check to see if you&#8217;re a multiple of 3, or, if you&#8217;re at the end of the images. basically, my goal was to mimic the function of wp&#8217;s built in gallery shortcode with, admittedly, a very simple tweak.</p>
<p><strong>the problem: </strong> after <a href="/2009/11/wordpress-shortcode-smarterimage">the big change to the site</a>, i realized i would have to make a change to every post that used the shortcode gallery. my new, slimmer, trimmer 420px column on the frontpage did not play well w/galleries that had more than 2 columns and used thumbnail images with a width of 200px.  now, that meant that i&#8217;d have to hunt down every post that i used the gallery shortcode in or make a global change to the code that runs the gallery shortcode. because those lovely people over at WP left a comment in their code i was able to go right to the source and make an edit to change the default columns to 2 and that took care of my initial problem. while poking around in there, i noticed a commented line which read, &#8220;<em>// Allow plugins/themes to override the default gallery template.</em>&#8221; </p>
<blockquote><p>There&#8217;s more than one way to skin a cat, but, if you&#8217;re skinning said cat somewhere close to a factory that creates <strong>cat-skinning lasers</strong>, you may want to put down your trusty swiss army knife.</p></blockquote>
<p>i figured, if they wanted you to override the gallery template, they&#8217;d probably have some way to do it, so off i went to <a href="http://codex.wordpress.org/Using_the_gallery_shortcode">the codex</a> to find out the best way to do so. the fourth example on that page had <em>almost</em> everything i wasted XX number of lines writing above, and more, a means of using the underlying code that would mean i only needed to update in one place. </p>
<pre class="brush: php; title: ; notranslate">
 &lt;?php
    $gallery_shortcode = '[ gallery id=&quot;' . intval( $post-&gt;post_parent ) . '&quot;]';
    print apply_filters( 'the_content', $gallery_shortcode );
 ?&gt;
</pre>
<p>in geek, this is clearly a RTFM issue. in non-geek, that says, &#8220;you should have <a href="http://en.wikipedia.org/wiki/RTFM">read the fn manual</a>.&#8221; this was great, i would be able to replace my custom code with the actual gallery shortcode that WP uses. after a tiny tweak i&#8217;d be able to take care of my 3 column issue at the slight cost that I would need to change it every time i upgraded WP. or, at least i thought i would until i came across <a href="http://wordpress.org/support/topic/326650#post-1264893">this bit of genius</a> from <a href="http://quirm.net/">esmi</a> which could easily solve my problem.</p>
<pre class="brush: php; title: ; notranslate">
remove_shortcode('gallery');
add_shortcode('gallery', 'theme_gallery_shortcode');
</pre>
<p>simple enough to geeks and non-geeks: screw their shortcode, use your own!</p>
<p>the revised gallery shortcode sits below</p>
<pre class="brush: php; collapse: true; highlight: [27,28,68,70]; light: false; title: ; toolbar: true; notranslate">
function h_gallery_shortcode($attr) {
	global $post;

	static $instance = 0;
	$instance++;

	// Allow plugins/themes to override the default gallery template.
	$output = apply_filters('post_gallery', '', $attr);
	if ( $output != '' )
		return $output;

	// We're trusting author input, so let's at least make sure it looks like a valid orderby statement
	if ( isset( $attr['orderby'] ) ) {
		$attr['orderby'] = sanitize_sql_orderby( $attr['orderby'] );
		if ( !$attr['orderby'] )
			unset( $attr['orderby'] );
	}

	extract(shortcode_atts(array(
		'order'      =&gt; 'ASC',
		'orderby'    =&gt; 'menu_order ID',
		'id'         =&gt; $post-&gt;ID,
		'itemtag'    =&gt; 'dl',
		'icontag'    =&gt; 'dt',
		'captiontag' =&gt; 'dd',
		'columns'    =&gt; 2,
		'size'       =&gt; 'thumbnail',
		'currentid'  =&gt; '0'
	), $attr));

	$id = intval($id);
	$attachments = get_children( array('post_parent' =&gt; $id, 'post_status' =&gt; 'inherit', 'post_type' =&gt; 'attachment', 'post_mime_type' =&gt; 'image', 'order' =&gt; $order, 'orderby' =&gt; $orderby) );

	if ( empty($attachments) )
		return '';

	if ( is_feed() ) {
		$output = &quot;\n&quot;;
		foreach ( $attachments as $att_id =&gt; $attachment )
			$output .= wp_get_attachment_link($att_id, $size, true) . &quot;\n&quot;;
		return $output;
	}

	$itemtag = tag_escape($itemtag);
	$captiontag = tag_escape($captiontag);
	$columns = intval($columns);
	$itemwidth = $columns &gt; 0 ? floor(100/$columns) : 100;

	$selector = &quot;gallery-{$instance}&quot;;

	$output = apply_filters('gallery_style', &quot;
		&lt;style type='text/css'&gt;
			#{$selector} {
				margin: auto;
			}
			#{$selector} .gallery-item {
				float: left;
				margin-top: 10px;
				text-align: center;
				width: {$itemwidth}%;
			}
		&lt;/style&gt;
		&lt;div id='$selector' class='gallery galleryid-{$id}'&gt;&quot;);

	$i = 0;
	foreach ( $attachments as $id =&gt; $attachment ) {
		$link = isset($attr['link']) &amp;&amp; 'file' == $attr['link'] ? wp_get_attachment_link($id, $size, false, false) : wp_get_attachment_link($id, $size, true, false);
		$currentclass = ($id == $currentid) ? 'gallery-current' : 'gallery-item';

		$output .= &quot;&lt;{$itemtag} class='$currentclass'&gt;&quot;;
		$output .= &quot;
			&lt;{$icontag} class='gallery-icon'&gt;
				$link
			&lt;/{$icontag}&gt;&quot;;
		if ( $captiontag &amp;&amp; trim($attachment-&gt;post_excerpt) ) {
			$output .= &quot;
				&lt;{$captiontag} class='gallery-caption'&gt;
				&quot; . wptexturize($attachment-&gt;post_excerpt) . &quot;
				&lt;/{$captiontag}&gt;&quot;;
		}
		$output .= &quot;&lt;/{$itemtag}&gt;&quot;;
		if ( $columns &gt; 0 &amp;&amp; ++$i % $columns == 0 )
			$output .= '&lt;br style=&quot;clear: both&quot; /&gt;';
	}

	$output .= &quot;
			&lt;br style='clear: both;' /&gt;
		&lt;/div&gt;\n&quot;;

	return $output;
}
</pre>
<p>i&#8217;ve trimmed the css and added the &#8220;currentid&#8221; attribute. the highlighted lines show the code used to add the &#8220;currentid&#8221; attribute. my huge chunk of code from the beginning now appears as 9 simple lines.</p>
<pre class="brush: php; title: ; notranslate">
$useGallery = $wpdb-&gt;get_var(&quot;SELECT meta_value useGallery FROM $wpdb-&gt;postmeta WHERE meta_key = 'useGallery' and post_id = $post-&gt;post_parent&quot;);

if ($useGallery == 1) {

echo '&lt;h3&gt;other images&lt;/h3&gt;';

    $gallery_shortcode = '[ gallery columns=&quot;3&quot; currentid=&quot;' . intval($id) . '&quot; id=&quot;' . intval( $post-&gt;post_parent ) . '&quot;]';
    print apply_filters( 'the_content', $gallery_shortcode );
}
</pre>
<p>overall, this was a huge success. i was able to eliminate my duplicate code, i was able to fix the 3 column default issue w/out worrying about it being overwritten in an upgrade and i (re)learned one of life&#8217;s most important lessons &#8212; <strong>RTFM</strong>. the biggest thing that i took away from this experience is that you can rewrite a bunch of the &#8220;core&#8221; functions/tags/etc that are available in WP. one guy even created <a href="http://justintadlock.com/archives/2009/03/24/template-tag-shortcodes-wordpress-plugin">a plugin that turns template tags into shortcodes</a>. this lets me know that before i go off and try to rewrite history, a little more time on <a href="http://www.google.com">teh googz</a> can stop me from having to cut ~30 lines of code down to five. now all i&#8217;ll need is someone to draw me a picture of a cat skinning laser factory and this might be a perfect post.</p>
<img src="http://at.yamomzcrib.com/?ak_action=api_record_view&id=1608&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://at.yamomzcrib.com/2009/11/wordpress-gallery-shortcode-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wordpress shortcode: smarterImage.</title>
		<link>http://at.yamomzcrib.com/2009/11/wordpress-shortcode-smarterimage/</link>
		<comments>http://at.yamomzcrib.com/2009/11/wordpress-shortcode-smarterimage/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 17:38:21 +0000</pubDate>
		<dc:creator>bfnh</dc:creator>
				<category><![CDATA[@ymc]]></category>
		<category><![CDATA[geek shit]]></category>
		<category><![CDATA[shortcode]]></category>
		<category><![CDATA[shortdawg]]></category>

		<guid isPermaLink="false">http://at.yamomzcrib.com/?p=1535</guid>
		<description><![CDATA[The issue: New layout had a 440px main column that restricted the overall size of images that could be shown. Previous theme had images uploaded at a much larger size, so they were being smushed and pixelated because new theme used max-width: 100%; markup to constrain their overall size. The goals: Resize images to proper [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The issue:</strong> New layout had a 440px main column that restricted the overall size of images that could be shown. Previous theme had images uploaded at a much larger size, so they were being smushed and pixelated because new theme used <em>max-width: 100%;</em> markup to constrain their overall size.</p>
<p><strong>The goals:</strong> Resize images to proper width and expand the main column on single pages so that they could take advantage of the larger images. Decided to create a shortcode that could take a unique identifier and return the medium sized or large sized image to take full advantage of the size of the layout. Also, dynamically pull the alt/title tag information from the db and allow that to be overridden by an inline param.</p>
<p><strong>The code:</strong></p>
<pre class="brush: php; title: ; notranslate">
function smarterImage($atts, $content = null) {
   global $wpdb;
   extract( shortcode_atts( array(
      'imgid' =&gt; '0',
      'imgsize' =&gt; 'medium',
      'class' =&gt; '',
      'alt' =&gt; ''
      ), $atts ) );

   if (is_single()) { $imgsize = 'large'; }
   $imgclass = $class;
   $imgstring = wp_get_attachment_image($imgid, $imgsize, false);
   $imgsource = wp_get_attachment_image_src($imgid, $imgsize, false);
   $imgtitleqs = &quot;select post_title, post_excerpt from wp_posts where id = $imgid&quot;;
   $imgtitleq = $wpdb-&gt;get_row($imgtitleqs);

   if (strlen($alt) &gt; 0 ) {
		$imgtitle = $alt;
   } elseif (strlen($imgtitleq-&gt;post_excerpt) &gt; 0 ) {
		$imgtitle = $imgtitleq-&gt;post_excerpt;
   } else {
		$imgtitle = $imgtitleq-&gt;post_title;
   }

   return '&lt;img width=&quot;'. $imgsource[1] .'&quot; height=&quot;'. $imgsource[2] .'&quot; src=&quot;'. $imgsource[0] .'&quot; class=&quot;attachment-'. $imgsize .' '. $imgclass .'&quot; alt=&quot;&quot; title=&quot;'. $imgtitleo .'&quot; /&gt;';
}
add_shortcode(&quot;sImage&quot;, &quot;smarterImage&quot;);
</pre>
<p><strong>Usage:</strong><br />
&#91;sImage <strong><span style="color: #ff0000;">imgid</span></strong>=&#8221;1467&#8243; class=&#8221;" alt=&#8221;"]</p>
<p>The <span style="color: #ff0000;"><strong>imgid</strong></span> is required, all other attributes are optional.</p>
<p><strong>Additional Notes: </strong> As with all other redesigns, I used the great <a href="http://www.viper007bond.com/wordpress-plugins/regenerate-thumbnails/">Regenerate Thumbnails</a> to create the new medium and large sized images. I also learned a good deal about shortcodes from Smashing&#8217;s piece on <a href="http://www.smashingmagazine.com/2009/02/02/mastering-wordpress-shortcodes/">Mastering Shortcodes</a>.</p>
<p>The best way to see how the shortcode works is to view <a href="/">the front page</a>, or one of <a href="/page/5">the previous pages</a> and compare it to how a single page looks. take a look at how the post dynamically substitutes a max-width 420px image for a max-width 720px image. It&#8217;s easiest to see it with a post from the <a href="/category/on-repeat/">on repeat</a> category.</p>
<img src="http://at.yamomzcrib.com/?ak_action=api_record_view&id=1535&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://at.yamomzcrib.com/2009/11/wordpress-shortcode-smarterimage/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>new look, added search and full archives.</title>
		<link>http://at.yamomzcrib.com/2009/02/new-look-added-search-and-full-archives/</link>
		<comments>http://at.yamomzcrib.com/2009/02/new-look-added-search-and-full-archives/#comments</comments>
		<pubDate>Wed, 25 Feb 2009 17:10:09 +0000</pubDate>
		<dc:creator>bfnh</dc:creator>
				<category><![CDATA[@ymc]]></category>
		<category><![CDATA[housekeeping]]></category>

		<guid isPermaLink="false">http://at.yamomzcrib.com/?p=640</guid>
		<description><![CDATA[the title pretty much says it all. i&#8217;ve added a full archive, so even if you don&#8217;t find what you want by using the search bar at the top, you should be able to browse via monthly archives or to one of your favorite tags/categories. if you&#8217;ve been here in the past month, you&#8217;ve seen [...]]]></description>
			<content:encoded><![CDATA[<p>the title pretty much says it all.  i&#8217;ve added a <a href="http://at.yamomzcrib.com/full-archive/">full archive</a>, so even if you don&#8217;t find what you want by using the search bar at the top, you should be able to browse via monthly archives or to one of your favorite <a href="http://at.yamomzcrib.com/tag/posts-about-pictures">tags</a>/<a href="http://at.yamomzcrib.com/category/music">categories</a>.</p>
<p>if you&#8217;ve been here in the past month, you&#8217;ve seen the updated theme on.hiatus based off of the fantastic <a href="http://www.plaintxt.org/themes/simplr/">simplr</a>.  i wanted something clean that prominently displayed twitter, last.fm &amp; my google reader suggestions. mostly because i update those places way more than this one.</p>
<p>i will prolly update the front page so that i show more than just my latest on: repeat song, but, truthfully, i&#8217;m interested in how people navigate the site when traditional blog methods aren&#8217;t available.  so far, i&#8217;ve realized, they don&#8217;t.</p>
<p>no matter &#8211; coming soon: top 5 street fighter dbags, top 5 silfs &amp; a song or two that&#8217;s stuck in my head.</p>
<img src="http://at.yamomzcrib.com/?ak_action=api_record_view&id=640&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://at.yamomzcrib.com/2009/02/new-look-added-search-and-full-archives/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>jj abrams on the mystery box.</title>
		<link>http://at.yamomzcrib.com/2008/07/jj-abrams-on-the-mystery-box/</link>
		<comments>http://at.yamomzcrib.com/2008/07/jj-abrams-on-the-mystery-box/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 15:57:56 +0000</pubDate>
		<dc:creator>bfnh</dc:creator>
				<category><![CDATA[@ymc]]></category>
		<category><![CDATA[intarweb]]></category>
		<category><![CDATA[pr0n]]></category>
		<category><![CDATA[chicken vs. egg]]></category>
		<category><![CDATA[lost and found]]></category>

		<guid isPermaLink="false">http://at.yamomzcrib.com/?p=292</guid>
		<description><![CDATA[i don&#8217;t watch lost.  or heroes.  &#38; i hate the hell out of most reality competition shows.  i am a huge fan of getting in on the ground floor, w/out that, i feel lost and that i don&#8217;t fully understand what&#8217;s going on. however, i am a huge fuckin&#8217; fan of ambiguity.  that something can [...]]]></description>
			<content:encoded><![CDATA[<p>i don&#8217;t watch lost.  or heroes.  &amp; i hate the hell out of most reality competition shows.  i am a huge fan of getting in on the ground floor, w/out that, i feel lost and that i don&#8217;t fully understand what&#8217;s going on. however, i am a huge fuckin&#8217; fan of ambiguity.  that something can be anything, as long as you don&#8217;t open the box&#8230;</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="432" height="285" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="id" value="VE_Player" /><param name="align" value="middle" /><param name="FlashVars" value="bgColor=FFFFFF&amp;file=http://static.videoegg.com/ted/movies/JJABRAMS-2007_high.flv&amp;autoPlay=false&amp;fullscreenURL=http://static.videoegg.com/ted/flash/fullscreen.html&amp;forcePlay=false&amp;logo=&amp;allowFullscreen=true" /><param name="quality" value="high" /><param name="allowScriptAccess" value="always" /><param name="bgcolor" value="#FFFFFF" /><param name="scale" value="noscale" /><param name="wmode" value="window" /><param name="src" value="http://static.videoegg.com/ted/flash/loader.swf" /><embed id="VE_Player" type="application/x-shockwave-flash" width="432" height="285" src="http://static.videoegg.com/ted/flash/loader.swf" wmode="window" scale="noscale" bgcolor="#FFFFFF" allowscriptaccess="always" quality="high" flashvars="bgColor=FFFFFF&amp;file=http://static.videoegg.com/ted/movies/JJABRAMS-2007_high.flv&amp;autoPlay=false&amp;fullscreenURL=http://static.videoegg.com/ted/flash/fullscreen.html&amp;forcePlay=false&amp;logo=&amp;allowFullscreen=true" align="middle"></embed></object></p>
<p>i got the link from sleevage {<a href="http://sleevage.com/madvillain-madvillainy-2-the-box/">src</a>}, which is a great site in and of itself.</p>
<p>the greatest inspiration for this site has always been technology.  from the first post (using audioplayer) to this latest one (a discussion of how to use high and low tech to achieve a goal) it&#8217;s always been &#8220;that new thing&#8221; which inspires the posts. even the <a class="nsfw" href="http://at.yamomzcrib.com/2008_04_10/hoes-in-the-same-clothes">hoesinthesameclothes</a> post was an excuse to use the new gallery tag.</p>
<p>i suppose that&#8217;s a way of explaining the dearth of posts recently, and, to announce, tech will reverse that.</p>
<img src="http://at.yamomzcrib.com/?ak_action=api_record_view&id=292&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://at.yamomzcrib.com/2008/07/jj-abrams-on-the-mystery-box/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>time to get busy.</title>
		<link>http://at.yamomzcrib.com/2008/03/time-to-get-busy/</link>
		<comments>http://at.yamomzcrib.com/2008/03/time-to-get-busy/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 16:54:34 +0000</pubDate>
		<dc:creator>bfnh</dc:creator>
				<category><![CDATA[@ymc]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[naked comic chicks]]></category>
		<category><![CDATA[philly rappers]]></category>
		<category><![CDATA[posts about songs]]></category>

		<guid isPermaLink="false">http://at.yamomzcrib.com/2008_03_06/time-to-get-busy</guid>
		<description><![CDATA[[Click through to site to listen to the song] you better haul ass, cuz&#8230; so, after taking a look at a few really impressive blogs, i made the decision to switch over to a tumblr-esque formatted blog. i&#8217;d truly like to update more often, but i feel like the REALLY BIG updates shouldn&#8217;t share the [...]]]></description>
			<content:encoded><![CDATA[<p><img class="bigframe center" src="http://at.yamomzcrib.com/wp-content/uploads/2008/03/obama_eats_chicken.jpg" alt="FOX: Obama Enjoys the Fried Chickens" /></p>
<p>[Click through to site to listen to the song]<br />
<em>you better haul ass, cuz&#8230;</em></p>
<p>so, after taking a look at a few <a href="http://skeetonmischa.tumblr.com/">really</a> <a href="http://www.blacksoappalace.com/blog">impressive</a> blogs, i made the decision to switch over to a <a href="http://brokedownpalace.tumblr.com/">tumblr-esque</a> formatted blog.  i&#8217;d truly like to update more often, but i feel like the REALLY BIG updates shouldn&#8217;t share the same space as the lil&#8217; tiny ones.</p>
<p>this, of course, means that i&#8217;ll have to get to work on a proper format. that showcases top 5s, my recommended links, and the daily ongoing braindump that i&#8217;m sure you 3 or 4 readers come here for.  the goal &#8212; first, a weekly update, then a daily update like <a href="http://rashadiscrazy.blogspot.com/">this diligent fellow</a>.</p>
<p>[Click through to site to listen to the song]<br />
<em>half mandrill, half mandela</em></p>
<p><strong>UPDATED: </strong><br />
looks like the good folx over at okp combined with onsmash to deliver <a href="http://videos.onsmash.com/v/b6lVAXc7ldjfdHNt">a video</a> for us all.</p>
<img src="http://at.yamomzcrib.com/?ak_action=api_record_view&id=190&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://at.yamomzcrib.com/2008/03/time-to-get-busy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>content drives design or design drives content?</title>
		<link>http://at.yamomzcrib.com/2007/11/content-drives-design-or-design-drives-content/</link>
		<comments>http://at.yamomzcrib.com/2007/11/content-drives-design-or-design-drives-content/#comments</comments>
		<pubDate>Thu, 15 Nov 2007 01:19:12 +0000</pubDate>
		<dc:creator>bfnh</dc:creator>
				<category><![CDATA[@ymc]]></category>
		<category><![CDATA[intarweb]]></category>
		<category><![CDATA[blogging about blogging]]></category>
		<category><![CDATA[chicken vs. egg]]></category>
		<category><![CDATA[nostalgia]]></category>

		<guid isPermaLink="false">http://at.yamomzcrib.com/2007_11_14/content-drives-design-or-design-drives-content</guid>
		<description><![CDATA[i&#8217;ve probably used the phrase &#8220;content drives design&#8221; at least a thousand times or so when discussing &#8220;doing websites&#8221; for people. i typically throw it out there as a means of discerning how serious people are about creating a site and as an attempt to not do a site for that person. sites are interesting [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://at.yamomzcrib.com/wp-content/uploads/2007/11/content-design.png' alt='Who’s Zoomin Who?' class="center" /></p>
<p>i&#8217;ve probably used the phrase &#8220;content drives design&#8221; at least a thousand times or so when discussing &#8220;doing websites&#8221; for people.  i typically throw it out there as a means of discerning how serious people are about creating a site and as an attempt to <strong>not</strong> do a site for that person. sites are interesting <em>ideas</em> but when it comes down to generating content, people typically kinda, well, yeah&#8230;</p>
<p>i should know, i&#8217;ve had this site since &#8217;01 and a domain in my name since &#8217;99 and i&#8217;ve generated enough content to fill a fly&#8217;s navel.  although being a fairly prolific writer over certain points in my life, those spurts of <strike>brilliance</strike> production typically amounted to &#8220;responding to lots of posts on <a href="http://board.okayplayer.com">other</a> <a href="http://loosie.com/thebored/">people&#8217;s</a> messageboards.&#8221;</p>
<p>i&#8217;ve used a couple of different tools over the years to capture my ongoing commentary.  the first was a custom <acronym title="Cold Fusion">CF</acronym> script that i wrote for myself.  i&#8217;ve also used movable type and now use WordPress.  i first used MT because i wanted to learn something different than CF.  MT was cool, but, after stepping away from updating i &#8220;switched&#8221; to WordPress because of the one-click install offered by my hosting company. because my host has eliminated basically all of my effort to setup a mysql database, upgrade my files and all the other garbage that can become a hassle, i&#8217;ve been able to spend more time installing plugins, hacking themes, and adding functionality via custom fields and conditional tags.</p>
<p>over the course of time i&#8217;ve noticed something that i never thought of before &#8212; the addition of certain plugins offered me the ability to write in new ways. this <b>completely</b> goes against my basic beliefs that writing determines tools. the footnotes plugin stands out as one of those things that took something from my natural writing style (the usage of double parentheses) and transformed it into proper clickable footnotes. so, after i turned footnotes on, i needed to style those footnotes, which got me digging around in the css for my template.</p>
<p><span id="more-89"></span></p>
<p>my post about fantastical boobage led me to creating a new class that would alert my readers that the links may lead them to a place that their employer wouldn&#8217;t be in full support of.  i haven&#8217;t put too much effort into styling nsfw thumbnails, but, i guess if you can&#8217;t tell already by the thumbnail, then, a special shade of red border isn&#8217;t going to be much of a deterrent, anyway.  having a class let me feel more comfortable inserting <a href="http://www.lastnightsparty.com/2007/11/urban_pinup_barbie.html" class="nsfw" target="_blank">a link to an image or two</a> into a post, even if it didn&#8217;t <em>_exactly_</em> fit the mood of the current discussion, <a href="http://ponyxpress.wordpress.com/2007/11/10/coyote-graft-female/" class="nsfw" title="you might not want to click this at work" target="_blank">sometimes made you go WTF?</a> &#038; of course, ran the risk of getting the reader to click on something they shouldn&#8217;t.</p>
<p><img src='http://at.yamomzcrib.com/wp-content/uploads/2007/11/design-drives-content.png' alt='Design Drives Content'  class="center"/></p>
<p>recently, i incorporated a section to show some recommended links from around the webz.  i did this as a means of testing whether or not it was possible to style an rss feed coming from another location.  with the help of <a href="http://simplepie.org/">simplepie</a>, i was able to setup a pretty nice &#8220;read&#8221; section for my frontpage. i decided to launch it, because even though i am &#8220;doing&#8221; stuff for my site, some people that might come by for some of this bfnh branded entertainment might also want to check out some bfnh approved reading whilst in the midst of a lull from hand crafted bfnh texticular products &trade;.</p>
<p>anyway, this is all to say, i will be adding a &#8220;Not really here&#8221; section where i link you to places around the nets where i have left comments.  currently, i am using a tag that i have configured inside of google reader (which takes care of comments left on subscribed sites) and i will be combining that w/some agressive social bookmarking (maybe, i don&#8217;t know, i don&#8217;t post to forums that often) from a site to be named later.  although this won&#8217;t be more &#8220;original&#8221; content created <i>specifically</i> for this site, it will provide more content, and such will necessitate a new design.</p>
<p><img src='http://at.yamomzcrib.com/wp-content/uploads/2007/11/content-over-design.png' alt='Content Over Design' class="center" /></p>
<p>so, which is the chicken and which is the egg?<br />
and, of course, which one comes first?<br />
it&#8217;s whatever.<br />
the goal is what&#8217;s most important.</p>
<p>the goal is to give you more bfnh.  and more bfnh is what you will have &#8212; whether through posts, notes or comments.  like, this <a href="http://www.knowledgeforthirst.com/2007/mikes-hard-lime/">discussion of manly drinks &#038; desserts</a> or this <a href="http://daveslongbox.blogspot.com/2007/11/off-topic-which-is-less-likely-to-fall.html">recent piece of irresistible about chunking the deuce in plubilc</a>.</p>
<img src="http://at.yamomzcrib.com/?ak_action=api_record_view&id=89&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://at.yamomzcrib.com/2007/11/content-drives-design-or-design-drives-content/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>your new favorite favicon.</title>
		<link>http://at.yamomzcrib.com/2007/08/your-new-favorite-favicon/</link>
		<comments>http://at.yamomzcrib.com/2007/08/your-new-favorite-favicon/#comments</comments>
		<pubDate>Mon, 06 Aug 2007 14:48:41 +0000</pubDate>
		<dc:creator>bfnh</dc:creator>
				<category><![CDATA[@ymc]]></category>
		<category><![CDATA[blogging about blogging]]></category>
		<category><![CDATA[photoshop]]></category>
		<category><![CDATA[pixels]]></category>

		<guid isPermaLink="false">http://at.yamomzcrib.com/2007_08_06/your-new-favorite-favicon</guid>
		<description><![CDATA[i&#8217;ve been trying to come up w/an interesting favicon for awhile. the fact that i was iconless has been slapping me in the face since i made the firefox switch. although i&#8217;ve been playing around w/some text that recalled the glory days of Yo! MTV Raps, trying to convert graff text &#38; polka dots to [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://at.yamomzcrib.com/wp-content/uploads/2007/08/at-yamomzcrib-fav.gif" alt="The at.yamomzcrib.com favicon" class="frame center" /></p>
<p>i&#8217;ve been trying to come up w/an interesting favicon for awhile.  the fact that i was iconless has been slapping me in the face since i made <a href="http://at.yamomzcrib.com/2007_02_27/the-firefox-switch" title="the firefox switch.">the firefox switch</a>. although i&#8217;ve been playing around w/some text that recalled the glory days of <a href="http://at.yamomzcrib.com/wp-content/uploads/2007/08/yomtvraps.jpg" title="Yo! MTV Raps">Yo! MTV Raps</a>, trying to convert graff text &amp; polka dots to a 16X16 square just didn&#8217;t come off as nice as i wanted it to.</p>
<p>eventually, i think i&#8217;ll remix the icon to include some of the polka elements, and, of course, the colors are gonna switch up when i decide to give the site <a href="http://www.mezzoblue.com/about/mezzoblue/#archiving" title="a fantastic archiving idea" target="_blank">mezzoblue</a> treatment, but i think i actually like the placement of the pixels.</p>
<p>like basically everything else i do, i was fairly underwhelmed w/the finished product in comparison to the process, so, hopefully it&#8217;ll (re)grow on me.</p>
<img src="http://at.yamomzcrib.com/?ak_action=api_record_view&id=106&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://at.yamomzcrib.com/2007/08/your-new-favorite-favicon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>going live.</title>
		<link>http://at.yamomzcrib.com/2007/02/going-live/</link>
		<comments>http://at.yamomzcrib.com/2007/02/going-live/#comments</comments>
		<pubDate>Thu, 08 Feb 2007 02:38:29 +0000</pubDate>
		<dc:creator>bfnh</dc:creator>
				<category><![CDATA[@ymc]]></category>
		<category><![CDATA[blogging about blogging]]></category>
		<category><![CDATA[the baby]]></category>

		<guid isPermaLink="false">http://at.yamomzcrib.com/?p=9</guid>
		<description><![CDATA[looks like i&#8217;ve been able to write at least once per week. that is, if this counts. so, yeah, uhm, yeah&#8230; i&#8217;ve familiarized myself w/this wordpress thing enough to be able to alter the theme and get the audio player hooked up properly. i guess that&#8217;s all i really need to be able to do. [...]]]></description>
			<content:encoded><![CDATA[<p>looks like i&#8217;ve been able to write at least once per week.  that is, if this counts.  so, yeah, uhm, yeah&#8230;</p>
<p>i&#8217;ve familiarized myself w/this wordpress thing enough to be able to alter the theme and get the audio player hooked up properly.  i guess that&#8217;s all i <strong>really</strong> need to be able to do.  it&#8217;s (the maintenance of a blog) still about the ideas before the writing, though.  and, i have a few.  i do, hwvr, understand that the really good stuff takes alot of time to create images for and even links for.  see, cuz, at this point in time, i&#8217;m a tired(lazy) bastid.</p>
<p>see that kid up there in the header?  that&#8217;s her everyday steez (arms folded, like, &#8220;whu?&#8221;).  whether she wants something out of the fridge or one of those cabinets, eventually, she&#8217;s gonna wyle out on me, and that doesn&#8217;t leave the time i once had to crafting fantastic postings.  but, i promised myself i would do a little more of this, and that i shall.  i&#8217;m gonna revise some of my older stuff (FYP, Cheater, etc) sooner or later.</p>
<p>that is, if i can find it.</p>
<img src="http://at.yamomzcrib.com/?ak_action=api_record_view&id=9&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://at.yamomzcrib.com/2007/02/going-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

