https://2025.tskaigi.org/sponsors
覚えてないものもあるので間違っていることもあります
| 会社 | ブースコンテンツ | ノベルティ | 備考 |
|---|---|---|---|
| アセンド株式会社 | TypeScriptアンケート | ビックリマンシール風シール | https://x.com/tskaigi/status/1926067187632009589 |
| クラフトバンク株式会社 | TypeScriptアンケート「anyど |
| const sessions = []; | |
| $$(".timetable .tableRow").forEach((row) => { | |
| const startTime = row.querySelector(".timeCell .timeText:first-child").textContent.trim(); | |
| const endTime = row.querySelector(".timeCell .timeText:last-child").textContent.trim(); | |
| const presentations = Array.from(row.querySelectorAll(".presentationCell")); | |
| if (presentations.length === 0) return; | |
| presentations.forEach((x) => { | |
| const room = x.querySelector(".cellRoomType").textContent.trim(); |
https://2025.tskaigi.org/sponsors
覚えてないものもあるので間違っていることもあります
| 会社 | ブースコンテンツ | ノベルティ | 備考 |
|---|---|---|---|
| アセンド株式会社 | TypeScriptアンケート | ビックリマンシール風シール | https://x.com/tskaigi/status/1926067187632009589 |
| クラフトバンク株式会社 | TypeScriptアンケート「anyど |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
| </head> | |
| <body> | |
| <svg | |
| xmlns="http://www.w3.org/2000/svg" | |
| width="100" |
| import jax | |
| import jax.numpy as jnp | |
| @jax.jit | |
| def get_under_sample_index_one(y: jnp.ndarray): | |
| """ | |
| y は 0, 1 のみを取る | |
| 先頭から 0, 1 を選んでいくため y は事前にシャッフルされている必要がある | |
| """ |
| abstract class BaseCommand<T> { | |
| abstract parse(argv: string): T; | |
| abstract run(config: T): void; | |
| } | |
| // parse と run の実装とインタフェースを矯正させる | |
| class CommandA extends BaseCommand<{}> { | |
| parse(argv: string) { | |
| return {} | |
| } |
| <h1>poyo</h1> |
| $ wc -l access.log* | |
| 71 access.log | |
| 40827 access.log.2017-01-28 | |
| 96341 access.log.2017-02-07 | |
| 48355 access.log.2017-02-14 | |
| 37780 access.log.2017-02-21 | |
| 42383 access.log.2017-02-28 | |
| 35684 access.log.2017-03-07 | |
| 34110 access.log.2017-03-14 | |
| 32159 access.log.2017-03-21 |
| curl https://blog.odan.dev/ --head -H "via: 1.1 0af4f461b5a89684a06050bc1aca8c04.cloudfront.net (CloudFront), 1.1 0af4f461b5a89684a06050bc1aca8c04.cloudfront.net (CloudFront)" |
| #include<cstdio> | |
| typedef unsigned long long UInt64; | |
| typedef unsigned int UInt32; | |
| UInt64 seed1 = 0xC6942472D331BF96; | |
| UInt64 LCGseed; | |
| int offset; |