- AI Shift
- 社内SQL研修のために作った資料を公開します - (2021/06/21)
- CARTA HOLDINGS(旧VOYAGE GROUP)
- 技術広報が新卒研修<Open AIハッカソン>をスパイしてみた - (2023/04/11)
- @t_wadaに学ぶテスト駆動開発【CARTA 23新卒研修】 - (2023/04/19)
- Classi
- 当たり前にリリースしていく ~ 新卒研修編 - (2021/05/20)
- リモートワークのための質問力向上研修を実施しました - (2021/12/07)
- CyberZ
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
javascript:((function(){var b={year:"numeric",month:"long",day:"numeric"};document.querySelectorAll("relative-time").forEach(function(a){var c=(new Date(a.datetime)).toLocaleDateString("ja-JP",b);a.replaceWith(c)})})())(); |
鶴岡秀樹(Hideki Tsuruoka)と申します。SNSでは@htsuruoというハンドルネームや、ツルオカというカタカナ表記で活動しています。 Flutter/Dartを中心にソフトウェアエンジニアリングをしています。
新規事業の開発をする機会が多く、サービス立ち上げやアプリケーション開発に必要な一通りの工程を経験しています。現在はFlutter/Dartによるモバイルアプリ開発がメインですが、Webアプリケーションのフロントエンド開発や、バックエンド開発、Google Cloud / AWSのクラウド設計、BigQueryを活用したデータ分析などは実務経験があります。
- Flutter/Firebaseを使ったアプリケーションの開発
- デザインガイドライン(Human Interface Guideline/Material Design)に準拠したアプリケーションの開発
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
// What is the difference in calling | |
// Future and Future.microtask in Flutter? | |
// ref. https://stackoverflow.com/a/63070317 | |
void main() { | |
Future(() => print('future 1')); | |
Future(() => print('future 2')); | |
// Microtasks will be executed before futures. | |
Future.microtask(() => print('microtask 1')); | |
Future.microtask(() => print('microtask 2')); | |
} |