<?xml version="1.0" encoding="UTF-8"?>
<rss version='2.0' xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Rob Gough</title>
    <description>Professional Software Developer, Amateur Broadcaster and Full-Time Geek</description>
    <link>https://robgough.silvrback.com/feed</link>
    <atom:link href="https://robgough.silvrback.com/feed" rel="self" type="application/rss+xml"/>
    <category domain="robgough.silvrback.com">Content Management/Blog</category>
    <language>en-us</language>
      <pubDate>Wed, 30 Jul 2014 03:36:03 -1200</pubDate>
    <managingEditor>robertgough@gmail.com (Rob Gough)</managingEditor>
      <item>
        <guid>https://robgough.silvrback.com/rails-4-blank-page-on-index-action#6424</guid>
          <pubDate>Wed, 30 Jul 2014 03:36:03 -1200</pubDate>
        <link>https://robgough.silvrback.com/rails-4-blank-page-on-index-action</link>
        <title>Rails 4 blank page on index action</title>
        <description></description>
        <content:encoded><![CDATA[<p>We recently had an issue where Rails 4 was giving a blank page when calling the <code>index</code> action on some, but not all, controllers. </p>

<p>After some considerable frustration the ever useful <a href="http://twitter.com/mikespokefire">@mikespokefire</a> managed to solve it.</p>

<p>Someone who shall remain nameless (but may, or may not, have been me) had configured asset pipeline to point at the same root as the main rails app, which meant that on loading it was trying to find a <code>.js</code>, <code>.css</code>, or an image file with that name <em>before</em> loading the normal controller action. And if you&#39;re anything like me and used a generator, you probably had more than one of the above. </p>

<p>The solution is as simple as configuring rails to store assets in <code>/assets</code> using something like the following in <code>application.rb</code>:</p>
<div class="highlight"><pre><span></span>config.assets.prefix = &quot;/assets&quot;
</pre></div>
<p>And as if by magic, it now works!</p>
]]></content:encoded>
      </item>
      <item>
        <guid>https://robgough.silvrback.com/card-numbers-with-trello-and-safari#5509</guid>
          <pubDate>Fri, 27 Jun 2014 02:34:49 -1200</pubDate>
        <link>https://robgough.silvrback.com/card-numbers-with-trello-and-safari</link>
        <title>Card Numbers with Trello and Safari</title>
        <description>A teeny-tiny, but super-handy Safari Extension</description>
        <content:encoded><![CDATA[<p>This is a simple Safari extension that takes Trello from;</p>

<p><img alt="Trello without card numbers displayed" src="https://dl.dropboxusercontent.com/u/300886/blog_images/trellocardnumbers_before.png" /></p>

<p>to...</p>

<p><img alt="Trello with card numbers displayed" src="https://dl.dropboxusercontent.com/u/300886/blog_images/trellocardnumbers_after.png" /></p>

<p>This seems like a small change, but when using Trello with teams as we do working at <a href="http://onthebeach.co.uk">On The Beach</a> then we find it makes communication so much simpler.</p>

<p>Thanks to <a href="http://twitter.com/mikespokefire">@mikespokefire</a> who wrote the original Chrome version that I couldn&#39;t live without after switching to Safari!</p>

<p>Code is available on <a href="https://github.com/robgough/trellocardnumbers-safari">github</a> or the extension can be downloaded directly (double-click to install) <a href="https://github.com/robgough/trellocardnumbers-safari/raw/master/TrelloCardNumbers.safariextz">download</a> </p>
]]></content:encoded>
      </item>
      <item>
        <guid>https://robgough.silvrback.com/large-file-hunting#1613</guid>
          <pubDate>Sat, 18 Jan 2014 09:19:26 -1200</pubDate>
        <link>https://robgough.silvrback.com/large-file-hunting</link>
        <title>Large-File Hunting on Mac&#39;s and *nix</title>
        <description>note to self: ncdu is a nifty little tool</description>
        <content:encoded><![CDATA[<p>I recently found <code>ncdu</code> which, excusing it&#39;s awful-to-remember name, is an awesome command line tool for quickly finding (and eliminating?!) those pesky large files hiding on your computer. </p>

<p><img alt="Silvrback blog image" src="https://silvrback.s3.amazonaws.com/uploads/adbe85a8-fce6-47a5-a013-79c986a97ee2/ncdu_demo_large.gif" /></p>

<p>I really do keep forgetting the name, so this is here to remind me. It&#39;s available via apt-get on Ubuntu (and presumably Debian) and on Mac&#39;s can be installed via <em>homebrew</em>.</p>
]]></content:encoded>
      </item>
  </channel>
</rss>