“...I've been working since 2008 with Ruby / Ruby on Rails, love a bit of Elixir / Phoenix and learning Rust. I also poke through other people's code and make PRs for OpenSource Ruby projects that sometimes make it. Currently working for InPay who are based in Denmark...”

Rob Lacey
Senior Software Engineer, Copenhagen, Denmark

grab Ruby Objects by object_id

Are you ever frustrated that you cannot just grab objects in the console to see what the hell they are and what methods you can call on them?

2.2.3 :001 > ArticlesController
#<ActiveSupport::Callbacks::Callback:0x007fdb1e58a010>
70289541845000
#<ActiveSupport::Callbacks::Callback:0x007fdb1e3104d8>
70289540547180
#<ActiveSupport::Callbacks::Callback:0x007fdb1ed30058>
70289545855020
#<ActiveSupport::Callbacks::Callback:0x007fdb1e30b708>
70289540537220
=> ArticlesController 
2.2.3 :002 > ObjectSpace._id2ref(70289541845000)

Lazy...

It is my aim in 2016 to stop being lazy. It’s all too easy to let your skill set slide, and while I enjoy what I do every day I haven’t explored every language, framework or technology enough to know whether I am missing out on anything I am interested in. So starting from tomorrow morning I’ll be taking a stab a some new projects to advance my skills in probably the following, Python, R, Java / Android app development, Swift for iOS, AngularJS for Desktop Development with Electron, Unity / C#, Corona SDK / Lua, Raspberry Pi PSX Emulation, Arduino development to measure how much our cats are using their cat wheel (no really). Expect the Lab to fill up with guff. Wish me luck or don’t.

Three things that were invaluable today

Quick and dirty database migration on the console

When a database migration failed to roll back properly, stripping one column but not all, we had to put back the original column without changing the migration and re-running. It always feels very dangerous when a multipart migration fails halfway through. So….you can actually call migration commands on ActiveRecord::Migration directly, just be careful to test in development first as accidents can and will happen.

Rails pro >> ActiveRecord::Migration.add_column :somethings, :thing_file_name, :string, before: :thing_file_name
-- add_column(:somethings, :thing_file_name, :string, {:before=>:splash_content_type})
   (4838.6ms)  ALTER TABLE `somethings` ADD `thing_file_name` varchar(255)

Cherry picking changes in a different branch with Git.

I had to give up on a recent branch because refactoring had caused more problems than it intended to solve. Without wanting to start over I was able to pick the files that I cared about individually rather than sifting through and reverting parts of a previous commit.

git checkout feature/somefeature -- config/blah.yml

While I’m there, ever wanted to ditch your local changes in a conflict over the merged in changes from another branch?

git checkout --theirs config/routes.rb

Rails partials as layouts

Ever had a Rails partial and wanted to re-use it in a specific situation but with a small change? A partial can also be used as a layout, it appears a partial can be a layout that takes a block.

app/views/somethings/_dave.html.haml

= form_for(@dave) do |f|
  = f.text_field :full_name

app/views/somethings/thing.html.haml

= render partial: 'dave'

I really want to add an way to to re-use the form and add to it. How about this?

app/views/somethings/_dave.html.haml

= form_for(@dave) do |f|
  - if block_given?
    = yield
  = f.text_field :full_name

app/views/somethings/thing.html.haml

= render layout: 'dave' do
  %p A MESSAGE TO PLONK AT THE TOP OF THE FORM

TBG Secret Santa

Another mini-project. A Secret Santa app, Facebook login, address data collection, will then select a suitable Gift Recipient, mark gifts as shipped and reciprocol gifts received.

https://iplayred.co.uk/secret_santa

Hosted on https://iplayred.co.uk

Mammothfest Facebook Tab / Spotify Playlist

Created just a quick widget, although it did require buying an SSL key in order to host the app through Facebook. The playlist itself was tirelessly compiled by Fox James for the MammothFest 2015 line-up.

<!-- full width 810px -->
<iframe src="https://robl.me/mammothfest" width="810" height="920"></iframe>

<!-- width limited to 560px, width 20px border -->
<iframe src="https://robl.me/mammothfest?width=560" width="580" height="920"></iframe>

Just a demo of it in action. https://www.facebook.com/uncleanmusic/app_1686134591618166
It can be installed via https://www.facebook.com/dialog/pagetab?app_id=1686134591618166&redirect_uri=https://robl.me/appadded

This really just boils down to using the Spotify embedding as below served via Facebook.

<iframe allowtransparency="true" frameborder="0" height="600" src="https://embed.spotify.com/?uri=spotify:user:mammothfest:playlist:0OJn0Ky6GjedhLINTjZ2Fe" width="520"></iframe>

update embed test

VEVO embedding

Raging Speedhorn PledgeMusic project


Raging Speedhorn are back and looking to do a new album, best way to test if embedding is working I suppose. https://www.pledgemusic.com/projects/raging-speedhorn

The REAL Pixels movie

Petty Annoyance of the day #1

Methods that return different object types given different input. I understand why this does what it does but when you forget the 2nd argument and an Enumerator arrives unexpectedly….

2.1.2 :068 > 'somestring'.gsub(':').class
 => Enumerator 
2.1.2 :069 > 'somestring'.gsub(':','').class
 => String

Not sure why its Enumerator

2.1.2 :085 > 'string'.gsub(/(s)trin(g)/).each do |blah|
2.1.2 :086 >     puts blah
2.1.2 :087?>   end
string
2.1.2 :099 > 'string'.gsub('staobasf').map(&:object_id)
 => [] 
2.1.2 :100 > 'string'.gsub('staobasf').map
 => #<Enumerator: #<Enumerator: "string":gsub("staobasf")>:map>

I am pretty sure I don’t need to know but hey.