Skip to content

Instantly share code, notes, and snippets.

View trm36's full-sized avatar

Taylor M trm36

View GitHub Profile
@calebhicks
calebhicks / Stack.swift
Last active June 22, 2018 16:29
A simple Core Data written in Swift. Inspired by the fantastic Core Data book by Florian Kugler and Daniel Eggert at https://www.objc.io/books/core-data/
//
// Stack.swift
//
import Foundation
import CoreData
class Stack {
static let sharedStack = Stack()
@jkhowland
jkhowland / Stack.h
Last active March 31, 2020 13:43
Simple Core Data - Stack.m
//
// Stack.m
//
// Created by Joshua Howland on 6/12/14.
// Copyright (c) 2014 DevMountain. All rights reserved.
//
#import <Foundation/Foundation.h>
@import CoreData;
@mbinna
mbinna / podforceupdate.sh
Created December 4, 2012 09:43
Clear CocoaPods cache, re-download and re-install all pods
#!/usr/bin/env bash
rm -rf "${HOME}/Library/Caches/CocoaPods"
rm -rf "`pwd`/Pods/"
pod update