この資料は以下のイベントの登壇用の殴り書きです
https://hack-at-delta.connpass.com/event/350588/
今までの資料を引用して話すので、この資料はアウトラインです。
| /** | |
| * LINE → GitHub Issue → Google Sheets Logger (signature-less robust版) | |
| * ※ Google Apps Script Webアプリでは HTTP ヘッダーを直接取得できないため、 | |
| * LINE 署名検証は割愛しています(Webhook URL を秘匿できる環境前提)。 | |
| * @license MIT | |
| */ | |
| /* ---------- 設定 ---------- */ | |
| const CONF = { | |
| LINE_ACCESS_TOKEN: PropertiesService.getScriptProperties().getProperty('LINE_ACCESS_TOKEN'), |
この資料は以下のイベントの登壇用の殴り書きです
https://hack-at-delta.connpass.com/event/350588/
今までの資料を引用して話すので、この資料はアウトラインです。
これは時雨堂が 2024 年 2 月 8 日 (木) 14:00-18:00 で開催を予定しているオンラインイベント WebRTC 入門 v2024-02 の 講師用 の資料であり、 参加者用の資料ではありません。
時雨堂 WebRTC 入門 オンラインイベント v2024-02
ChatGPT がある今、学ぼうと思えば好きなだけ学べる時代がきています。
| ! NEC Portable Internetwork Core Operating System Software | |
| ! IX Series IX3315 (magellan-sec) Software, Version 10.7.18, RELEASE SOFTWARE | |
| ! Compiled Oct 25-Tue-2022 12:28:03 JST #2 | |
| ! Current time Apr 26-Wed-2023 16:52:00 JST | |
| ! | |
| timezone +09 00 | |
| ! | |
| logging buffered 819200 | |
| logging subsystem flt warn | |
| logging subsystem mape debug |
| import java.io.ByteArrayOutputStream | |
| import java.io.File | |
| import java.nio.charset.StandardCharsets.UTF_8 | |
| import java.util.zip.GZIPInputStream | |
| import java.util.zip.GZIPOutputStream | |
| fun gzip(content: String): ByteArray { | |
| val bos = ByteArrayOutputStream() | |
| GZIPOutputStream(bos).bufferedWriter(UTF_8).use { it.write(content) } | |
| return bos.toByteArray() |