Skip to content

Instantly share code, notes, and snippets.

View asmallteapot's full-sized avatar
😴
😴

Ellen Teapot asmallteapot

😴
😴
View GitHub Profile
@asmallteapot
asmallteapot / Calendar+Divide.swift
Created June 18, 2017 16:28
Code koan: Dividing a `DateInterval` into sub-intervals by `Calendar.Component`s in Swift 4
extension Calendar {
func divide(interval dividend: DateInterval, by component: Calendar.Component, value divisor: Int) -> [DateInterval]? {
var intervals: [DateInterval] = []
var previousDate = dividend.start
while
let nextDate = self.date(byAdding: component, value: divisor, to: previousDate),
dividend.contains(nextDate)
{
let interval = DateInterval(start: previousDate, end: nextDate)
@asmallteapot
asmallteapot / URLNormalization.swift
Last active April 17, 2023 01:12
Code koan: Normalizing URLs in Swift 4
// https://en.wikipedia.org/wiki/URL_normalization
import Foundation
extension URLComponents {
typealias NormalizationRule = (_ components: URLComponents) -> URLComponents
func normalize(with rule: NormalizationRule) -> URLComponents {
return rule(self)
}
@asmallteapot
asmallteapot / Dictionary.Value+RangeReplaceableCollection.swift
Last active March 28, 2023 07:40
Swift: Append an element to an array in a dictionary value, creating the array/value if needed
import Foundation
extension Dictionary where Value: RangeReplaceableCollection {
public mutating func append(element: Value.Iterator.Element, toValueOfKey key: Key) -> Value? {
var value: Value = self[key] ?? Value()
value.append(element)
self[key] = value
return value
}
}
@asmallteapot
asmallteapot / Gemfile
Created May 19, 2017 20:42
Building nokogiri on macOS Sierra using bundler and homebrewed libxml2
source 'https://rubygems.org'
gem 'nokogiri'
@asmallteapot
asmallteapot / ASTSafeCast.m
Last active March 31, 2016 23:19
Safe Casting in Objective-C with macros.
#define ASTCastInline(valueIn, ObjectType) \
([valueIn isKindOfClass:[Type class]] ? (Type *)valueIn : nil)
#define ASTCast(valueIn, ObjectType, valueOut) \
ObjectType *valueOut = ([valueIn isKindOfClass:[ObjectType class]] ? (ObjectType *)valueIn : nil);
extension UITraitEnvironment {
func stubTraitCollection(traitCollection: UITraitCollection) {
let partialMock = OCMockObject.partialMockForObject(self)
let traitCollection = UITraitCollection()
partialMock.stub().andReturn(traitCollection).traitCollection()
self.traitCollectionDidChange(nil)
}
func stubHorizontalSizeClass(horizontalSizeClass: UIUserInterfaceSizeClass) {
@asmallteapot
asmallteapot / 01-usage.swift
Last active March 7, 2019 01:55
An attempt at making UITableView cell reuse a bit more idiomatic in Swift.
@objc class ExampleTableCell: UITableViewCell, ReuseableObject, NibLoadable {}
@objc class ExampleViewController: UITableViewController {
required init?(coder aDecoder: NSCoder) {
fatalError("init(coder:) has not been implemented")
}
override init(style: UITableViewStyle) {
@asmallteapot
asmallteapot / EnumerateWithBlock.m
Last active January 23, 2016 01:00
Enumerate the values of an NS_ENUM using a block.
typedef NS_ENUM(NSUInteger, ASTGem) {
ASTGemUnknown = 0,
ASTGemGarnet,
ASTGemAmethyst,
ASTGemPearl,
ASTGemRose,
};
static NSString * const ASTGemNames[] = {
@asmallteapot
asmallteapot / Logger.swift
Created December 7, 2015 18:51
A minimal generic logger class in Swift.
import Foundation
struct LoggerMessage<T> {
let date: NSDate
let value: T
}
class Logger<T> {
@asmallteapot
asmallteapot / ASTAssertStack.m
Created October 7, 2015 17:52
Function for asserting that a code path isn’t called from a subclass of a given class.
void ASTAssertNotCalledFromSubclassOfClass(Class doNotCallFromThisClass) {
NSString *bundleName = [[[NSBundle mainBundle] infoDictionary] objectForKey:(__bridge NSString *)kCFBundleNameKey];
for (NSString *symbol in [NSThread callStackSymbols]) {
if ([symbol containsString:bundleName]) {
NSRange openBracketRange = [symbol rangeOfString:@"["];
if (openBracketRange.location != NSNotFound) {
NSRange searchRange = NSMakeRange(openBracketRange.location, (symbol.length - openBracketRange.location));
NSRange nextSpaceRange = [symbol rangeOfString:@" " options:0 range:searchRange];
if (nextSpaceRange.location == NSNotFound) {
// well, this shouldn't happen…