Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2020/07/30 第194回 フロントエンドMTG 議事録 #49

Open
mashabow opened this issue Jul 30, 2020 · 3 comments
Open

2020/07/30 第194回 フロントエンドMTG 議事録 #49

mashabow opened this issue Jul 30, 2020 · 3 comments

Comments

@mashabow
Copy link
Contributor

mashabow commented Jul 30, 2020

ネストされた TS の型を一度に見られるような拡張が欲しかった

type A = { foo: string };
type B = { bar: A };
type C = { baz: B };

⬆️ のようなコードがあったときに、C をホバーすると ⬇️ のように表示してくれると嬉しい 💭

type C = {
   baz: {
      bar: {
        foo: string;
      };
   };
};

TS には Language Server Protocol はまだ実装されていないが、tsserver はそれに近いもの。エディタ支援のための機能に限定された API なので、型情報をたどって再帰的に取得していくことはできなさそう。(エディタのツールチップに表示する文字列がそのまま返ってくる)

なので、詳しい型情報にアクセスしようと思ったらそれより下のレイヤーにアクセスする必要がある?

が、リアルタイムなファイルの変更反映などを考えると大変そう。(tsserver ならこのあたりが抽象化されている)

VS Code 内部では常に最新の状態の型情報を持っているはずなので、そこにアクセスできると良いのだが…

そのうち Type Hierarchy microsoft/vscode-languageserver-node#426 が公式機能として実装されそう?

Slack の Block を JSX で書く

#36 (comment) で紹介した Phelia は React の上に乗っているが、こっちはシンプルに JSX 部分だけ。

@krhrtky
Copy link

krhrtky commented Jul 30, 2020

GCP: Serverless Network Endpoint Groups ( Beta )

  • Cloud Run, App Engine, Could Functions を LB できる

Serverless Meetup Virtual #3より

@kogai
Copy link
Member

kogai commented Jul 30, 2020

SESが東京リージョンに来た話

どの記事でも触れてなかったけど、メールの受信は出来ないみたい

https://dev.classmethod.jp/articles/new-available-amazon-ses-tokyo-region/

AWSでジョブの実行環境にどれを選ぶか

https://techblog.timers-inc.com/entry/2019/08/06/aws-batch-lambda-ecs-comparison

海外のゲーム会社であった制度

各国にスタジオがあるような大きな会社の話っぽい

犬連れ込み可

ゲーム系は結構多いイメージある(Brizzardとか)

http://shindannin.hatenadiary.com/entry/2020/07/27/234845

MacintoshをElectronでエミュレート

https://github.com/felixrieseberg/macintosh.js

色んな領域を跨いで仕事をする

https://shiro-16.hatenablog.com/entry/2020/07/16/140220

@zenoplex
Copy link

デザインガイド向け SasS

https://bit.dev/

github workflow を使ってプロフィールを動的にする

https://github.com/gautamkrishnar/blog-post-workflow

threejs で作った mesh を gif にして静的なプロフィールを一時作ってみたけど、動的にすると面白そう。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants