Skip to content

Instantly share code, notes, and snippets.

@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
@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 / 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 / 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 / StencilHello.swift
Created March 16, 2017 09:18
Stencil -- basic templates get no output?
// ???
import Stencil
let environment = Environment()
let context = ["name": "kyle"]
print(try environment.renderTemplate(string: "Hello {{ name }}", context: context))
/**
Produces output:
@fbartho
fbartho / swiftformat_noself.sh
Created August 4, 2017 17:33
Example of a Swift file that breaks swiftformat --self remove
swiftformat --self remove tmp.swift
@fbartho
fbartho / 0. Synology RAID Expansion-Resync Performance.md
Last active April 17, 2024 17:46
Walkthrough of what I did to increase performance on my Synology NAS box during an expansion, and afterwards.

Performance on Synology RAIDs

(especially while expanding)

Warning: The exact commands may not match for your particular linux OS / Synology(NAS) device. I had to customize the commands after exploring my particular system's setup.

If you're new to linux, or this is a new piece of hardware / a new synology device, jump down to the section called "Inspecting a setup"

Contents

@fbartho
fbartho / Feedback.md
Created April 8, 2018 19:17
noahhaasis/conwaysGameOfLife Feedback on Request

noahhaasis/conwaysGameOfLife Feedback

Notes:

  • Most of my feedback is going to be superficial and possibly wrong!
  • I'm not an active expert in C.
  • I haven't used the SDL toolkit since college.
  • I didn't run this code, I simply looked at it!

README

let arr = [1, 2, 3, 4, 5]
print("test")
func someAsyncAPI(_ entry: Int, completion: @escaping (Int) -> Void) {
let sleepTime = max(0,3-entry)
DispatchQueue.global().asyncAfter(deadline: .now() + 0.1 * Double(sleepTime)) {
completion(entry * -1);
}
}
@fbartho
fbartho / openx_bash_for_ios
Last active October 30, 2018 18:19 — forked from johngraham262/openx_bash_for_ios
A simple bash script that will open a `.xcworkspace` if it exists in the current directory, otherwise a `.xcodeproj` if it exists, otherwise nothing. It will print the name of the file that is being opened. When using Cocoapods with iOS apps, a second file is created with the `MyProject.xcworkspace` name, alongside the `MyProject.xcproject` file…
# Add the following lines of code to your `~/.bash_profile`,
# and then run `source ~/.bash_profile` to be able to execute
# this from the command line.
# Originally from: https://gist.github.com/johngraham262/6546595
# Spaces-in-filenames from: https://gist.github.com/johngraham262/6546595#gistcomment-1823783
openx() {
fileToOpen='';
find . -maxdepth 1 -name *.xcworkspace -print0 | while IFS= read -r -d '' file; do
fileToOpen=$file
done