Skip to content

Instantly share code, notes, and snippets.

View rtvenge's full-sized avatar

Ryan Tvenge rtvenge

View GitHub Profile
@rtvenge
rtvenge / Gruntfile.js
Last active August 29, 2015 13:56
A Gruntfile.js starting point for Grunt
/* package.json
{
"name": "PROJET_NAME",
"version": "4.0.0",
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-concat": "~0.3.0",
"grunt-contrib-uglify": "~0.2.7",
"grunt-contrib-imagemin": "~0.4.0",
"grunt-contrib-watch": "~0.5.3",

Contract Killer 3

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.

@rtvenge
rtvenge / .gitignore
Last active January 29, 2018 21:10
.gitignore (Wordpress)
*~
.DS_Store
.svn
.cvs
*.bak
*.swp
Thumbs.db
# wordpress specific
wp-config.php
@rtvenge
rtvenge / createSSHKey.sh
Created September 2, 2015 17:46
Create an SSH shortcut and key shell script.
#!/bin/bash
echo "Please enter username on server: "
read USER
echo "Please enter server host or IP address (ex: opticllc.com)"
read SERVER_HOST
echo "Please enter server name (aka ssh shortcut)"
read SERVER_NAME