Skip to content

Instantly share code, notes, and snippets.

View codyspring's full-sized avatar

Cody Spring codyspring

View GitHub Profile
@codyspring
codyspring / Contract Killer 3.md
Created May 22, 2016 02:53
The latest version of my ‘killer contract’ for web designers and developers

Contract Killer

The popular open-source contract for web professionals by Stuff & Nonsense

  • Originally published: 23rd December 2008
  • Revised date: March 15th 2016
  • Original post

@codyspring
codyspring / Three Wise Monkeys.md
Created May 22, 2016 02:54
Three Wise Monkeys (NDA)

Date: [date]

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

Summary:

In short; neither of us will share any confidential information about each-other, by any means, with anyone else.

What’s confidential information?

@codyspring
codyspring / gulpfile.js
Created December 4, 2017 21:22
Statamic & Laravel Mix with Bootstrap/FontAwesome
const elixir = require('laravel-elixir')
const config = require('./package.json')
elixir(mix => {
mix.sass('./assets/styles/main.scss', `./css/${config.name}.css`)
mix.webpack('./assets/scripts/main.js', `./js/${config.name}.js`)
mix.copy('node_modules/font-awesome/fonts', 'fonts')
mix.browserSync({
proxy: `${config.name}.dev`,