Skip to content

Instantly share code, notes, and snippets.

View Dayjo's full-sized avatar

Joel Dayjo

View GitHub Profile
@Dayjo
Dayjo / ci-systems.md
Last active December 21, 2016 09:45
Research Notes on CI systems for Pallant

Requirements

  • Build Checks
  • Unit Testing
  • Behavior Testing
  • Deployment

Workflow / Environment changes

  1. Standardising and implementing testing procedures
@Dayjo
Dayjo / log.txt
Created September 20, 2016 16:17
HostGator Support Billing Chat Log
4:41:55 PM System Rober H has joined the chat!
4:42:37 PM Rober H Thank you for contacting live support! My name is Rober, please allow me a few moments while I pull up your account and research your initial questions provided before the chat began.
4:44:01 PM Rober H Hello do you need help with billing ?
4:44:10 PM dayjoaspen Hello, my accounts have been suspended due to billing failure, however when I went to go pay the bill, it appears I am being over billed. If you look at all previous invoices, I am being charged $34.95 per month + VAT which totals $41.94, however this month it is charging me $41.95 (the inc vat price) + VAT totalling $50.34, can you explain why this has changed?
4:45:18 PM dayjoaspen I was not consulted nor informed of any changes to billing
4:46:45 PM Rober H I will need to check your billing account here in order to properly assist you further, are you able to verify ?
4:47:23 PM dayjoaspen I tried, but the login failed, I can try again.
4:47:35 PM dayjoaspen There.
4:49:10 PM Rober H
@Dayjo
Dayjo / todo.md
Last active January 14, 2016 21:49
Todo list for game

Game

  • Colourising image for different times of day
  • Responsive game? Different screen sizes, stretch or more view?
  • Put the game engine online
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
</body>
</html>
@Dayjo
Dayjo / _introduction.md
Last active December 27, 2015 18:59
WDK Shop Documentation

WDK Shop Templates

WDKing Shop Templates is really no more difficult than WDKing a template.

The Shop WDK currently consists of three different templates;

  • Category
  • Category Product
  • Product

Category

@Dayjo
Dayjo / netflix.css
Created October 30, 2013 21:33
Make Netflix have proper horizontal scrolling for touch mice (no slow marquee or arrows). Infinite scrolling not yet implemented, maybe with a Tampermonkey script.
/*
* Netflix proper horizontal scrolling.
* Add this to your css browser extension like Stylish (for Chrome)
*/
.slider {
overflow-x: auto;
}
.slider .previous, .slider .next {
display: none !important;
@Dayjo
Dayjo / gocardless-events.md
Created November 19, 2015 11:29
gocardless events

Mandate actions

created

The mandate has been created.

submitted

The mandate has been submitted to the banks, and should become active in a few days, unless the bank declines the request.

active

The mandate has been successfully set up by the customer's bank.

@Dayjo
Dayjo / _link.md
Last active November 18, 2015 09:01
Proposal for adding _link to API resources
@Dayjo
Dayjo / Default (OSX).sublime-keymap -- User
Created July 17, 2012 09:25 — forked from coldnebo/Default (OSX).sublime-keymap -- User
Sublime Text 2 fix for OSX home/end keys
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol"} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol"} },
{ "keys": ["shift+end"], "command": "move_to", "args": {"to": "eol", "extend": true} },
{ "keys": ["shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true } }
@Dayjo
Dayjo / bling.js
Last active August 29, 2015 14:23 — forked from paulirish/bling.js
/* bling.js */
window.$ = document.querySelectorAll.bind(document)
Node.prototype.on = window.on = function (name, fn) {
this.addEventListener(name, fn)
}
NodeList.prototype.__proto__ = Array.prototype