I hereby claim:
- I am michaelmcguire on github.
- I am monocularvision (https://keybase.io/monocularvision) on keybase.
- I have a public key ASBerh7hoJfFbG-pSI1rV9GRG4qazNdsQZ0yqndkIbENkAo
To claim this, I am signing this object:
import SwiftUI | |
import PlaygroundSupport | |
/* lldb Crash: | |
The LLDB RPC server has crashed. The crash log is located in ~/Library/Logs/DiagnosticsReports and has a prefix 'lldb-rpc-server'. Please file a bug and attach the most recent crash log. | |
*/ | |
let imageContent = HStack { | |
Image(systemName: "ellipsis").resizable().aspectRatio(contentMode: .fit) | |
} | |
PlaygroundPage.current.setLiveView(imageContent.frame(width: 500, height: 500)) |
I hereby claim:
To claim this, I am signing this object:
docker build \ | |
-t monocularvision/swift-development:2017-07-28-a \ | |
--build-arg=SWIFT_BRANCH=development \ | |
--build-arg SWIFT_VERSION=swift-DEVELOPMENT-SNAPSHOT-2017-07-28-a \ | |
https://github.com/swiftdocker/docker-swift.git |
import Foundation | |
var i: CInt = 0 | |
var device_list: UnsafeMutablePointer<UnsafeMutablePointer<Int8>> = nil | |
idevice_get_device_list(&device_list, &i) | |
print("number of devices: \(i)") | |
let array = Array(UnsafeBufferPointer(start: device_list, count: Int(i))) |
// Crash reproduction | |
// Xcode 6.1 GM | |
// Create new project, Single View Application, Language: Swift | |
// Copy code below into ViewController.swift | |
import UIKit | |
class MyClass : NSObject, NSCoding { | |
var myDictionary = [Int:Int]() |