Skip to content

Instantly share code, notes, and snippets.

View vipickering's full-sized avatar
🦧
Contemplating things

Vincent Pickering vipickering

🦧
Contemplating things
View GitHub Profile
@vipickering
vipickering / article.text.txt
Last active December 21, 2015 23:29
Vincentp: Blog Stub
Title:
----
HeaderImage:
----
TwitterCardImage:
----
TheDate:
----
Text:
@vipickering
vipickering / html.inspector.html
Created August 30, 2013 16:39
HTML: HTML Inspector Stub
<script src="http://cdnjs.cloudflare.com/ajax/libs/html-inspector/0.4.1/html-inspector.js"></script>
<script> HTMLInspector.inspect()</script>
@vipickering
vipickering / isEven.js
Created August 31, 2013 08:50
Javascript: isEven Function
function isEven(num) {
if(num !== false && num !== true && !isNaN(num)) {
return num % 2 === 0;
} else return false;
}
@vipickering
vipickering / removeletters.js
Created September 12, 2013 09:33
Javascript: Remove Letters RegEx
//remove letters from string
myString = myString.replace(/\D/g,'');
@vipickering
vipickering / modulepattern.js
Created September 12, 2013 10:08
Javascript: Module Pattern
var myNamespace = (function () {
var myPrivateVar, myPrivateMethod;
// A private counter variable
myPrivateVar = 0;
// A private function which logs any arguments
myPrivateMethod = function( foo ) {
console.log( foo );
@vipickering
vipickering / Sublime: CSS Comb Settings
Created September 16, 2013 15:52
CSScomb.sublime-settings
{
"custom_sort_order": true,
"sort_order": [
"position",
"float",
"clear",
"top",
"left",
"bottom",
"right",
@vipickering
vipickering / MultiMarkdown.sublime-settings
Created September 23, 2013 15:30
Sublime: Syntax Specific GB Dictionary
{
"spell_check": true,
"dictionary": "Packages/Language - English/en_GB.dic"
}
@vipickering
vipickering / MultiMarkdown.sublime-settings
Created September 23, 2013 16:02
Sublime: Multi Markdown Settings
{
// Which file extensions go with this file type?
"extensions":
[
"md",
"mdown",
"mdwn",
"mmd",
"txt"
],
@vipickering
vipickering / vinnyterminaltheme.zsh-theme
Created September 24, 2013 10:23
Terminal: Zsh Theme Setup
function git_prompt_info() {
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
echo "$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_PREFIX$(current_branch)$ZSH_THEME_GIT_PROMPT_SUFFIX"
}
function get_pwd() {
print -D $PWD
}
function put_spacing() {

Contract Of Work

Revised date: 07/11/2012

Between us [company name] and you [customer name]

Summary:

We’ll always do our best to fulfil your needs and meet your expectations, but it’s important to have things written down so that we both know what’s what, who should do what and when, and what will happen if something goes wrong. In this contract you won’t find any complicated legal terms or long passages of unreadable text. We’ve no desire to trick you into signing something that you might later regret. What we do want is what’s best for both parties, now and in the future.