Skip to content

Instantly share code, notes, and snippets.

View odonckers's full-sized avatar

Owen Donckers odonckers

View GitHub Profile
@odonckers
odonckers / UINavigationBarWithSubtitle.swift
Last active February 20, 2017 17:46 — forked from nazywamsiepawel/UINavigationBarWithSubtitle.swift
UINavigationBar with subtitle / swift
func setTitle(title: String, titleColor: UIColor, titleSize: Int, subtitle: String, subtitleColor: UIColor, subtitleSize: Int) -> UIView {
let titleLabel = UILabel(frame: CGRect(x: 0, y: 0, width: -5, height: 0))
titleLabel.backgroundColor = UIColor.clear
titleLabel.textColor = titleColor
titleLabel.font = UIFont.boldSystemFont(ofSize: CGFloat(titleSize))
titleLabel.text = title
titleLabel.sizeToFit()
let subtitleLabel = UILabel(frame: CGRect(x: 0, y: 18, width: 0, height: 0))
@odonckers
odonckers / xcode_ramdisk.sh
Created July 8, 2016 21:07 — forked from derjohng/xcode_ramdisk.sh
Create a RAM disk for using with XCode, with Umount disks method
#!/bin/sh
# Create a RAM disk with same perms as mountpoint
# Script based on http://itux.idev.pro/2012/04/iservice-speed-up-your-xcode-%D0%BD%D0%B5%D0%BA%D0%BE%D1%82%D0%BE%D1%80%D1%8B%D0%B5-%D1%81%D0%BF%D0%BE%D1%81%D0%BE%D0%B1%D1%8B/ with some additions
# Usage: sudo ./xcode_ramdisk.sh start
USERNAME=$(logname)
TMP_DIR="/private/tmp"
RUN_DIR="/var/run"