<?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>timneill</title> <atom:link href="http://timneill.net/feed/" rel="self" type="application/rss+xml" /><link>http://timneill.net</link> <description>opinions are like me</description> <lastBuildDate>Thu, 16 May 2013 02:52:20 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Remove extra RSS feeds in WordPress</title><link>http://timneill.net/2013/05/remove-extra-rss-feeds-in-wordpress/</link> <comments>http://timneill.net/2013/05/remove-extra-rss-feeds-in-wordpress/#comments</comments> <pubDate>Thu, 16 May 2013 02:51:37 +0000</pubDate> <dc:creator>neill</dc:creator> <category><![CDATA[Programming]]></category> <category><![CDATA[Tech]]></category> <category><![CDATA[add_action]]></category> <category><![CDATA[code]]></category> <category><![CDATA[feed]]></category> <category><![CDATA[php]]></category> <category><![CDATA[programming]]></category> <category><![CDATA[remove_action]]></category> <category><![CDATA[rss]]></category> <category><![CDATA[wordpress]]></category> <category><![CDATA[wp_head]]></category> <guid
isPermaLink="false">http://timneill.net/?p=938</guid> <description><![CDATA[Here&#8217;s a WordPress snippet to remove RSS feeds for comments while keeping the main one available. RSS is super nifty. It&#8217;s a great way to keep on top of breaking news and articles from your favourite blogs and/or aggregators (I&#8217;ve &#8230; <a
href="http://timneill.net/2013/05/remove-extra-rss-feeds-in-wordpress/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><strong>Here&#8217;s a <a
href="http://wordpress.org/" title="WordPress" target="_blank">WordPress</a> snippet to remove RSS feeds for comments while keeping the main one available.</strong></p><p><img
src="http://timneill.net/wp-content/uploads/2013/05/Feed-icon-150x150.png" alt="RSS Icon" width="150" height="150" class="alignright size-thumbnail wp-image-945" /></p><p><a
href="http://en.wikipedia.org/wiki/RSS" title="RSS - Wikipedia" target="_blank">RSS</a> is super nifty. It&#8217;s a great way to keep on top of breaking news and articles from your favourite blogs and/or aggregators (I&#8217;ve got over 100 subscriptions in my <a
href="http://feedly.com/" title="Feedly" target="_blank">feedly</a> reader).</p><p>So it&#8217;s a wonder then that WordPress offers RSS feeds for comments on all your posts. I presume there&#8217;s a <a
href="https://www.cia.gov" title="CIA" target="_blank">group of people who really like to track conversations</a>, but in my experience, it&#8217;s the minority. This functionality should really be an additional (and not core) part of WordPress. If you want to prevent your site serving pointless additional RSS feeds, you&#8217;ll need to remove them from <a
href="http://codex.wordpress.org/Plugin_API/Action_Reference/wp_head" title="wp_head" target="_blank"><code>wp_head</code></a>.</p><p>Removing them, however, is a two-step process. Add the following to your <a
href="http://codex.wordpress.org/Functions_File_Explained" title="functions.php" target="_blank"><code>functions.php</code></a> file:</p><p></p><pre class="crayon-plain-tag">// First, we remove all the RSS feed links from wp_head using remove_action
  remove_action( 'wp_head','feed_links', 2 );
  remove_action( 'wp_head','feed_links_extra', 3 );
  // We then need to reinsert the main RSS feed by using add_action to call our function
  add_action( 'wp_head', 'reinsert_rss_feed', 1 );
  // This function will reinsert the main RSS feed *after* the others have been removed
  function reinsert_rss_feed() {
      echo '&lt;link rel=&quot;alternate&quot; type=&quot;application/rss+xml&quot; title=&quot;' . get_bloginfo('sitename') . ' &amp;raquo; RSS Feed&quot; href=&quot;' . get_bloginfo('rss2_url') . '&quot; /&gt;';
  }
  //</pre><p></p><p>And that&#8217;s it. The first two actions strip the RSS using <a
href="http://codex.wordpress.org/Function_Reference/remove_action" title="remove_action"><code>remove_action</code></a> with a high priority. The final <a
href="http://codex.wordpress.org/Function_Reference/add_action" title="add_action" target="_blank"><code>add_action</code></a> call tells WordPress to load our function when processing <code>wp_head</code>. This will go through and reinsert the main feed, leaving the comment feed out.</p><p>Congratulations! Your post conversations are now <a
href="http://en.wikipedia.org/wiki/NSA_warrantless_surveillance_controversy" title="">untrackable</a>.</p> ]]></content:encoded> <wfw:commentRss>http://timneill.net/2013/05/remove-extra-rss-feeds-in-wordpress/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WordPress: Add page slug to body class (including parents!)</title><link>http://timneill.net/2013/05/wordpress-add-page-slug-to-body-class-including-parents/</link> <comments>http://timneill.net/2013/05/wordpress-add-page-slug-to-body-class-including-parents/#comments</comments> <pubDate>Thu, 09 May 2013 02:23:24 +0000</pubDate> <dc:creator>neill</dc:creator> <category><![CDATA[Programming]]></category> <category><![CDATA[Tech]]></category> <category><![CDATA[body_class]]></category> <category><![CDATA[code]]></category> <category><![CDATA[php]]></category> <category><![CDATA[programming]]></category> <category><![CDATA[slug]]></category> <category><![CDATA[snippet]]></category> <category><![CDATA[wordpress]]></category> <guid
isPermaLink="false">http://timneill.net/?p=823</guid> <description><![CDATA[Are you using WordPress as a CMS? Do you want to style pages with CSS logically? You might want to try this. By default, WordPress will inject the page and its ID into the body class. That&#8217;s great if you&#8217;re &#8230; <a
href="http://timneill.net/2013/05/wordpress-add-page-slug-to-body-class-including-parents/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><strong>Are you using <a
href="http://wordpress.org" title="WordPress" target="_blank">WordPress</a> as a CMS? Do you want to style pages with CSS logically? You might want to try this.</strong></p><p>By default, WordPress will inject the page and its ID into the body class. That&#8217;s great if you&#8217;re only running a single install, or if you really <strong>really</strong> don&#8217;t care what your CSS looks like.</p><p>Let&#8217;s face it &#8211; you care. Otherwise, you wouldn&#8217;t be here. Here&#8217;s a snippet that will inject the current page&#8217;s slug and all slugs of its parents into the body class of your HTML.</p><p>Add this to <code><a
href="http://codex.wordpress.org/Functions_File_Explained" title="functions.php (WordPress Codex)" target="_blank">functions.php</a></code></p><p></p><pre class="crayon-plain-tag">function mytheme_add_body_class($classes) {
    global $post;
    // You can modify this check so it will run on every post type
    if (is_page()) {
        global $post;
        // If we *do* have an ancestors list, process it
        // http://codex.wordpress.org/Function_Reference/get_post_ancestors
        if ($parents = get_post_ancestors($post-&gt;ID)) {
            foreach ((array)$parents as $parent) {
                // As the array contains IDs only, we need to get each page
                if ($page = get_page($parent)) {
                    // Add the current ancestor to the body class array
                    $classes[] = &quot;{$page-&gt;post_type}-{$page-&gt;post_name}&quot;;
                }
            }
        }
        // Add the current page to our body class array
        $classes[] = &quot;{$post-&gt;post_type}-{$post-&gt;post_name}&quot;;
    }
    return $classes;
}
// Add a filter for WP
add_filter('body_class', 'mytheme_add_body_class');</pre><p></p><p>And that&#8217;s it! You can then start chaining together page classes to target little overrides that your clients are probably hassling you about.</p> ]]></content:encoded> <wfw:commentRss>http://timneill.net/2013/05/wordpress-add-page-slug-to-body-class-including-parents/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Help! register_activation_hook isn&#8217;t working!</title><link>http://timneill.net/2013/01/help-register_activation_hook-isnt-working/</link> <comments>http://timneill.net/2013/01/help-register_activation_hook-isnt-working/#comments</comments> <pubDate>Thu, 17 Jan 2013 04:42:29 +0000</pubDate> <dc:creator>neill</dc:creator> <category><![CDATA[Programming]]></category> <category><![CDATA[Tech]]></category> <category><![CDATA[code]]></category> <category><![CDATA[global]]></category> <category><![CDATA[php]]></category> <category><![CDATA[plugin]]></category> <category><![CDATA[programming]]></category> <category><![CDATA[register_activation_hook]]></category> <category><![CDATA[register_deactivation_hook]]></category> <category><![CDATA[symlink]]></category> <category><![CDATA[tutorial]]></category> <category><![CDATA[wordpress]]></category> <guid
isPermaLink="false">http://timneill.net/?p=772</guid> <description><![CDATA[If you&#8217;re developing a plugin, chances are you&#8217;ve been caught out by the WordPress activation/deactivation hooks. I&#8217;ve been working on an Instagram plugin for WordPress, and in doing so have needed to use the functions register_activation_hook and register_deactivation_hook. However, I &#8230; <a
href="http://timneill.net/2013/01/help-register_activation_hook-isnt-working/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><strong>If you&#8217;re developing a plugin, chances are you&#8217;ve been caught out by the WordPress activation/deactivation hooks.</strong></p><p>I&#8217;ve been working on an <a
title="Instagram" href="http://instagram.com/" target="_blank">Instagram</a> plugin for <a
title="WordPress" href="http://wordpress.org/" target="_blank">WordPress</a>, and in doing so have needed to use the functions <a
href="http://codex.wordpress.org/Function_Reference/register_activation_hook"><code>register_activation_hook</code></a> and <a
href="http://codex.wordpress.org/Function_Reference/register_deactivation_hook" target="_blank"><code>register_deactivation_hook</code></a>.</p><p>However, I &#8211; <a
title="register_activation_hook - Support" href="http://wordpress.org/tags/register_activation_hook">like many others, it seems</a> &#8211; can&#8217;t get the hooked functions to execute. They simply don&#8217;t fire. To illustrate the problem, here&#8217;s an example from the code:</p><pre class="crayon-plain-tag">define('MY_INSTAGRAM_PLUGIN_PATH', plugin_dir_path(__FILE__));
require_once MY_INSTAGRAM_PLUGIN_PATH . 'my-instagram-widget.php';
$my_instagram = new My_Instagram();
class My_Instagram {
    /**
     * Standard constructor to initalise hooks and options
     *
     * @return void
     */
    public function __construct()
    {
        register_activation_hook(__FILE__, array($this, 'install'));
        register_deactivation_hook(__FILE__, array($this, 'uninstall'));
    }
    /**
     * Set up the table and options
     *
     * @return void
     */
    public function install()
    {
        ...
    }
    /**
     * Drop the table and options associated with the plugin
     *
     * @return void
     */
    public function uninstall()
    {
        ...
    }
}</pre><p>I would fully expect the system to execute the functions hooked within the constructor. Had that been the case, I wouldn&#8217;t have lost a day debugging a non-existant problem.</p><h2>Finding a solution</h2><p>Of course, everyone&#8217;s setup is different. There were many suggestions for fixing the problem. For the sake of usefulness, here&#8217;s the other major suggestion:</p><p><em><strong>Your global variables aren&#8217;t global</strong></em></p><p>If (like me), your plugin is a global, you actually need to explicitly define it as such with the <code>global</code> keyword. For example, the snippet</p><pre class="crayon-plain-tag">$my_instagram = new My_Instagram();</pre><p>should instead by written this way:</p><pre class="crayon-plain-tag">global $my_instagram;
$my_instagram = new My_Instagram();</pre><p>Why? Well, for this, we need to consider how the plugin has its code loaded. After installation, your plugin has its code included &#8220;normally&#8221; with standard includes. This creates the global scope that you would expect. However, when you register a function with <code>register_(de)activation_hook</code>, it is called from within another function&#8217;s scope, effectively hiding your non-explicit globals.</p><p>Confused? Consider the plugin example from earlier. The variable <code>$my_instagram</code> is declared in the global scope, with global visibility. When your code executes, your plugin is included at the same scope, meaning you will have access to the variable (as they share the same suitably-high scope). Due to the way the hook/filter system in WordPress works, your activation/deactivation hooks are executed within a localised (<strong>not</strong> global) scope.</p><div
id="attachment_796" class="wp-caption alignright" style="width: 166px"><img
class="size-full wp-image-796" alt="Screen beans - the only thing worse than scope." src="http://timneill.net/wp-content/uploads/2013/01/pulling-hair-out.jpg" width="156" height="190" /><p
class="wp-caption-text">Screen beans &#8211; the only thing worse than scope.</p></div><p>This scope-confusion applies to all functions created using <a
title="create_function" href="http://php.net/manual/en/function.create-function.php"><code>create_function</code></a>, or (in our specific example), functions called with <a
title="call_user_func" href="http://php.net/manual/en/function.call-user-func.php"><code>call_user_func</code></a> (and <a
title="call_user_func_array" href="http://php.net/manual/en/function.call-user-func-array.php"><code>call_user_func_array</code></a>). These functions have their own scope and are thus shielded from the cheap-and-nasty pile of implicit &#8220;globals&#8221; that haven&#8217;t been properly declared as such.</p><p>You can find a suitably more technical (and probably correct) write-up at the WordPress Codex page for <a
href="http://codex.wordpress.org/Function_Reference/register_activation_hook"><code>register_activation_hook</code></a>.</p><p><strong>tl;dr:</strong> Explicitly declare your globals if you want them to work <em>everywhere</em>.</p><h2>Ok, that&#8217;s great, but what&#8217;s the answer?</h2><p>After having accidentally (and rather unwillingly) been given a very rough refresher on scope, I found that this was not my problem at all. Even running proxy functions (which eliminates scope issues) failed to call the functions specified in the hook.</p><p>After much trial and error (and I mean much), I found that the paths within <code>register_(de)activation_hook</code> were not matching the path found in <code>plugin_dir_path</code>. In fact, <code>__FILE__</code> was returning a <em>completely</em> different path.</p><p>The problem? I had symlinked the theme directory in my install, meaning that <code>__FILE__</code> returned a different path to <code>plugin_dir_path</code>. This is especially important, as the file path specified by the first parameter of <code>register_(de)activation_hook</code> is included before the function specified by the second parameter is called. So, if the path in the first parameter is wrong, you probably aren&#8217;t going to be executing many functions today.</p><h2>The Fix</h2><p>This is always my favourite part. To fix the symlinking problem, you just have to be <em>very</em> specific when you&#8217;re asking WordPress to execute a hook for you.</p><p>Fixing the first example, we get:</p><pre class="crayon-plain-tag">define('MY_INSTAGRAM_PLUGIN_PATH', WP_PLUGIN_DIR . '/my-instagram/');
require_once MY_INSTAGRAM_PLUGIN_PATH . 'my-instagram-widget.php';
global $my_instagram;
$my_instagram = new My_Instagram();
class My_Instagram {
    /**
     * Standard constructor to initalise hooks and options
     *
     * @return void
     */
    public function __construct()
    {
        register_activation_hook(MY_INSTAGRAM_PLUGIN_PATH . 'my-instagram.php', array($this, 'install'));
        register_deactivation_hook(MY_INSTAGRAM_PLUGIN_PATH . 'my-instagram.php', array($this, 'uninstall'));
    }
    /**
     * Set up the table and options
     *
     * @return void
     */
    public function install()
    {
        ...
    }
    /**
     * Drop the table and options associated with the plugin
     *
     * @return void
     */
    public function uninstall()
    {
        ...
    }
}</pre><p>The most important changes occur on lines 1, 16, and 17. The first line fixes the definition by manually specifying the path using the base plugin directory (instead of an automagic WordPress search). Lines 16 and 17 specify the main plugin file itself as the path (instead of relying on <code>__FILE__</code>).</p><p>This allowed WordPress to find the plugin files without a hitch, which is especially important in the installation/uninstallation phases.</p><p><strong>Moral of the story?</strong> Check your paths first.</p><p><img
class="aligncenter size-full wp-image-801" alt="Paths" src="http://timneill.net/wp-content/uploads/2013/01/path1078362_022a381c.jpg" width="608" height="456" /></p> ]]></content:encoded> <wfw:commentRss>http://timneill.net/2013/01/help-register_activation_hook-isnt-working/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>LinkedIn &#8211; Lesson #1</title><link>http://timneill.net/2012/11/linkedin-lesson-1/</link> <comments>http://timneill.net/2012/11/linkedin-lesson-1/#comments</comments> <pubDate>Wed, 28 Nov 2012 23:30:44 +0000</pubDate> <dc:creator>neill</dc:creator> <category><![CDATA[Opinion]]></category> <category><![CDATA[awful]]></category> <category><![CDATA[fail]]></category> <category><![CDATA[headhunters]]></category> <category><![CDATA[linkedin]]></category> <category><![CDATA[opinion]]></category> <category><![CDATA[recruiter]]></category> <category><![CDATA[tutorial]]></category> <category><![CDATA[youtube]]></category> <guid
isPermaLink="false">http://timneill.net/?p=759</guid> <description><![CDATA[My battle against recruiters continues with a strange and random request from LinkedIn. I consider rejecting unsolicited LinkedIn mail my sisyphean punishment for some mysterious crime I did not commit. An ever-present tide of human ignorance washing against the grainy &#8230; <a
href="http://timneill.net/2012/11/linkedin-lesson-1/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><strong>My battle against recruiters continues with a strange and random request from LinkedIn.</strong></p><p>I consider rejecting <a
title="“EMPLOYMENT OPPORTUNITY”: Advice to meatheaded recruiters everywhere" href="http://timneill.net/2012/08/employment-opportunity-advice-to-meatheaded-recruiters-everywhere/">unsolicited LinkedIn mail</a> my <a
title="Sisyphus" href="http://en.wikipedia.org/wiki/Sisyphus" target="_blank">sisyphean punishment</a> for some mysterious crime I did not commit. An ever-present tide of human ignorance washing against the grainy shore of my day, snuffing out what little hope I had left that the entire population was not &#8211; at some fundamental level &#8211; simply a <a
title="Dipshit Test" href="http://www.thebestpageintheuniverse.net/c.cgi?u=dipshit" target="_blank">dipshit</a>.</p><p>It is no wonder, then, that I grew weary of replying to people who couldn&#8217;t do their job. The ever-persistent advance of this multi-headed <a
title="Hydra" href="http://en.wikipedia.org/wiki/Lernaean_Hydra" target="_blank">hydra</a> was eroding my enthusiasm for being a twat. Apathy was winning.</p><p>Another day, another email, and I replied with a terse &#8220;contact the manager&#8221;. A little while later, I was surprised to find the following response:</p><blockquote><p>&gt; Who is the GM?</p></blockquote><p>Now, I&#8217;m no expert on LinkedIn (hell, I rarely venture from my own profile), but I certainly know how to click a link when I see one. Several, in fact. Sometimes in a row. So when the information you&#8217;re after is fewer clicks away than finding your inbox, you should probably just take the easier option. But if this is something you need to be told, I guess there is probably a <a
title="Our future" href="http://www.imdb.com/title/tt0387808/" target="_blank">greater concern here</a>, right?</p><p>Instead of giving him a real answer, I decided to be a complete dick about it and go ahead and create this handy little video tutorial. Take note, LinkedIn <a
title="Spammer" href="http://en.wikipedia.org/wiki/Spam_(electronic)" target="_blank">trawlers</a>.</p><p><iframe
src="http://www.youtube.com/embed/FTLHnjI6Z4k" frameborder="0" width="560" height="420"></iframe></p><p>I think my passion has returned.</p><p>&nbsp;</p> ]]></content:encoded> <wfw:commentRss>http://timneill.net/2012/11/linkedin-lesson-1/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Help! My photos are missing hover text!</title><link>http://timneill.net/2012/11/help-my-photos-are-missing-hover-text/</link> <comments>http://timneill.net/2012/11/help-my-photos-are-missing-hover-text/#comments</comments> <pubDate>Mon, 12 Nov 2012 23:52:52 +0000</pubDate> <dc:creator>neill</dc:creator> <category><![CDATA[Tech]]></category> <category><![CDATA[chrome]]></category> <category><![CDATA[code]]></category> <category><![CDATA[hover text]]></category> <category><![CDATA[html]]></category> <category><![CDATA[img]]></category> <category><![CDATA[mouseover]]></category> <category><![CDATA[specifications]]></category> <category><![CDATA[tech support]]></category> <category><![CDATA[tooltip]]></category> <category><![CDATA[tumbr]]></category> <category><![CDATA[w3]]></category> <guid
isPermaLink="false">http://timneill.net/?p=736</guid> <description><![CDATA[If you&#8217;re an avid Tumblr blogger and have suddenly realised your hover text (tooltips) are missing from your photos, your day is about to get better. Something brought to my attention recently is the lack of tooltips that appear for &#8230; <a
href="http://timneill.net/2012/11/help-my-photos-are-missing-hover-text/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><strong>If you&#8217;re an avid Tumblr blogger and have suddenly realised your hover text (tooltips) are missing from your photos, your day is about to get better.</strong></p><p>Something brought to my attention recently is the lack of tooltips that appear for photos posted on <a
title="Tumblr" href="http://www.tumblr.com/" target="_blank">Tumblr</a>, even when a caption/description is provided using the editor.</p><div
id="attachment_737" class="wp-caption aligncenter" style="width: 445px"><a
href="http://timneill.net/wp-content/uploads/2012/11/tumblr_wysiwyg.png" rel="lightbox[736]" title="Tumblr image uploader"><img
class="size-full wp-image-737" title="Tumblr image uploader" src="http://timneill.net/wp-content/uploads/2012/11/tumblr_wysiwyg.png" alt="Tumblr image uploader" width="435" height="390" /></a><p
class="wp-caption-text">The image thingamajigger from Tumblr</p></div><h2>Code-Monkey explanation</h2><p>What&#8217;s actually happening here is that Tumblr/<a
title="Tiny MCE" href="http://www.tinymce.com/" target="_blank">Tiny MCE</a> is <strong>incorrectly</strong> assigning the alt text of the image. The <a
title="Alt attribute specification" href="http://www.w3.org/TR/html401/struct/objects.html#adef-alt" target="_blank">specification</a> outlines the use of alt text as a <em>replacement</em> for the image in the case that it fails to load or if the client is, in-fact, using a screen-reader, <strong>not</strong> as a tooltip (hence &#8220;<strong>alt</strong>ernative text&#8221;). Browsers have been using alt text as a fallback for title text for years, and this incorrect implementation is finally catching up to developers.</p><p>The tooltip text should instead be assigned to the title attribute. This is the text that shows on mouse over.</p><h2>Ok, can you fix it for me?</h2><p>For the blog-(and not code-)savvy, you can add a tooltip by fixing your image tags, like so:</p><pre class="crayon-plain-tag">&lt;img src=&quot;/images/some_image.png&quot; alt=&quot;My Tooltip Text&quot; /&gt;</pre><p></p><p>becomes:</p><p></p><pre class="crayon-plain-tag">&lt;img src=&quot;/images/some_image.png&quot; alt=&quot;Some Image&quot; title=&quot;My Tooltip Text&quot; /&gt;</pre><p></p><p>I&#8217;ve noticed this behaviour most recently in <a
title="Google Chrome" href="https://www.google.com/intl/en/chrome/browser/" target="_blank">Google Chrome</a>, but I suspect other browsers will follow suit. It is in accordance with the <a
title="HTML5 Working Spec" href="http://dev.w3.org/html5/alt-techniques/" target="_blank">spec</a>, after all.</p><p>I hope this cleared things up for all you Chrome-wielding bloggers out there.</p> ]]></content:encoded> <wfw:commentRss>http://timneill.net/2012/11/help-my-photos-are-missing-hover-text/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Bad Reviews: Going to Brown Town</title><link>http://timneill.net/2012/10/bad-reviews-going-to-brown-town/</link> <comments>http://timneill.net/2012/10/bad-reviews-going-to-brown-town/#comments</comments> <pubDate>Mon, 29 Oct 2012 07:46:05 +0000</pubDate> <dc:creator>neill</dc:creator> <category><![CDATA[Opinion]]></category> <category><![CDATA[Review]]></category> <category><![CDATA[awful]]></category> <category><![CDATA[coffee]]></category> <category><![CDATA[diarrhoea]]></category> <category><![CDATA[food]]></category> <category><![CDATA[italians]]></category> <category><![CDATA[opinion]]></category> <category><![CDATA[review]]></category> <guid
isPermaLink="false">http://timneill.net/?p=687</guid> <description><![CDATA[I found a can at the back of the fridge with an expiry date of 26th of October, so I did what any reasonable person would do &#8211; I drank it. I stumbled across this can of instant coffee while &#8230; <a
href="http://timneill.net/2012/10/bad-reviews-going-to-brown-town/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<h2>I found a can at the back of the fridge with an expiry date of 26th of October, so I did what any reasonable person would do &#8211; I drank it.</h2><p>I stumbled across this can of instant coffee while raiding a friend&#8217;s fridge. Although I&#8217;m no stranger to ready-made coffee, I was genuinely intrigued as to why someone felt the need to import a (canned) dairy product when we have <a
href="http://www.dairyaustralia.com.au/Statistics-and-markets/Production-and-sales/Latest-Statistics.aspx">so many cows right here in Australia</a> more than willing to squirt out a few quarts of deliciousness.</p><p>Despite all recommendations to the contrary, I went ahead and decided to drink it.</p><h2>The Packaging</h2><div
id="attachment_693" class="wp-caption alignright" style="width: 228px"><a
href="http://timneill.net/wp-content/uploads/2012/10/Packaging.jpg" rel="lightbox[687]" title="The Packaging"><img
class="size-medium wp-image-693" title="The Packaging" src="http://timneill.net/wp-content/uploads/2012/10/Packaging-218x300.jpg" alt="Except maybe the words &quot;trust me&quot;" width="218" height="300" /></a><p
class="wp-caption-text">Nothing says &#8216;trust me&#8217; like a full-faced beard. Nothing.</p></div><p>The can itself is what initially piqued my interest. The packaging features a stereotypically fat Mafioso winking suggestively out from the label, holding what is presumably a well-made espresso. Nothing says &#8220;quality coffee&#8221; quite like sticking it in an aluminium can and shipping it <a
href="http://www.travelmath.com/flying-distance/from/Sydney,+Australia/to/Taipei,+Taiwan">7000 kilometres</a> across the ocean.</p><p>Our protagonist (Mr Brown) is the visual amalgamation of several of the biggest Italian stereotypes of the last 100 years. I imagine a <em>very</em> jaded graphic designer typing &#8220;<a
href="https://www.google.com/search?hl=en&amp;safe=off&amp;biw=1384&amp;bih=803&amp;tbm=isch&amp;sa=1&amp;q=Italian+clichés&amp;oq=Italian+clichés">terrible Italian clichés</a>&#8221; into Google images and shoehorning in as many results as possible.</p><h2>The Opening</h2><div
id="attachment_698" class="wp-caption alignright" style="width: 160px"><a
href="http://timneill.net/wp-content/uploads/2012/10/Opening.jpg" rel="lightbox[687]" title="Opening"><img
class="size-thumbnail wp-image-698" title="Opening" src="http://timneill.net/wp-content/uploads/2012/10/Opening-150x150.jpg" alt="You be the judge!" width="150" height="150" /></a><p
class="wp-caption-text">Bad coffee or toilet water? You be the judge.</p></div><p>There&#8217;s always something very off-putting when you lift the tab and don&#8217;t hear that refreshing <a
title="Soda Can" href="http://www.youtube.com/watch?v=Yl5Ntsb-NS4"><strong>KSSHHH</strong></a> sound associated with (most) other canned drinks. Judging by how much the can expanded upon opening, there was a <em>whole</em> lot of trans-continental pressure inside. Were they keeping something out, or <em>keeping something <strong>in</strong></em>.</p><p>A precautionary peek inside revealed the familiar brown hue of cheap coffee/watery diarrhoea. I gave it a tentative sniff and was relieved to find that it at least smelled (mostly) like coffee. I figured it was probably best in the long-term to pour this out into a glass. Should things turn bad, I&#8217;d at least be able to see why.</p><div
id="attachment_704" class="wp-caption aligncenter" style="width: 760px"><a
href="http://timneill.net/wp-content/uploads/2012/10/Decanted.jpg" rel="lightbox[687]" title="Decanted"><img
class="size-full wp-image-704" title="Decanted" src="http://timneill.net/wp-content/uploads/2012/10/Decanted.jpg" alt="Mr Brown *was* one of the Reservoir Dogs" width="750" height="501" /></a><p
class="wp-caption-text">Seemingly innocuous so far. Laugh it up, Mr Brown.</p></div><h2>The Tasting</h2><p>Ignoring the floating white flecks of (probably) milk-powder on top, I took a mouthful of the very-watery coffee drink and committed it to my digestive system.</p><p>Past the lips, over the tongue, through the gag reflex, and down the gullet.</p><p>The drink <em>tastes</em> like it wants to taste like coffee. I was even taken aback a little by the apparent quality. Once it washed past my tongue, though, all semblance of <a
title="Arabica" href="http://en.wikipedia.org/wiki/Coffea_arabica">arabica</a> had vanished, leaving nothing but the stale taste of week-old soggy cigarette butts and dirty pipes. I repeated the feat to ensure that I was not mistaken. I was not.</p><p>I choked down the rest of this coffee/cigarette drink <em><a
href="http://dictionary.reference.com/browse/stupidity">out of spite</a>.</em></p><h2>The Verdict</h2><p>Honestly, given the wide array of instant coffee out there, I&#8217;m surprised that bad instant coffee drinks exist <strong>at all</strong>. Moreover, why are they being <em>imported</em>? We Australians are perfectly capable of churning out <a
href="http://neighbours.com.au">abysmal products</a> without overseas help.</p><p>I did enjoy the experience of drinking what is normally a two-step breakfast for me &#8211; coffee and cigarettes. Mr Brown is probably working on his pitch to <a
href="http://www.sanitarium.com.au/products/breakfast/up-and-go">Sanitarium&#8217;s Up and Go</a> team right now. A true meal replacement for champions.</p><div
id="attachment_711" class="wp-caption aligncenter" style="width: 408px"><a
href="http://timneill.net/wp-content/uploads/2012/10/MrBrown.jpg" rel="lightbox[687]" title="Mr Brown"><img
class="size-full wp-image-711" title="Mr Brown" src="http://timneill.net/wp-content/uploads/2012/10/MrBrown.jpg" alt="Signor Marrone e inaffidabile" width="398" height="360" /></a><p
class="wp-caption-text">Italians &#8211; Made in Taiwan</p></div><p>&nbsp;</p> ]]></content:encoded> <wfw:commentRss>http://timneill.net/2012/10/bad-reviews-going-to-brown-town/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>I wrote a book</title><link>http://timneill.net/2012/09/i-wrote-a-book/</link> <comments>http://timneill.net/2012/09/i-wrote-a-book/#comments</comments> <pubDate>Sat, 29 Sep 2012 13:16:54 +0000</pubDate> <dc:creator>neill</dc:creator> <category><![CDATA[General]]></category> <category><![CDATA[advertising]]></category> <category><![CDATA[awful]]></category> <category><![CDATA[not a real book]]></category> <category><![CDATA[photoshop]]></category> <guid
isPermaLink="false">http://timneill.net/?p=655</guid> <description><![CDATA[The book was surprisingly easy to write. It practically flowed from me.]]></description> <content:encoded><![CDATA[<p><a
href="http://timneill.net/wp-content/uploads/2012/09/NeillsCookbook.jpg" rel="lightbox[655]" title="The book's working title was: 'Breakfasts of the Broken-Hearted'"><img
class="aligncenter size-large wp-image-656" title="The book's working title was: 'Breakfasts of the Broken-Hearted'" src="http://timneill.net/wp-content/uploads/2012/09/NeillsCookbook-815x1024.jpg" alt="The book's working title was: 'Breakfasts of the Broken-Hearted'" width="584" height="733" /></a>The book was surprisingly easy to write. It practically flowed from me.</p> ]]></content:encoded> <wfw:commentRss>http://timneill.net/2012/09/i-wrote-a-book/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>It didn&#8217;t have to be like this</title><link>http://timneill.net/2012/09/it-didnt-have-to-be-like-this/</link> <comments>http://timneill.net/2012/09/it-didnt-have-to-be-like-this/#comments</comments> <pubDate>Wed, 05 Sep 2012 03:45:18 +0000</pubDate> <dc:creator>neill</dc:creator> <category><![CDATA[Opinion]]></category> <category><![CDATA[Review]]></category> <category><![CDATA[awful]]></category> <category><![CDATA[cancer]]></category> <category><![CDATA[pointless]]></category> <category><![CDATA[review]]></category> <category><![CDATA[video]]></category> <category><![CDATA[youtube]]></category> <guid
isPermaLink="false">http://timneill.net/?p=645</guid> <description><![CDATA[Welcome to Cancer Council Victoria&#8217;s latest campaign against cervical cancer. Although I enjoyed the absurdity of the video, a few questions remain: What was the author trying to convey with their selection of background music? Romance? Sleaze? Seems too slow &#8230; <a
href="http://timneill.net/2012/09/it-didnt-have-to-be-like-this/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>Welcome to Cancer Council Victoria&#8217;s latest campaign against <a
href="http://www.cancervic.org.au/about-cancer/cancer_types/cervical_cancer">cervical cancer</a>.</p><p><iframe
src="http://www.youtube.com/embed/lXrZNmbWkYM" frameborder="0" width="560" height="315"></iframe></p><p>Although I enjoyed the absurdity of the video, a few questions remain:</p><ol><li>What was the author trying to convey with their selection of background music? Romance? Sleaze? Seems too slow and deliberate for just <a
href="http://www.imdb.com/title/tt0066921/">a bit of the old in-out</a>.</li><li>Why did Joey McStudsalot go straight for the prize? Cool your jets, soldier, you&#8217;ve got all night. We&#8217;re listening to the same soundtrack, right? There&#8217;s nothing more embarassing than finishing before the album, let alone the first song.</li><li>What the hell is powering her panties? I&#8217;m guessing some type of bio-fuel. I bet there are some sweet government subsidies on that. Probably renewable, too.</li><li>Is Nanna Likestowatch dead? Alive? Part of an experimental <a
href="http://www.asio.gov.au/">ASIO</a> project? Whichever it is, it seems like her granddaughter&#8217;s hamfisted attempt at getting laid has bothered her enough to pipe-up. I don&#8217;t know about you, but nothing makes me want to <strong>un</strong>have sex more than my dead grandmother telling me about my potentially-festering loins.</li><li>Is McStudsalot a robot? Or at least a futuristic <a
href="http://en.wikipedia.org/wiki/Cyborg">fusion of man and machine</a>? Then how the hell is he still raring to go after getting a lecture on his girlfriend&#8217;s nethers by a photo on a mantelpiece? I would&#8217;ve tipped off down the street, underwear in one hand and a phonecall to the <a
href="http://en.wikipedia.org/wiki/Scooby-Doo">Scooby Gang</a> in the other.</li></ol><p>Hopefully these are all answers we can get straight from the cutting room floor. I expect no fewer than two follow-up videos to this: one from the <a
href="http://www.betterhealth.vic.gov.au/bhcv2/bhcarticles.nsf/pages/Impotence">Erectile Dysfunction Centre</a>, and the other as an episode of <a
href="http://www.cops.com/">C.O.P.S</a>.</p><p><a
href="http://timneill.net/wp-content/uploads/2012/09/1080384-mystery_machine.jpg" rel="lightbox[645]" title="Mystery Machine"><img
class="aligncenter size-full wp-image-646" title="Mystery Machine" src="http://timneill.net/wp-content/uploads/2012/09/1080384-mystery_machine.jpg" alt="" width="300" height="300" /></a>Zoinks.</p> ]]></content:encoded> <wfw:commentRss>http://timneill.net/2012/09/it-didnt-have-to-be-like-this/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>&#8220;EMPLOYMENT OPPORTUNITY&#8221;: Advice to recruiters everywhere</title><link>http://timneill.net/2012/08/employment-opportunity-advice-to-recruiters-everywhere/</link> <comments>http://timneill.net/2012/08/employment-opportunity-advice-to-recruiters-everywhere/#comments</comments> <pubDate>Mon, 13 Aug 2012 02:38:54 +0000</pubDate> <dc:creator>neill</dc:creator> <category><![CDATA[Opinion]]></category> <category><![CDATA[awful]]></category> <category><![CDATA[blathering rant]]></category> <category><![CDATA[email]]></category> <category><![CDATA[employment]]></category> <category><![CDATA[headhunters]]></category> <category><![CDATA[jerk]]></category> <category><![CDATA[nigerian princes in skirts and heels]]></category> <category><![CDATA[recruiters]]></category> <guid
isPermaLink="false">http://timneill.net/?p=631</guid> <description><![CDATA[I get a lot of email from recruiters. Mostly because I hate recruiters and the fact they are a necessary evil, but also because they usually contact me by doing scummy, impolite/disrespectful things, like calling me at my workplace on &#8230; <a
href="http://timneill.net/2012/08/employment-opportunity-advice-to-recruiters-everywhere/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><img
class="aligncenter size-full wp-image-636" title="business" src="http://timneill.net/wp-content/uploads/2012/08/business.jpg" alt="" width="316" height="480" /></p><p>I get a lot of email from recruiters. Mostly because I hate recruiters and the fact they are a necessary evil, but also because they usually contact me by doing scummy, impolite/disrespectful things, like calling me at my workplace on my company phone, or emailing me when I&#8217;ve clearly stated not to.</p><p>Given the volume of mail I receive is not looking to wane any time soon, I&#8217;ve decided to start handing out unsolicited advice to any recruiters ignoring my previous (polite) requests.</p><p>You have been warned.</p><blockquote><p>Hi Tim,</p><p>I came across your profile on LinkedIn and wanted to discuss a Senior Developer / Leader role I am recruiting for.</p><p>The client industry is education and is the largest provider of online distant education. They are looking for a Senior/Team Leader PHP Developer with strong Linux and ideally Drupal knowledge.<br
/> You will be leading the development of our next generation of desktop, mobile, social, and email-based online solutions.</p><p>Reporting to the Head of E-commerce, you will be working closely with our creative team of graphic designers, user experience architects and analysts to develop a state-of-the-art online student acquisition initiative.<br
/> The key deliverables/outcomes for the role is the following:</p><p>-       Leading a transition from a Microsoft.NET based environment to an open source environment, specifically Drupal on LAMP.<br
/> -       Delivering a Drupal site with approximately 500-1000 products (various types ofeducation courses), on around 20 themes, running on desktop and mobile.<br
/> -       Building and leading a highly scalable off-shore team.<br
/> The client is based in North Sydney and are looking to pay around the 120k mark.</p><p>Would you be interested in this position?<br
/> If you are not interested but know someone who would be ideal for this position then please forward on my details and should I place your referred candidate then I will give you $250 worth of vouchers (Terms Apply).</p><p>I will look forward to hearing from you.</p><p>Many Thanks</p></blockquote><p><img
class="aligncenter size-medium wp-image-635" title="Email" src="http://timneill.net/wp-content/uploads/2012/08/1102037_275617671-300x243.jpg" alt="" width="300" height="243" /></p><p>First up, this is not a personal email. I get literally dozens of these emails a week. Consider yourself more a sweepstake &#8220;winner&#8221;. Except that instead of a half-baked and probably flavourless meringue, you get my vitriol mixed in with unsolicited advice. Once again, not personal. I&#8217;m just honestly sick of being contact when I&#8217;ve explicitly told LinkedIn I&#8217;m not interested. Ever.</p><p>So, a couple of things:</p><p>1) I have my &#8220;contact if&#8230;&#8221; settings on LinkedIn set to everything but &#8220;send me a job&#8221;. I&#8217;m not sure why you don&#8217;t see this, but I suppose proper etiquette would suggest that you would check. If one didn&#8217;t realise that this setting existed, I think that one should probably play with LinkedIn a little more before using it as a significant workplace tool.</p><p>2) As this email is more than likely a blanket mail-merge/LinkedIn spam clusterfuck, I can probably ignore any semblance of sincerity or professionalism. Noone came across my profile. Well, I probably did a little after I finished writing it, but other than that, noone is manually reading this. I once had &#8220;Code Monkey&#8221; on my LinkedIn resume for 18 months and STILL got job offers. Any company willing to hire some dipshit who doesn&#8217;t take their own job seriously doesn&#8217;t deserve to be taken seriously themselves.</p><p>And now, the job:<br
/> 1) &#8220;Largest provider of online distant education&#8221;? They aren&#8217;t in Sydney. If they are, they aren&#8217;t the largest provider of anything. Except probably bullshit. At least half a dozen international Universities do this (and better), not to mention the FREE SERVICES that are kicking around right now that are growing at mind-boggling rates with FREE CONTENT that doesn&#8217;t run on some rubbish platform. Speaking of which;</p><p>2) Drupal. I don&#8217;t really use it. Actually, most people don&#8217;t really use it. It&#8217;s kind of like WordPress. A handful of people are &#8220;good&#8221; at it. A significant number of people can tinker around and &#8220;get it to work&#8221;. Everyone else just copies and pastes bits and pieces of code until the damn thing stops reporting errors. If this site is the &#8220;largest provider of [whatever]&#8220;, they don&#8217;t need someone who &#8216;might&#8217; know Drupal, they&#8217;re going to want the half a dozen people who know how the platform works so they don&#8217;t fuck up someone&#8217;s life with a shitty web service. Not to mention the volume of work that they think they can rollout.</p><p>3) You can&#8217;t be eCommerce and eLearning. Pick one or stop fucking over your userbase.</p><p>4) I don&#8217;t know what the hell &#8220;highly scalable off-shore team&#8221; means, but it certainly sounds like a whole bunch of industry wank for &#8220;cheapest chumps around&#8221;. Highly scalable? My database is highly scalable. My web site is highly scalable. My team is&#8230; people. We don&#8217;t scale. The point of the word is not just to indicate growth, but to indicate the flexibility of operating at any size. In this case, it sounds like the &#8220;highly scalable team&#8221; would have to also be happy with lining up for a dole cheque if the &#8220;team&#8221; can&#8217;t hit their presumably unreachable deadline.</p><p>Now that I&#8217;ve spent this time being a complete dickhead, here&#8217;s some advice so you don&#8217;t start Mondays with arseholes like me (and maybe actually get useful candidates):</p><p>1) Don&#8217;t use the mass-mailer. If you do, and LinkedIn is sending garbage to people like me, complain to LinkedIn. They make their money from you, not me. You will have the added bonus of being able to filter out shitty candidates, or people who ARE NOT candidates (i.e. me)</p><p>2) Don&#8217;t pretend to be contacting me directly if you aren&#8217;t. Specifically, don&#8217;t pretend to be /writing/ to me if you aren&#8217;t. I can tell that shit was copy/pasted from Word. Speaking from a programmer&#8217;s perspective, they want to be taken seriously. They also have a rainman-esque ability to notice things you probably ignore. Shitty, insincere emails is a double-whammy.</p><p>The job:<br
/> 1) If you&#8217;re going to piss all over people&#8217;s bullshit-radars, at least give some indication as to who the company is. Noone cares about &#8220;largest manufacturer of devon&#8221; unless they can say &#8220;largest manufacturer of devon <strong>in Europe</strong>&#8220;. Also, the fact that this claim could be made with an apparent disregard for the market is a slap in the face to all the contributors to the free services currently out there. Poor (or lazy) research is not winning you candidates.</p><p>2) If a brief came in to me from some manager at LargestEducatorOnline that read &#8220;find me someone to code the largest Drupal site ever, but only give them 120k, plus highly scalable web 2.0 buzzword pancakes&#8221;, I would probably stop for a second. Mostly to laugh, but also to check why they think a senior manager running a massive &#8220;highly scalable offshore team&#8221; deserves only 120k. This screams all types of &#8220;I don&#8217;t know what the fuck I want&#8221;. Noone wants an unexpected surprise from their workplace, especially if it&#8217;s &#8220;yeah your &#8216;team&#8217; is actually the array of bendy straws we have in the kitchen. Welcome aboard&#8221;. Find out what they want. Tell your candidates exactly that. Holy hot damn &#8211; results!</p><p>3, 4) I don&#8217;t care what type of world we live in. You can&#8217;t successfully merge eCommerce and eLearning. The best platforms for learning are currently FREE, and are built on the foundation that &#8220;knowledge is free&#8221;. Contributors love the idea of teaching, and students love the idea of learning. Trying to screw people out of a few bucks for the (dis)pleasure of a shitty online learning platform is not the way to make friends. My point here is pretty much the same as the above. Learn what your client wants and pass on as many un-wanked details as possible.</p><p>Basically, no, I&#8217;m not interested in this position. You&#8217;ve breached my trust from the outset using LinkedIn&#8217;s cruddy mass-mail tool (thus ignoring my messaging requests), not to mention the job description from the company you&#8217;re representing is terrible, either because the brief was heinously poor (their fault), or horribly misrepresented (your fault). Everything about this job screams &#8216;ridiculous&#8217; at best, and &#8216;scam&#8217; at worst.</p><p>Best regards and apologies,<br
/> neill</p> ]]></content:encoded> <wfw:commentRss>http://timneill.net/2012/08/employment-opportunity-advice-to-recruiters-everywhere/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>&#8220;That is not a meme&#8221; &#8211; A PSA</title><link>http://timneill.net/2012/07/that-is-not-a-meme-a-psa/</link> <comments>http://timneill.net/2012/07/that-is-not-a-meme-a-psa/#comments</comments> <pubDate>Tue, 31 Jul 2012 05:05:38 +0000</pubDate> <dc:creator>neill</dc:creator> <category><![CDATA[Opinion]]></category> <category><![CDATA[awful]]></category> <category><![CDATA[blathering rant]]></category> <category><![CDATA[dawkins]]></category> <category><![CDATA[gene]]></category> <category><![CDATA[meme]]></category> <category><![CDATA[psa]]></category> <guid
isPermaLink="false">http://timneill.net/?p=621</guid> <description><![CDATA[Being simultaneously a fan of Richard Dawkins and a fan of talking trash on the internet, it pains me to see people using the word &#8220;meme&#8221; as if it were the latest Web 2.0 technology. Here&#8217;s a history lesson (from &#8230; <a
href="http://timneill.net/2012/07/that-is-not-a-meme-a-psa/">Continue reading <span
class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>Being simultaneously a fan of Richard Dawkins and a fan of <a
href="http://twitter.com/kinghfb" target="_blank">talking trash on the internet</a>, it pains me to see people using the word &#8220;meme&#8221; as if it were the <a
title="Twice as much web as web 1.0" href="http://html9responsiveboilerstrapjs.com/" target="_blank">latest Web 2.0 technology</a>.</p><p>Here&#8217;s a history lesson (from <a
href="http://en.wikipedia.org/wiki/Memetics" target="_blank">the Wikipedia article</a>) if your only exposure to the word comes from the internet:</p><blockquote><p>Memetics is a controversial theory of mental content based on an analogy with Darwinian evolution, originating from the popularization of Richard Dawkins&#8217; 1976 book <em>The Selfish Gene</em>. It purports to be an approach to evolutionary models of cultural information transfer.</p><p>The meme, analogous to a gene, was conceived as a &#8220;unit of culture&#8221; (an idea, belief, pattern of behaviour, etc.) which is &#8220;hosted&#8221; in one or more individual minds, and which can reproduce itself, thereby jumping from mind to mind. Thus what would otherwise be regarded as one individual influencing another to adopt a belief is seen [...] as an idea-replicator reproducing itself in a new host. As with genetics, particularly under a Dawkinsian interpretation, a meme&#8217;s success may be due to its contribution to the effectiveness of its host.</p></blockquote><p>Put more simply, an idea passes from person to person in a similar fashion to the way that genes (<a
href="http://en.wikipedia.org/wiki/Gene" target="_blank">combinations within your DNA</a>) pass from person to person.</p><p>Why does this bother me, then? Well, I think you&#8217;ve probably seen something like this:</p><p><img
class="aligncenter size-full wp-image-623" title="Not Sure Fry" src="http://timneill.net/wp-content/uploads/2012/07/3qan21.jpg" alt="" width="603" height="452" /></p><p><em>This</em> is a meme. Specifically, the use of Fry&#8217;s face with the text &#8220;Not sure if&#8230;&#8221; is the meme. What people normally call a meme is actually the image macro <strong>style</strong>. Annoyingly, this mistake is taking over (and, I guess, becoming a meme in and of itself. Meta.)</p><p>Here&#8217;s a list of things that are not memes:</p><ul><li>Random, shitty photos with random, shitty captions</li><li>You</li></ul><p>So remember, when you hear someone say &#8220;I made this cool meme&#8221;, you can be assured that they are almost certainly wrong.</p> ]]></content:encoded> <wfw:commentRss>http://timneill.net/2012/07/that-is-not-a-meme-a-psa/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>