Skip to content

Instantly share code, notes, and snippets.

View alternacrow's full-sized avatar

Kazuaki Horita alternacrow

View GitHub Profile
{
/* ------------------------------------------------------------------
* Original
------------------------------------------------------------------ */
/**
* window
*/
"window.title": "${rootName} - ${dirty}${activeEditorMedium}",
"window.zoomLevel": -1,
@alternacrow
alternacrow / tag.md
Last active June 29, 2024 13:19
HTML

Links

JavaScript

JavaScript Primer 迷わないための入門書
https://jsprimer.net/

TypeScript

TypeScript Deep Dive 日本語版

Jest - Setup / Teardown / Order of Execution

https://jestjs.io/ja/docs/setup-teardown

  • 全ての describe 内の handler は、テストの実行前に実行される。
  • beforeAll: 全てのテストの開始前に実行される。
  • afterAll: 全てのテストの終了後に実行される。
  • beforeEach: 各テストの開始前に実行される。
  • afterEach: 各テストの終了後に実行される。
@alternacrow
alternacrow / eas-update.md
Last active June 30, 2024 02:03
React Native / Expo / EAS

EAS Update

EAS Update の仕組み

Concepts / How EAS Update works
https://docs.expo.dev/eas-update/how-it-works/

Channel と Branch の概念が存在する。
ビルドされたアプリケーションは eas.jsonで設定された Channel を持つ。
Channel には Branch を紐付けることができ、Branch を更新することで Channel に紐付けられたアプリケーションを更新することができる。

@alternacrow
alternacrow / javascript-api.md
Last active January 14, 2025 04:49
JavaScript / TypeScript