#Every Single Option Under The Sun
- optimization level options
- automatic crashing options
- debug info options
- swift internal options
- swift debug/development internal options
- linker-specific options
- mode options
class ArrayImpl<T> { | |
var space: Int | |
var count: Int | |
var ptr: UnsafeMutablePointer<T> | |
init(count: Int = 0, ptr: UnsafeMutablePointer<T> = nil) { | |
self.count = count | |
self.space = count | |
#Every Single Option Under The Sun
Here's my own list of the interesting stuff announced during this year's WWDC, collected from the keynotes, various Apple docs, blog posts and tweets.
If you're planning to watch the videos, I really recommend this Mac app that helps you download and watch them: https://github.com/insidegui/WWDC.
http://www.apple.com/osx/elcapitan-preview/
package main | |
import ( | |
"bufio" | |
"bytes" | |
"encoding/binary" | |
"encoding/hex" | |
"flag" | |
"fmt" | |
"net" |
import Foundation | |
extension UIDevice { | |
/** | |
Try to get the username from the device name using common knows | |
default device names format. | |
- copyright: Owen Godfrey on [StackOverflow](http://stackoverflow.com/questions/8261961/better-way-to-get-the-users-name-from-device) | |
- remark: Original regexpr improved to support custom name with model included eg. `<username>'s iPhone 6S` |
// | |
// SunXi.swift | |
// | |
// | |
// Created by Alsey Coleman Miller on 6/7/16. | |
// Copyright © 2016 ColemanCDA. All rights reserved. | |
// | |
public struct SunXiGPIO: CustomStringConvertible, Equatable { | |
let title = "IoT, BLE, Swift y Linux" | |
// When | |
let date = "August 13th, 2016" | |
let city = "Lima, Peru" | |
let location = "Laboratoria Perú" | |
// Duration | |
let hours = 8 |
exec > /tmp/${PROJECT_NAME}_archive.log 2>&1 | |
UNIVERSAL_OUTPUTFOLDER=${BUILD_DIR}/${CONFIGURATION}-universal | |
if [ "true" == ${ALREADYINVOKED:-false} ] | |
then | |
echo "RECURSION: Detected, stopping" | |
else | |
export ALREADYINVOKED="true" |