Skip to content

Instantly share code, notes, and snippets.

View kieranjones's full-sized avatar

Kieran Jones kieranjones

  • Atlassian
  • Sydney, Australia
View GitHub Profile

[link to Jira Ticket](paste here)

Description

Please include a summary of the change and which issue is fixed. Please also include relevant implementation details and context. List any dependencies that are required for this change.

Related PRs

Type of change

@kieranjones
kieranjones / video-file-loop.js
Created June 26, 2018 03:55
Loop HTML5 video file in browser
var video = document.getElementsByTagName('video')[0];
video.setAttribute('loop', 'true');
video.play();
@kieranjones
kieranjones / react_confetti.js
Last active February 7, 2017 07:45
React Confetti Canvas
// For jsbin
// noprotect
/* Written by Kieran Jones on 07/02/2017
Based on https://codepen.io/linrock/pen/Amdhr
Live demo here http://jsbin.com/zejihirewu/1/edit?js,output
MIT License
*/
class CanvasComponent extends React.Component {
constructor(props, context) {
super(props, context);
@kieranjones
kieranjones / bulletproof-git-workflow.md
Created February 18, 2016 21:55 — forked from db/bulletproof-git-workflow.md
bulletproof git workflow

Bulletproof Git Workflow

start working

git checkout master
git pull
git checkout -b feature/my-work
# edit your files