It makes me smile to think about a mass migration out of Twitter into boring, timeless, technologies like email and IRC. IRC especially.
REmail
Each day, there’s some number of Google+, Linkedin, Facebook, and Twitter notifications in my email inbox. Ironic that these communications services, seemingly wanting to be as ubiquitous as email, need to use email as a primary notification service.
And the daily deal space (Groupon, Living Social, et. al.) are 95% email.
Every couple of days, I’m asked, ‘What comes after Twitter, Facebook, (etc)?’
I don’t know, I’m in email.
Small Victories
Sam Adams Latitude 48 IPA Deconstructed
Here’s my ranking of the hops in Sam Adams Latitude 48 IPA Deconstructed.
- Simcoe
- Zeus
- East Kent Goldings
- Ahtenum
Scott Adams on Opt-out
How to Share Sidebars Across a WordPress Network
On a recent WordPress Network (WPMU) project, I’ve needed to display the same sidebar and associated widgets across all the sites in the entire network.
Since switch_to_blog()
has been deprecated and an attempt at monkey-patching sent me deeper into the bowels of WordPress than I felt was warranted…
I turned all the necessary widgets into pages and used get_blog_post($blog_id, $post_id)
to build the widgets by hand.
<?php $posts = array(5304, 5322, 5309, 5310, 5301, 5299); foreach ($posts as $post_id) : ?>
<?php $post = get_blog_post(1, $post_id ); setup_postdata($post); ?>
<div class="widget">
<h4><?php the_title(); ?></h4>
<div class="textwidget">
<?php the_content(); ?>
</div>
</div><!-- widget -->
<?php endforeach; ?>
The downside – widgets need to be manually added, moved, and removed from the array.
The upside – it works.
Every Beer is Miscellaneous
Great pie chart from illustrating the percentages of beer recipes within Hopville.com that fall into recognized styles.