Open Source

We're avid fans of open source, we use it and contribute hundreds of our own projects to the community. Keep up to date with them all.

Displaying posts 13 - 24 of 25 in total

Running Ruby apps in production

Posted in October 2016 on the aTech Media blog

Over the last few months, I’ve been working on a number of Ruby applications which have a requirement to run a few different types of process — web servers, workers, crons — in order...

Memoization in Ruby

Posted in July 2015 on the aTech Media blog

Memoization is a technique employed in many languages which allows you to cache the results of slow or expensive operations and return the cached result whenever the method is subsequently...

String Interpolation in Rails

Posted in April 2015 on the aTech Media blog

A while ago I wrote a small library to handle string interpolation in a Rails application. The library allows you to safely allow users to insert variables into strings they...

Creating MOSS returns for HMRC with JSON

Posted in March 2015 on the aTech Media blog

HMRC (the UK tax authority) have finally announced how UK businesses should submit details of their digital sales to other EU countries for their new VAT MOSS system. In my...

Merging Pull Requests on GitHub

Posted in March 2015 on the aTech Media blog

Today I’m talking about the merge button on GitHub, why you shouldn’t use it and presenting an alternative which is cleaner & easier to use.

Improve session security in Rails apps

Posted in February 2015 on the aTech Media blog

In Rails applications, it’s really easy to allow users to login to your application. You ask them for a username & password, you check they’re correct and you pop their...

Documentation Engine for Rails

Posted in October 2014 on the aTech Media blog

A couple of months ago, I wrote a Rails engine which provides applications with complete documentation library functionality by simply adding a gem.

Gulp & Rails

Posted in July 2014 on the aTech Media blog

I’ve recently started using Gulp rather than the built-in asset pipeline in Rails. Gulp provides a fair amount of additional flexibility and functionality which I am very much enjoying.

Apple Push Notifications using HTTP

Posted in June 2014 on the aTech Media blog

I’ve recently been working on developing an iOS application for Sirportly  — a helpdesk product which we run & develop at aTech. As part of this application, it became necessary for...