Skip to content

Instantly share code, notes, and snippets.

View antz29's full-sized avatar

John Le Drew antz29

View GitHub Profile
We can't make this file beautiful and searchable because it's too large.
Vehicle Line,Date,Destination,Assembly Offine,Gate Release,Shipped,Compound In,Compound Out,Dealer Delivered
GALAXY CD390 LMV,18 Jun 2019,Italy,22,20,522,647,879,14 Sep 2019
MONDEO CD391 EU,6 Apr 2019,Spain,41,23,691,708,729,7 Jul 2019
FIESTA B479,5 Apr 2019,Netherlands,46,22,1168,906,678,1 Aug 2019
GALAXY CD390 LMV,4 May 2019,Portugal,21,24,849,1171,118,3 Aug 2019
MUSTANG (S550),20 Apr 2019,Hungary,16,19,882,766,457,19 Jul 2019
B460 TOURNEO COURIER,3 Apr 2019,Lithuania,18,16,366,1176,845,13 Jul 2019
P375 RANGER MCA,22 May 2019,Ireland,34,12,610,659,521,7 Aug 2019
ECOSPORT B515 MCA,28 Apr 2019,Latvia,44,15,393,603,885,18 Jul 2019
P375 RANGER MCA,17 Jun 2019,Portugal,36,24,1146,841,748,12 Oct 2019
C:\Users\jledrew\Documents\Code\hello-beautiful\hello-pwa>npm run test
> pwa-starter-kit@0.9.0 test C:\Users\jledrew\Documents\Code\hello-beautiful\hello-pwa
> npm run test:unit && npm run test:integration
> pwa-starter-kit@0.9.0 test:unit C:\Users\jledrew\Documents\Code\hello-beautiful\hello-pwa
> tsc && polymer test --module-resolution=node --npm
@antz29
antz29 / keybase.md
Last active July 19, 2019 21:58
keybase.io proof

Keybase proof

I hereby claim:

  • I am antz29 on github.
  • I am antz29 (https://keybase.io/antz29) on keybase.
  • I have a public key ASCZk02Doe36fX0dbIfkYtNHzsHj3IM9lKq_noM8KrqMgAo

To claim this, I am signing this object:

INFO global: Vagrant version: 1.2.2
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.2.2/plugins/kernel_v1/plugin.rb
INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.2.2/plugins/hosts/bsd/plugin.rb
INFO manager: Registered plugin: BSD host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.2.2/plugins/hosts/opensuse/plugin.rb
INFO manager: Registered plugin: OpenSUSE host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.2.2/plugins/hosts/windows/plugin.rb
INFO manager: Registered plugin: Windows host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.2.2/plugins/hosts/freebsd/plugin.rb
@antz29
antz29 / js-sdk.min.js
Created September 10, 2012 14:46 — forked from dingram/js-sdk.min.js
A minimalist way of including social JavaScript SDKs into a page. Includes Google Analytics, Twitter widgets, Facebook, and Google +1
window.___gcfg={lang:'en-GB'};var _gaq=_gaq||[];_gaq.push(['_setAccount','UA-123456-9']);_gaq.push(['_trackPageview']);!function(d,s){var st=d.getElementsByTagName(s)[0],j=function(i,u){d.getElementById(i)&&return;var js=d.createElement(s);js.id=i;js.async=true;js.src=u;st.parentNode.insertBefore(js,st)};setTimeout(function(){j("twitter-wjs","//platform.twitter.com/widgets.js");j("facebook-jssdk","//connect.facebook.net/en_GB/all.js#xfbml=1");j("gplusone-sdk","https://apis.google.com/js/plusone.js")}, 0);j("ga-sdk",('https:'==d.location.protocol?'https://ssl':'http://www')+'.google-analytics.com/ga.js')}(document,'script');
@antz29
antz29 / build.xml
Created November 13, 2010 09:19
Example of using JS Builder
<?xml version="1.0" encoding="UTF-8"?>
<project name="my-project" basedir="." default="build">
<property name="src.dir" value="src" />
<property name="build.dir" value="build" />
<property name="jsbuilder" location="../build/jsbuilder.jar" />
<!-- Create the jsbuilder task -->
<taskdef name="jsbuilder" classname="org.antz29.jsbuilder.Builder" classpath="${jsbuilder}" />
@antz29
antz29 / frame.htm
Created July 27, 2010 11:45
Setting the height of an IFRAME onload.
<body>
<h1>Loading...</h1>
<h1>Loading...</h1>
<h1>Loading...</h1>
<h1>Loading...</h1>
<h1>Loading...</h1>
<h1>Loading...</h1>
<h1>Loading...</h1>
<h1>Loading...</h1>
<h1>Loading...</h1>
@antz29
antz29 / calculate_age.php
Created July 26, 2010 09:43
Simple function using PHP DateTime object to calculate an exact age from a DOB.
<?php
function calculateAge($dob,$in_format="d/m/Y",$out_format="%y years, %m months,$
{
$dob = DateTime::createFromFormat($in_format, $dob);
$int = $dob->diff(new DateTime());
return $int->format($out_format);
}