Skip to content

Instantly share code, notes, and snippets.

View jkereako's full-sized avatar

Jeff Kereakoglow jkereako

View GitHub Profile
import Foundation
class Dynamic<T> {
var bind :(T) -> () = { _ in }
var value :T? {
didSet {
bind(value!)
}
@jkereako
jkereako / .git-commit-template.txt
Last active August 29, 2015 14:16 — forked from Linell/.git-commit-template.txt
A modified version of Sparkbox's Git commit template.
#<Type>: <subject>
#<body>
#-------------------------------------------------------------------------------
#<footer>
#-- Commit types
# - Add; a new file
# - Chore; files which are neither code nor documentation (i.e. .gitignore)
@jkereako
jkereako / Contract Killer 3.md
Last active January 21, 2021 20:22 — forked from malarkey/Contract Killer 3.md
This is a more serious version of Contract Killer 3. Some language and provisions were taken from a lawyer-speak contract and injected here.

date

Identification of parties

This agreement is made between customer name ("you") of company name located at customer address and developer name ("us") of developer's company located at company address.

Purpose of agreement

You desire to retain us as an independent contractor to develop the name of application (the "application") described in the section, Technical specifications.

We are ready, willing and able to undertake the development of the application and agree to do so under the terms and conditions set forth in this agreement.

@jkereako
jkereako / wpcom-sitemap.php
Last active December 20, 2015 03:29 — forked from mjangda/wpcom-sitemap.php
Fixes a few bugs.
<?php
/**
* Generate sitemap files in base XML as well as popular namespace extensions
*
* @author Automattic
* @version 2.0
* @link http://sitemaps.org/protocol.php Base sitemaps protocol
* @link http://www.google.com/support/webmasters/bin/answer.py?answer=74288 Google news sitemaps
*/