Recent Posts

New Build: Stacked Liquid Cooled Mini ITX Powerhouse
My new build is finally complete! Mini ITX motherboard with liquid cooled i7 4790 & stacked out memory (and case lighting of course!)
Volkswagen Congress Hearing
Listen to 1:11:40… “This was a couple of software engineers who put this in for whatever reason,” (Source: https://www.youtube.com/)

Great Scottish Run 10k
Layer Systems team snapped just before the Great Scottish Run 10k
Happy 30th Birthday Claire Kewney
Happy 30th birthday to my lil’ sis! (via https://www.youtube.com/watch?v=1UC569TZeTQ) (Source: https://www.youtube.com/)
jQuery Change Persister for DOM text inputs
/* jQuery tbChangePersister v1.0.0 – April 2015 by Nick Kewney */ (function ($) { $.fn.tbChangePersister = function (next, defaultDelay, domStorageSuffix) { return this.each(function () {
Extracting a price from a VARCHAR in T-SQL
CREATE FUNCTION [dbo].[fn_extract_currency_from_string] (@string VARCHAR(1000)) RETURNS VARCHAR(255) AS BEGIN DECLARE @var VARCHAR(1000) = @string DECLARE @len INT = LEN(@var) DECLARE @start_position INT ,@end_position INT DECLARE