Skip to content

Instantly share code, notes, and snippets.

@Kaz-su
Kaz-su / daily.js
Last active August 13, 2019 09:46
誰かのツイートが消えてないか監視するやつ(GAS)
// Queryfeed でチャンネルにツイートを垂れ流している場合のみ利用可能
var token = '{slack-token}';
var channelID = '{channel-id}';
var userName = '{user-name}'; // @realDonaldTrump とか
function myFunction() {
var latest = Math.floor(new Date().getTime() / 1000);
var oldest = latest - 24 * 60 * 60;
var url = 'https://slack.com/api/channels.history?channel=' + channelID + '&oldest=' + oldest + '&latest=' + latest;
@voluntas
voluntas / webrtc_ultra_low_latency_streaming.rst
Last active August 6, 2023 21:42
WebRTC 超低遅延配信ノススメ

WebRTC 超低遅延配信ノススメ

日時

2018-08-08

作者

@voluntas

バージョン

18.08.0

url

https://sora.shiguredo.jp/

この記事が良いと思ったらこの記事に Star を是非

詳解 WebRTC

更新

2017-09-26

作者

@voluntas

作者サイト

http://voluntas.github.io/

バージョン

1.2.1

セッション日時

2017-09-24 14:20 - 15:00

セッション場所

5号館3F

@voluntas
voluntas / webrtc_for_work.rst
Last active April 30, 2024 14:20
仕事で WebRTC

仕事で WebRTC

日時

2023-01-15

@voluntas

バージョン

2023.1

url

https://voluntas.github.io/

この資料は以下の製品の宣伝を含みます。

@voluntas
voluntas / webrtc.rst
Last active January 23, 2024 06:57
WebRTC の未来
@summerwind
summerwind / wireshark_and_http2_over_tls.md
Last active December 25, 2023 08:53
Wireshark で HTTP/2 over TLS の通信をダンプする方法

HTTP/2 over TLS の通信をダンプする方法

全体の流れ

  • 環境変数 SSLKEYLOGFILE に TLS の鍵をダンプするファイルを指定します
  • ブラウザを起動します
  • Wireshark や tshark に環境変数 SSLKEYLOGFILE に指定したファイルを設定します
  • ブラウザで HTTP/2 通信をおこないます
  • Wireshark や tshark で通信のダンプ内容を確認します
@voluntas
voluntas / webrtc_stack.rst
Last active June 4, 2023 13:23
WebRTC スタックコトハジメ

WebRTC スタックコトハジメ

WebRTC スタックについて

@voluntas

バージョン

0.0.3

url

https://voluntas.github.io/

@toolmantim
toolmantim / Makefile
Last active December 5, 2022 23:14
An example of using Make instead of Grunt for fast, simple and maintainable front-end asset compilation.
# A simple Makefile alternative to using Grunt for your static asset compilation
#
## Usage
#
# $ npm install
#
# And then you can run various commands:
#
# $ make # compile files that need compiling
# $ make clean all # remove target files and recompile from scratch
@rummelonp
rummelonp / 0-git-ignore-template.md
Created December 14, 2012 16:47
.gitignore のテンプレートを出力する git-ignore-template 作った

.gitignore のテンプレートを出力する git-ignore-template 作った

作った。

環境

Ruby の実行環境と json gem が必要。 因みに ruby 1.9.3 でしか動作確認してない。

インストール