Skip to content

Instantly share code, notes, and snippets.

@TellowKrinkle
TellowKrinkle / TatsuTags.sublime-syntax
Last active June 27, 2017 07:44
A sublime-syntax file for Tatsumaki's tag system
%YAML 1.2
---
# See http://www.sublimetext.com/docs/3/syntax.html
file_extensions:
- tatsu
scope: text.tatsu
contexts:
textColoring:
# Improperly copied emoji
- match: "(<):[^:]+:(\\d+>)"
@TellowKrinkle
TellowKrinkle / IntStringDictionary.swift
Created June 9, 2017 21:20
UInt64 vs String Access Times
import Foundation
func benchmark(_ function: () -> ()) -> Double {
let start = DispatchTime.now()
function()
let elapsed = Double(DispatchTime.now().uptimeNanoseconds - start.uptimeNanoseconds) / 1_000_000_000
return elapsed
}
let count = 10_000_000