Twitter hashtag: #esspec
便利ツール
時事ネタ
フロカン名古屋
Proposal
〜2/14
TSKaigi
Proposal
〜2/28
自己紹介 (近況報告)
syumai syumai.icon
TSを書いて暮らしてます
体調を崩してます
かなりマシになりました
フロント & PHP 北海道
Proposal出しました
iwatsurut
とくに、イベントもなく過ごしています。
Google翻訳とかで、割とオライリーの洋書とか読めそうなことに気がついた。
syumai > PLaMo翻訳いいですよね
igrep> KindleやAdobe Readerに翻訳機内蔵してて欲しい
igrep(山本悠滋)
AIコーディング使用強化(2度目)
syumai > 9割5分くらいAIです
maru。(まる)
主にTSで仕事してます。React, Node。
リッチテキストエディタのハイフネーション対応頑張ってた
より実装に近い(deepwikiとか)ところで壁打ちするのが一番良かった
フロカンproposal出してみた
yebis0942(えびす)yebis0942.icon
Go, Reactを書いています
1年半ぶりの参加です
最近Intl.DateTimeFormatに入門しました
year, month, dayのオプションが独立してないことに衝撃を受けた
自立型コーディングエージェントでブラウザを書かせた話がすごい
前回のあらすじ
今回のメモ
code:js
const d = new Date("2026-02-03T09:00:00+09:00:00");
console.log(d);
new Date(Date.parse('2025-07-01T00:00:00+07:00'));
2025-06-30T17:00:00.000Z
Time Zone Offset String Format
is the UTC offset representation specified as "Z" (for UTC with no offset) or as either "+" or "-" followed by a time expression HH:mm (a subset of the time zone offset string format for indicating local time ahead of or behind UTC, respectively)
zはTime Zone Offset Stringのサブセット
Well-Known Intrinsic Objects
Realms
code:js
const x = new Date();
undefined
x
2026-02-03T12:38:53.387Z
x.valueOf()
1770122333387
Date.parse(x.toString())
1770122333000
Date.parse(x.toUTCString())
1770122333000
Date.parse(x.toISOString())
1770122333387
x.setSeconds(0)
1770122280387
x.setMilliseconds(0)
1770122280000
x
2026-02-03T12:38:00.000Z
x.valueOf()
1770122280000
Date.parse(x.toString())
1770122280000
Date.parse(x.toUTCString())
1770122280000
Date.parse(x.toISOString())
1770122280000
code:js