Background image

Zach Inglis

I am a Scottish graphic designer and programmer with over 10 years experience in the industry. I am versed in both design and development giving me a very well-rounded skill set that allows me to fully realise your idea and put it to life.

Posts

  • January 12, 09:59 AM
  • January 06, 12:36 PM

    [from my flickr]

    It’s been a month since I moved back to London.

    I am currently consulting and booked solid for at least this month. Looking very forward to when I can announce said projects.

  • January 05, 04:26 AM

    Words You Won't Find In The Entire Tumblr Codebase

    marco:

    • Factory.

    Ooh; a game.

    • Stability

    :D

    Factories are quite a useful tool with tests I must say. Considering how many finickity bugs do pop up on Tumblr; I could not expect there to be any tests. Granted that the major bugs seem like server load, there are so many tiny ones that I could only imagine would be bypassed by decent test coverage.

    I hardly think Tumblr is the right company to preach on HOW to code, though? Especially when the server outages and bugs are getting more often and worse. If anything; you saying shows the reason to use Factories.

  • December 29, 03:00 PM

    Open Letter To Tumblr

    Dear Marco et al,

    I have just been alerted to your new ‘Ask’ feature, which gives you exactly the same featureset as Formspring.me. I appreciate the fact you are trying to satisfy the Tumblrverse, but everyone would of been quite happy if you hadn’t. There was nothing broken, so nothing needed fixing on that front.

    However; Tumblr is probably THE buggiest website I have ever used. Including Twitter. Everything is broken in some way or another and the website can not stay up for more than 50 minutes. As someone who likes to Tumbl and has a few Tumblogs (some with 1100 followers, some with 2600 followers), it frustrates me no end.

    Everyone knows the core principles of a successful web application is keeping your feature-set clean, relevant and to do as little things as possible; as good as possible. This is just an un-needed.

    Tumblr is a great place, with a great community but having watched quite a few people leave it because of the lack of visible care going into this place, I wonder what really is happening behind the scenes.

    Please can you focus on what makes this website great? And less about random new toy features.

    Cheers very much,

    Zach

  • December 22, 06:59 PM

    flavors.me/zachinglis

    I just built this in about 5 minutes. Great service for those wanting to create a quick portal page.

  • December 07, 12:39 PM

    "Your portfolio is pink, I hope you are not homosexual"

    clientsfromhell:

    After having a quite pleasant phone conversation with a client and discussing a proposed strategy for moving forward, they told me they hope I was not homosexual, because my site looked a “bit gay” with the pink.

    I wrote off the hour and a half on the phone and did not proceed with any more negotiations.

    My submission got through!

    This happened to me a few years ago. I had a lot of comments to me over the years on the pink of my portfolio (I only have a dash at the moment; I need to add more) but I never felt so insulted. It was partly to do with the tone.

  • December 04, 03:30 PM

    How To Take a Great Portrait

    Taking portraits is a very popular way to use a camera. However, everyone can be sensitive about having themeslves photographed. As with the whole of photography; it is our job as photographers to get the best result we can and hopefully this tutorial will help with that. Every subject is different (be it face shape, skin colour, hair colour, etc).

    Read more on Compose, Focus & Click!

  • November 19, 07:36 AM

    Crummy now on GemCutter.

    Crummy, the simple and tasty way to add breadcrumbs to your Rails applications is now on GemCutter.

    Thanks to netzpiraten for getting this started.

  • November 17, 04:00 PM

    The Importance Of Pocket Books.

    Many times in my years as an entrepreneur and networker, I have raised the question of best organizational practices. I am constantly looking for quick tips to create a better and more productive me. One of the most vital tools, especially for the forgetful, is a pocket book.

    20091105-_DSC0008

    Throughout mine you can find random questions and thoughts. The image above shows one task page list. Other items in the book consist of thoughts like “Best Wacom to get?”, “Do I want to go to Ruby Manor 2?” and “Price for 50mm ƒ/1.4 lens”. Some of which I may have forgot.

    While a phone could be a good replacement, I don’t have to worry about eating into my battery which I would possibly need later.

    The book I use, as shown above is called WhiteLines* which is only $3 and lovely and minimalist.

    * The link goes to Amazon.com and has my affiliate code attached.

  • November 06, 04:36 PM

    Redesigned Portfolio

    I have just redesigned my portfolio. I try to keep my portfolio a proper reflection of my skills.

    Click to see. Please enjoy :)

  • October 23, 06:36 PM

    My resume is now online! I am available for permanent and contract work and am more than willing to relocate.

  • September 28, 02:31 AM

    This is just a note to say that I am still here. I have been working on some personal stuff including bettering my photography. Above is one of my pictures :)

    Below are some links to find me…

  • September 22, 02:08 AM

    Twitter - Smart Captcha

    When signing up, if you enter the captcha correctly but there is an error on the form, you do not need to enter it again.

  • September 17, 10:05 PM
  • September 17, 05:03 PM

    Quick Note

    I lost my feed when MediaTemple rudely shut my blog down and I moved to Tumblr. I have just managed to claim my Feedburner URL again, so thanks to the few that stuck around.

  • August 26, 09:36 PM

    RailsRumble Picks '09

    I was randomly assigned a group of Rails Rumble entries to judge this year. I’d like to call out my favourites of the ones I’ve judged. I’m looking forward to seeing the full list after I judge.

    In no perticular order, my favourites are:

  • August 13, 11:18 PM

    Judging Rails Rumble

    So after doing having the great honour of doing the preliminary design for Rails Rumble, It has just been announced that I am joining some amazing people and judging Rails Rumble aswell. It’s a great privallage and I look forward to judging your apps.

  • August 10, 11:57 PM

    Minor Suggestion: Unless.nil? - Down with double negatives

    This is a very small tip aimed for people to clean up their code-base and remove some of the double negatives.

    Often I shall see:

    unless @user.nil?

    The issue with this is approach is that unless is harder to read than if, then you have to mentally process the #nil?

    The other approach is:

    if @user

    However, for a lot of people this is not explicit enough. I find that too few know about #present? method

    if @user.present?

    #present? is literally the opposite of #blank? and thus checks if it is not nil? or if it is not empty?

    Hopefully with this small tidbit of knowledge, you can clean up your code and make it easier to read.

  • August 05, 10:04 AM

    Deploying Thinking Sphinx with Capistrano.

    I’ve had a lot of issues trying to deploy ThinkingSphinx with Capistrano. This has been for a multitude of reasons. The following is my recipe for deploying and hopefully making it public will make a few peoples lives easier.

    This assumes you are using the plugin, not the gem.

    In your deploy.rb, add the following at the top:

    require 'vendor/plugins/thinking-sphinx/lib/thinking_sphinx/deploy/capistrano'

    Then, at the bottom add this:

    before "deploy:rollback:revision",  "thinking_sphinx:stop_gracefully"
    after  "deploy:default",            "thinking_sphinx:symlink"
    after  "deploy:default",            "thinking_sphinx:ready"

    namespace :thinking_sphinx do
    task :stop_gracefully do
    begin
    thinking_sphinx.stop
    rescue
    puts "ThinkingSphinx is not running. No stop required."
    end
    end

    desc "Configure, Index and then run Thinking Sphinx"
    task :ready do
    thinking_sphinx.configure
    thinking_sphinx.index
    thinking_sphinx.start
    end

    desc "Link up Sphinx's indexes."
    task :symlink do
    run "ln -nfs #{shared_path}/db/sphinx #{release_path}/db/sphinx"
    end
    end

  • July 25, 09:47 PM

    Don't Accept Doing Anything But Your Best

    Now this may seem vulagrly blatent, but I have been mulling over past jobs the last few days. I realised that I did myself no favours by being constantly belevonant. When I was asked to “Complete a design in 2 days” or such, I would say jump at the oppurtunity to prove myself or to try and help out in any way I can. Now I realised, by rushing the design work, my performance was lackluster and the results were not of that I was proud of. I was proud that I got the work out, but it was forgettable and obviously, you don’t ever want your work to ever be forgettable.

    If your boss ever says “Can you do me a design in 3 days”, mostly I think the correct answer should be “No”, unless it’s a once off request. To be utilised as an average designer, will earn you that position and make you despensable, leaving little reward. It’s a mistake I shall try not to make again in the future, to only put out my best work and not accept putting out anything but that.

  • July 16, 09:04 PM

    New jQuery Plugin: Animated Linethrough

    I have created a new plugin for jQuery that allows you to animate the text in an element with linethrough.

  • July 09, 10:12 AM

    Make Your Rails Development Environment Slower, Easily.

    I’m about to do some work on a Rails project that requires the environment to be that of a real production environment for users. I have created 2 bash functions to aid me in this;

    I put them in my bash profile. This is my first foray into bash programming, so if you think something could be done better, please tell me.

  • July 05, 05:05 PM

    Portfolio Updated!

    I have updated my portfolio with a selection of recent clients and websites. They include:

    • Rails Rumble: It was an honour when I was asked to design the yearly competition’s website.
    • Clickscape: I developed for this website for a few months, refactoring and finishing any uncompleted features.
    • Zach Inglis v7: The current website you’re looking at.
    • Zach Inglis v6: The previous iteration of this website.
  • June 28, 12:50 AM

    Tutorial: How to display your last played artist from Last.fm

    In this tutorial I will teach you how to display your last listened to track on your website with the jQuery library (although it can be easily translated to any other library). The JSON library for Last.fm is not very well documented.

    1. Log into the API Account page and fill in the form for your application however you would like. Name the Callback URL ‘LastPlayed’. Write down your API key.

    2. Create an element somewhere in your page with the id of #song. I use the following:

      <strong>Currently listening to:</strong> <span id="song">Nothing</span>

      That way, for the few seconds that the Javascript has not loaded, it will appear sensicle.

    3. Right before the </head> tag on your website, add the following snippet of code:
      <script src="http://www.google.com/jsapi"></script>
      <script type="text/javascript">
      google.load("jquery", "1.3.2");
      </script>

      <script type="text/javascript">
      function show_last_track(JSONdata) {
      var last_track = JSONdata.recenttracks.track;
      var track_artist = last_track.artist['#text'];
      var track_name = last_track.name;
      var track = track_artist + " - " + track_name;
      $('#song').text(track);
      }
      </script>
    4. Finally, add the following code just above the </body> so that once your page is loaded, it will execute. Don’t forget to replace YOUR_API_KEY with the one you jotted down earleir.
      <script type="text/javascript" src="http://ws.audioscrobbler.com/2.0/?method=user.getrecenttracks&user=piemaster&api_key=YOUR_API_KEY&limit=1&format=json&callback=show_last_track"></script>
    5. Reload your page and check it works!
  • June 25, 11:18 PM

    New Start

    After some ‘complications’ with MediaTemple which ended up with them deleting my data, including all my posts from 4+ years, I have now switched over to a hosted soloution for my blog.

    I am going to try and post a lot more than I did, through here.

Recent tracks

Top tracks

Upgrade Flash to view this site properly