Skip to content

Instantly share code, notes, and snippets.

@fbartho
fbartho / keybase.md
Created September 7, 2016 04:23
Keybase Proof

Keybase proof

I hereby claim:

  • I am fbartho on github.
  • I am fbartho (https://keybase.io/fbartho) on keybase.
  • I have a public key ASBi_0J2KRTAirbomlqcoJ_cyDLRbwneneb5MeMGl9qedwo

To claim this, I am signing this object:

@fbartho
fbartho / lazy_optional_ternary_fixit_bug.swift
Created July 21, 2016 21:42
Xcode8 beta 3: Nested Ternaries operating on optionals in a lazy-var initializer have a fixit that grabs the wrong block to fixup
class Original {
var opt1: String? = nil
var opt2: String? = nil
enum Foo : String {
case unknown
case one
case two
}
// Compile flags an error w/ fixit suggestion on line 11 relating to not using optionals directly as booleans
lazy var type: Foo = {
@fbartho
fbartho / xcode-toggle.bash
Last active August 29, 2015 14:27
Bash implementation
#!/bin/bash
`xcode-select -p | grep -i beta > /dev/null`
if [ $? -eq 0 ]
then
echo "Using beta. Switching to release."
sudo xcode-select -s /Applications/Xcode.app
else
echo "Using release. Switching to beta."
sudo xcode-select -s /Applications/Xcode-beta.app
@fbartho
fbartho / QuickStart-FBStackableURLCache.m
Last active December 15, 2015 19:58
Example integration of FBStackableURLCache
// Note: Not pictured here: logic specific to the system that nukes the UICache.db if we know the content is probably out of date
/**
* Make our base URL cache to the similar details as the standard default sharedURLCache in case someone is using it.
* From Apple Docs for NSURLCache:
* <li>Memory capacity: 4 megabytes (4 * 1024 * 1024 bytes)
* <li>Disk capacity: 20 megabytes (20 * 1024 * 1024 bytes)
* <li>Disk path: <nobr>(user home directory)/Library/Caches/(current application name)</nobr>
* <br>where:
* <br>user home directory is determined by calling