Skip to content

Instantly share code, notes, and snippets.

View lukeparkinson's full-sized avatar

Luke Parkinson lukeparkinson

View GitHub Profile

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

import Vue from 'vue'
import App from './App.vue'
import Modal from './Modal.vue'
import VueResource from 'vue-resource'
import moment from 'moment'
import bytes from 'bytes'
Vue.use(VueResource);
@lukeparkinson
lukeparkinson / mixins.scss
Created April 8, 2016 18:49 — forked from AlexPashley/mixins.scss
SASS: Mixins for CSS
/* MIXINs */
@mixin transition( $val : ease 0.5s ) {
-webkit-transition: $val;
-moz-transition:$val;
-o-transition:$val;
-ms-transition:$val;
transition:$val;
}
@mixin text-shadow( $top: 3px, $left: 3px, $blur: 3px , $colour: #333 ) {
@lukeparkinson
lukeparkinson / wp-query-ref.php
Created February 15, 2016 11:15 — forked from luetkemj/wp-query-ref.php
WP: Query $args
<?php
/**
* WordPress Query Comprehensive Reference
* Compiled by luetkemj - luetkemj.com
*
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters
* Source: https://core.trac.wordpress.org/browser/tags/3.9/src/wp-includes/query.php
*/
$args = array(