Skip to content

Commit 4503001

Browse files
Merge pull request #622 from Himenon/feat/2025-11-12
2 parents e6a5f43 + 692209f commit 4503001

3 files changed

Lines changed: 13 additions & 26 deletions

File tree

-8.9 KB
Binary file not shown.

2025/src/constants/schedule.ts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,10 @@ export type ScheduledSession = {
4040
| "networking";
4141
}
4242
);
43+
4344
export type TalkSession = Extract<ScheduledSession, { kind: "talk" }>;
4445

45-
export const SCHEDULE: ScheduledSession[] = [
46+
const notSortedSchedule: ScheduledSession[] = [
4647
{
4748
kind: "reception",
4849
track: "all",
@@ -423,7 +424,7 @@ export const SCHEDULE: ScheduledSession[] = [
423424

424425
{
425426
kind: "talk",
426-
talk: TALKS_BY_SLUG["bun-video-talk"],
427+
talk: TALKS_BY_SLUG["tbd"],
427428
track: "A",
428429
day: "1",
429430
startTime: "15:50",
@@ -446,14 +447,12 @@ export const SCHEDULE: ScheduledSession[] = [
446447
endTime: "16:20",
447448
},
448449
{
449-
kind: "talk",
450-
talk: TALKS_BY_SLUG["kakehashi-sponsor-session"],
450+
kind: "break",
451451
track: "D",
452452
day: "1",
453453
startTime: "15:50",
454454
endTime: "16:20",
455455
},
456-
457456
{
458457
kind: "break",
459458
track: "all",
@@ -663,6 +662,9 @@ export const SCHEDULE: ScheduledSession[] = [
663662
endTime: "22:00",
664663
},
665664
]
665+
666+
667+
export const SCHEDULE: ScheduledSession[] = notSortedSchedule
666668
// 時間順、トラック順でソート
667669
.toSorted((a, b) => {
668670
const timeCompare = timeToMinutes(a.startTime) - timeToMinutes(b.startTime);

2025/src/constants/talks.ts

Lines changed: 6 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ import DmitryMakhnevAvatar from "../../public/speaker/DmitryMakhnev.jpg"
1717
import GiovanniLaquidaraAvatar from "../../public/speaker/Giovanni-Laquidara.png";
1818
import islandryuAvatar from "../../public/speaker/islandryu.jpg";
1919
import itaiSatatiAvatar from "../../public/speaker/itai-satati.jpg";
20-
import jarredSumnerAvatar from "../../public/speaker/jarred-sumner.jpg";
2120
import jemimaAbuAvatar from "../../public/speaker/jemima-abu.jpg";
2221
import jiko21Avatar from "../../public/speaker/jiko21.jpg";
2322
import joyeeCheungAvatar from "../../public/speaker/joyee-cheung.jpg";
@@ -829,23 +828,19 @@ Additionally, I am a maintainer to jsr.io, a modern alternative to npm, where I
829828
language: "Japanese",
830829
speakers: [SPONSORS_BY_NAME["株式会社令和トラベル"]],
831830
},
832-
833831
{
834-
slug: "bun-video-talk",
835-
title:
836-
"Bunで実現する高速レンダリング(原題:Rendering at the speed of Bun) (video talk)",
837-
description: `モダンなアプリケーション開発では、静的サイト生成、サーバーサイドレンダリング、ルーティング、ホットリロードといった複数のツールを組み合わせる必要があり、その多くは速度低下や複雑性の増大を招いてきた。
838-
Bunの新しいRendering APIは、これらの要素をひとつに統合し、Bunならではの高いパフォーマンスと優れた開発体験を提供する。
839-
本講演では、Rendering APIの仕組み、速度に最適化された理由、そしてそれが開発者にモダンなフルスタックアプリケーションをBunで構築する力をどのように与えるのかをジャレッドが解説する。`,
832+
slug: "tbd",
833+
title: "TBD",
834+
description: "TBD",
840835
kind: "session",
841836
day: "1",
842837
language: "English",
843838
speakers: [
844839
{
845840
type: "speaker",
846-
name: "Jarred Sumner",
847-
avatarUrl: jarredSumnerAvatar,
848-
bio: "Building Bun",
841+
name: "TBD",
842+
avatarUrl: emptyAvatar,
843+
bio: "",
849844
},
850845
],
851846
},
@@ -905,16 +900,6 @@ In this talk, I’ll walk through how I used the TypeScript profiler to uncover
905900
},
906901
],
907902
},
908-
{
909-
slug: "kakehashi-sponsor-session",
910-
title: "スポンサーキーノート",
911-
description: "TBD",
912-
kind: "sponsor session",
913-
day: "1",
914-
language: "Japanese",
915-
speakers: [SPONSORS_BY_NAME["株式会社カケハシ"]],
916-
},
917-
918903
{
919904
slug: "v8-from-script-to-call-rcx",
920905
title: "V8: from <script> to `call $rcx`",

0 commit comments

Comments
 (0)