Skip to content

Instantly share code, notes, and snippets.

View jsplink's full-sized avatar
🖤

John jsplink

🖤
  • San Francisco, CA
View GitHub Profile
### Keybase proof
I hereby claim:
* I am jsplink on github.
* I am jsplink (https://keybase.io/jsplink) on keybase.
* I have a public key ASBLSHB7lnI7DrC6XVyXficnv6v3ryY6mTOg3-bjQrlSYwo
To claim this, I am signing this object:
Time: Doors open at 4:40 PM, play starts at 5:00 PM.
Format: No Limit Texas Hold'em, One-Table Freeze-out Tournament.
Plan is to play 2 tournaments.
Requirements: At least 5 people are needed for the tournament to go down. Please comment on the event page to mention your attendence, as there is a six player maximum. Players will be notified two days ahead of time if there is not enough interest.
Tournament 1: $15 buy-in receives $1600 in tournament chips. Rounds last 10 min each. When tourney is heads-up, rounds will be 6 min.
Tournament 2: $32 ($2 for bounty on Tournament 1 winner) buy-in receives $2600 in tournament chips. Rounds last 15 min. When heads-up, 10 min.
db-uri = "postgres://postgres:postgres_password@postgres-docker:5432/myappdb"
db-schema = "myappschema"
db-anon-role = "public"
db-pool = "10"
server-host = "127.0.0.1"
server-port = "3000"
jwt-secret = "fewjiajfewaijfoweja"
secret-is-base64 = False
# vim: ft=tmux
# index start from 1
set -g base-index 1
set -g pane-base-index 1
# 256 color
set -g default-terminal "screen-256color"
set -g terminal-overrides 'uxterm*:smcup@:rmcup@'
# prefix key
SOFTWARE CONSULTING AGREEMENT
THIS AGREEMENT is entered into on <contract date> by and between Avie, LLC, (hereinafter "Developer") and <client company>, (hereinafter "Company").
RECITALS
WHEREAS, Company wishes to retain Developer to develop certain <software type> software (hereinafter defined and referred to as “Software”); and
WHEREAS, Developer has agreed to develop Software for the Company according to the terms and conditions contained herein.
@jsplink
jsplink / Sample Contract - Hours Only
Created July 26, 2016 15:56 — forked from jboeke/Sample Contract - Hours Only
Sample Contract - Hours Only
This Independent Consultant Agreement (the "Agreement") is entered into on <date> by and between <your name or company name> (the "Consultant"), and <client name> (the "Company").
RECITALS
WHEREAS, the Company is in need of assistance in the area of computer programming services; and WHEREAS, Consultant has agreed to perform consulting work for the Company in computer programming services and other related activities for the Company;
NOW, THEREFORE, the parties hereby agree as follows:
1. Consultant's Services. Consultant shall be available and shall provide to the Company professional services in the area of computer programming ("Consulting Services") as needed and requested. The parties estimate that Consulting Services will total <estimated hours, if necessary> hours. Consultant intends to average <weekly hours, if necessary> hours of work per week so as to complete Consulting Services in a time frame acceptable to Company.
@jsplink
jsplink / .Xauthority.sh
Last active August 30, 2015 00:20
xorg.conf
rm /home/{{user}}/.Xauthority
HOST={{hostname}};
key=`perl -e 'srand; printf int(rand(100000000000000000))'`
key=$key$key
xauth add ${HOST}/unix:0 . $key
[merge]
tool = extMerge
[mergetool "extMerge"]
cmd = extMerge "$BASE" "$LOCAL" "$REMOTE" "$MERGED"
trustExitCode = false
[diff]
external = extDiff
@jsplink
jsplink / extDiff
Created June 5, 2015 21:45
/usr/local/bin/extDiff
#!/bin/sh
[ $# -eq 7 ] && /usr/local/bin/extMerge "$2" "$5"
@jsplink
jsplink / extMerge
Created June 5, 2015 21:40
/usr/local/bin/extMerge
#!/bin/sh
/Applications/p4merge.app/Contents/MacOS/p4merge $*