I hereby claim:
- I am michaelnisi on github.
- I am nisi (https://keybase.io/nisi) on keybase.
- I have a public key whose fingerprint is A7B6 30CD 455E CB26 FA54 59D8 7D86 8537 BEE8 7307
To claim this, I am signing this object:
default 2019-07-17 15:33:36.771581 +0200 ReportCrash Process MyApp [24519] killed by jetsam reason per-process-limit |
// MARK: - Storing and Accessing Change Tokens | |
fileprivate extension UserDefaults { | |
fileprivate func setUUID(_ uuid: UUID, using key: String) { | |
self.set(uuid.uuidString, forKey: key) | |
} | |
fileprivate func uuid(matching key: String) -> UUID? { | |
guard let str = UserDefaults.standard.string(forKey: key) else { |
#!/usr/bin/env bash | |
set -o xtrace | |
SOURCE="${BASH_SOURCE[0]}" | |
if [[ -h $SOURCE ]]; then | |
SOURCE="$( readlink "$SOURCE" )" | |
fi | |
SOURCE_ROOT="${SOURCE_ROOT:-$( cd -P "$( dirname "$SOURCE" )/.." && pwd )}" |
./configure --without-javac --without-odbc --with-ssl=/opt/pkg |
Michael, | |
Hope you're well. I know i've been in touch in the past. | |
I appreciate that you are busy. The reason i'm reaching out is because i'm sure that you've heard the term NoSQL? | |
I want to help you understand how Riak fits in this space, and how as a NoSQL Key Value store we are powering online applications for some of the biggest companies worldwide, in a whole host of industries. | |
E.g - | |
William Hill |
import Foundation | |
let items: [Any?] = [0, [], "a", nil, "b", nil, "c"] | |
let strings = reduce(items, [String]()) { | |
if let string = $1 as? String { | |
return $0 + [string] | |
} else { | |
return $0 | |
} | |
} |
[auto_vacuum: 0] | |
[automatic_index: 1] | |
[cache_size: 250] | |
[checkpoint_fullfsync: 1] | |
[name: NOCASE, seq: 0] | |
[name: RTRIM, seq: 1] | |
[name: BINARY, seq: 2] | |
[compile_option: CURDIR] | |
[compile_option: ENABLE_FTS3] | |
[compile_option: ENABLE_FTS3_PARENTHESIS] |
I hereby claim:
To claim this, I am signing this object:
// Consume a JSON HTTP API in Swift | |
import Foundation | |
struct Feed: Printable { | |
let author: String? | |
let image: String? | |
let language: String? | |
let link: String? | |
let summary: String? |
git remote set-url origin [email protected]:user/repo.git |