大企業の幹部がやっている事について - Software Transactional Memo

Bookmarks
定期的に何度も読み返している個人的名エントリを置いておく - 空の箱
Bulletproof Typescript with Valibot · Flotes Blog
スキーマとは|「分かりそう」で「分からない」でも「分かった」気になれるIT用語辞典
スキーマ - Wikipedia
Valibot Schema Driven UI - ユーザーがノーコードで自由に UI を組み立てられるエディタを Next.js と Valibot で構築する - ROUTE06 Tech Blog
Mental model
Valibot's mental model is mainly divided between schemas, methods, and actions. Since each functionality is imported as its own function, it is crucial to understand this concept as it makes working with the modular API design much easier.
Schemas are the starting point for using Valibot. They allow you to validate a specific data type, like a string, object, or date. Each schema is independent. They can be reused or even nested to reflect more complex data structures.
Methods help you either modify or use a schema.
Actions help you to further validate or transform a specific data type. They are used exclusively in conjunction with the pipe method, which extends the functionality of a schema by adding additional validation and transformation rules.
Storybook 8.5
React v19 Discussion · react-hook-form · Discussion #11832
誤解されがちなnever型の危険性: 「存在しない」について #TypeScript - Qiita
令和7年版 あなたが使ってよいフロントエンド機能とは - Speaker Deck
「隙間家具OSS」に至る道/Fujiwara Tech Conference 2025 - Speaker Deck
クッキーとセッションを雰囲気で使っているエンジニアが、違いを説明できるようになる記事
「マネジメントは嫌いですけど」を読んで
何かがそれほど得意でなくても、世の中の平均よりは得意だと思っておいたほうがよい - Lambdaカクテル
Cannot use hooks in server components · Issue #52566 · vercel/next.js
hooks are not allowed in server components as they run only once and don't run on the client (where hooks are supposed to be executed).
Oslo
[Workaround in description] Mac is detecting Docker as a malware and keeping it from starting · Issue #7520 · docker/for-mac
サーバコンポーネント – React
サーバコンポーネントはブラウザに送信されないため、useState のようなインタラクティブな API を使用できません。
React Server Components の “server” とはこの別の環境を指しています。サーバコンポーネントは、CI サーバでビルド時に一度だけ実行することも、ウェブサーバを使用してリクエストごとに実行することもできます。
Goで請求書システムを実装する【入門】
What's a good way to extend Error in JavaScript?
class MyError extends Error { constructor(message) { super(message); this.name = 'MyError'; } }
メモリー管理 - JavaScript | MDN
プログラミング言語に関係なく、メモリーのライフサイクルはほぼいつも同じです。
必要なメモリーを割り当てる
割り当てられたメモリーを使用する(読み込む, 書き込む)
必要なくなったら、割り当てられたメモリーを解放する
AI エディター Cursor を試してみる
Docker Systems Status Page
browser-use やばいです - Qiita
Learn Vim
Making Sense of React Server Components • Josh W. Comeau
At a high level, React Server Components is the name for a brand-new paradigm. In this new world, we can create components that run exclusively on the server.
Server Components never re-render.
Server and client components in Next.js: when, how and why? - ByteMinds
継続的にアウトプットするための文章術 - takanorip blog
「対象読者:自分」くらいの気持ちで書く
React Router から TanStack Router へ徐々に移行する技術