- 高橋 一騎(たかはし いっき)
- Twitter(X): https://x.com/ikkitang
- GitHub: https://github.com/TakahashiIkki ( ikkitang にしたい気持ちはちょっとある )
- 株式会社リンケージ所属
- Speakerdeck: https://speakerdeck.com/TakahashiIkki
- ブログ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aaa |
- React Native のバージョンアップのツラミのお話
- 0.57 を 0.62(最新)まで上げるの大分きつそうってイメージがあるけどどう感じますか・・?
- OTA update (expoってのが使えない前提)って使われててどうでした?
- ビジネスロジックのアップデートとしては使うべきじゃないって聞いたりする(アップデートタイミングがまちまちだから)
- Web(PHP・Python)エンジニアが大半(Reactの知見もってるの1.3人)だとまあマッチしないっすよね?
- エラーメッセージが XCodeとかAndroidStudioのものが出て知見がないとデバッグが辛いって話を聞いてる。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Class SQLBuilder | |
*/ | |
class SQLBuilder | |
{ | |
private $from_table = null; | |
/** @var array */ | |
private $select_columns = []; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* ラジコンの抽象クラス */ | |
interface RadioControlCarInterface | |
{ | |
public function forward(); | |
public function back(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Optional<Wrapped>型のエラー処理イメージ | |
struct Customer { | |
let id: Int | |
let name: String | |
let email: String | |
} | |
func findCustomer(byId id: Int) -> Customer? { | |
let customers = [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ignore] | |
+ .*/node_modules/.* | |
[include] | |
[libs] | |
[lints] | |
[options] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Thread の例 | |
import Foundation | |
import PlaygroundSupport | |
// Playground上で非同期処理を有効にする | |
PlaygroundPage.current.needsIndefiniteExecution = true | |
class SubThread: Thread { | |
override func main() { |
NewerOlder