参加してなくてもついていけるもん!WWDCゴリゴリキャッチアップ会20190617の参加メモ
-
「Sing in with Apple」@d_date
- Apple IDでサインインが出来て以下がとれる
- User ID
- Apple IDでサインインが出来て以下がとれる
-
Full Name
| import os | |
| import shutil | |
| """ | |
| Steps to retrieve the IPA file from the Configurator app: | |
| 1. Install Apple Configurator from the Mac App Store and sign in | |
| 2. Connect your iOS device to your Mac | |
| 3. Select "Add > Apps..." and search for the app you want to install, click "Add" | |
| 4. The newer Apple Configurator deletes the IPA after installing it, so you'll need to use this tool to grab it |
| # In the command line, find the PID of your simulator process: | |
| ps -p `pgrep launchd_sim` | |
| # or if you have many simulators running: | |
| ps -A | grep launchd_sim | |
| # Find the PID of the WebContent process: | |
| pgrep -P <simulator-pid> 'com.apple.WebKit.WebContent' | |
| # kill it |
| // | |
| // XCUIElement+Wait.swift | |
| // | |
| // Created by Ryan Paterson on 12/12/2020. | |
| // | |
| import XCTest | |
| extension XCUIElement { | |
| /// The period of time in seconds to wait explicitly for expectations. |
| // | |
| // ContentView.swift | |
| // AnimationTimingCurve | |
| // | |
| // Created by Chris Eidhof on 25.09.19. | |
| // Copyright © 2019 Chris Eidhof. All rights reserved. | |
| // | |
| import SwiftUI |
参加してなくてもついていけるもん!WWDCゴリゴリキャッチアップ会20190617の参加メモ
「Sing in with Apple」@d_date
Full Name
| // Copyright © 2019 Ooma Inc. All rights reserved. | |
| import Foundation | |
| import RIBs | |
| import RxSwift | |
| // MARK: - Plugin | |
| public protocol Plugin: AnyObject { | |
| associatedtype Component = Dependency |
| MacBook 12-inch 2017 | MacBook Air 11-inch Early 2014 | MacBook Pro 13-inch Early 2015 | MacBook Pro 13-inch 2017 | |
|---|---|---|---|---|
| CPU | 1.4 GHz Intel Core i7 | 1.7 GHz Intel Core i7 | 2.7 GHz Intel Core i5 | 3.5GHz Intel Core i7 |
| メモリ | 16 GB 1867 MHz LPDDR3 | 8 GB 1600 MHz DDR3 | 16 GB 1867 MHz DDR3 | 16 GB 2133 MHz LPDDR3 |
お仕事のプロジェクト
Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...
// see: https://github.com/chadoe/docker-cleanup-volumes
$ docker volume rm $(docker volume ls -qf dangling=true)
$ docker volume ls -qf dangling=true | xargs -r docker volume rm