This serves as a base canary gist for @rwjblue.
A few useful links for the main source/gist are:
This serves as a base canary gist for @rwjblue.
A few useful links for the main source/gist are:
// Playground - noun: a place where people can play | |
import Foundation | |
typealias Byte = UInt8 | |
protocol GenericIntegerType: IntegerType { | |
init(_ v: Int) | |
init(_ v: UInt) | |
init(_ v: Int8) |
{% assign day = post.created | date: "%d" %} | |
{% assign positions = "4," | append: day | split: "," %} | |
{% assign i = positions.min | minus: 1 %} | |
{% assign suffixes = "st,nd,rd,th" | split: "," %} | |
{% assign dayth = day | append: suffixes[i] %} | |
{{ dayth }} |