wantedly / ios_night

Let's talk about iOS development -- iOS Night 📱🌙 You might apply to this meetup from
https://www.wantedly.com/companies/wantedly/projects
18 stars 0 forks source link

2019/05/21 19:00~20:00 #50

Closed ngtk closed 5 years ago

ngtk commented 5 years ago

Why

Where

Pearl Jam (Subject to change)

5F, MG Shirokanedai Building (Wantedly, Inc. Tokyo HQ)

Who

You are working for Wantedly? Sure, you can join anytime. If not, you need to contact us first. Or, you can "want to visit" the meetup, which you can find in www.wantedly.com/companies/wantedly/projects.

What

You write topics like below contents and we talk about these on the meetup.

Also, you can find new topics from the newsletters:

How

         ・・・

開催までに話したいことをコメントしましょう。 より多くの学びを得るためにどんな内容でもアウトプットを歓迎します!😊

cc/ @wantedly/ios

Edit this template

Previous issue

https://github.com/wantedly/ios_night/issues/49

ngtk commented 5 years ago

Gen

Article: https://www.pointfree.co/blog/posts/27-open-sourcing-gen Code: https://github.com/pointfreeco/swift-gen

It provides an intermediate state to process a random value, which can be described like a pipeline.

let digit = Gen.int(in: 0...9)           // Gen<Int>
let stringDigit = digit.map(String.init) // Gen<String>

stringDigit.run() // "7"
stringDigit.run() // "1"
stringDigit.run() // "3"
// Take a generator of random letters and numbers.
let password = Gen.letterOrNumber
  // Generate 6-character strings of them.
  .string(of: .always(6))
  // Generate 3 segments of these strings.
  .array(of: .always(3))
  // And join them.
  .map { $0.joined(separator: "-") }

password.run() // "9BiGYA-fmvsOf-VYDtDv"
password.run() // "dS2MGr-FQSuC4-ZLEicl"
password.run() // "YusZGF-HILrCo-rNGfCA"
hiranodept commented 5 years ago

今日のショートカット

Command + Shift + 5

image

A…画面全体を取り込む
B…選択したウインドウを取り込む
C…選択部分を取り込む
D…画面全体を(動画で)収録
E…選択部分を(動画で)収録
F…保存先やタイマー撮影の設定
G…撮影を実行(EnterでもOK)
スクリーンショット 2019-05-21 18 37 28

ref: https://www.gizmodo.jp/2018/09/command-shift-5.html

jiro commented 5 years ago

Xcode Build Configuration Files

https://nshipster.com/xcconfig/

xcconfigファイルを利用したXcodeのビルド設定

ShotaKashihara commented 5 years ago

Differentiable functions and differentiation APIs

https://github.com/tensorflow/swift/blob/master/docs/DifferentiableFunctions.md

takashings commented 5 years ago

Integration of Siri Shortcuts in OYO

https://medium.com/oyotech/integration-of-siri-with-oyo-3dd0b7cf3515

Siri Shortcutの実例の記事を多く見かける気がする (海外では需要が高い。。。?

hiranodept commented 5 years ago

https://help.apple.com/xcode/#/dev745c5c974

ShotaKashihara commented 5 years ago

だん!