- Nostrの説明に主眼を当てたサイト・スライド等を集めたGistだよ
- 何かのついでにNostrを説明しているサイトは対象外だよ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "golang.org/x/net/websocket" | |
| "golang.org/x/term" | |
| "os" | |
| "strings" | |
| "time" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <curl/curl.h> | |
| #include <stdbool.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| typedef char* PCHAR; | |
| typedef void* PVOID; | |
| typedef CURL* PCURL; | |
| typedef struct curl_slist CurlList; | |
| typedef struct curl_slist* PCurlList; |
Deep ResearchでWebTransport / WebSocketの速度向上について扱った論文一覧を取ってきて、箇条書きで纏めたもの
英語の要約は、Deep Researchで出力された英語を機械翻訳したもの
- WebSocket通信における緊急メッセージの優先配送手法
- 発表年: 2016年
- WebSocket通信において緊急度の高いメッセージを遅延を抑えて配信するため、優先度制御手法を2つ提案した
- 配送遅延や通信量への効果を評価した研究
- /etc/default/grubのGRUB_CMDLINE_LINUXにisolcpus=XXX,XXX...を追加 (使うぶんだけ除外)
- 以下コマンドで設定値反映
sudo update-grub
sudo shutdown -h now
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @file websocket_frame_parse.c | |
| * | |
| * @brief Parses each parameter of a websocket frame stored in network byte order. | |
| * @see RFC6455 (https://datatracker.ietf.org/doc/html/rfc6455) | |
| */ | |
| #include <alloca.h> | |
| #include <stdio.h> | |
| #include <stdint.h> | |
| #include <string.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Ukagaka SSTP send sample | |
| #define _WIN32_WINNT 0x0601 // Windows 7 later | |
| #include <winsock2.h> | |
| #include <ws2tcpip.h> | |
| #include <wincrypt.h> | |
| #include <stdio.h> | |
| #pragma comment(lib, "ws2_32.lib") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " bsky_client.vim | |
| " | |
| " use ui.vim: https://github.com/skanehira/ui.vim | |
| " use indigo: https://github.com/bluesky-social/indigo | |
| let s:cli_path = "./indigo/gosky" | |
| let s:auth_path = "./auth.json" | |
| let s:pds_host = "https://bsky.social" | |
| function! s:set_env() abort |
NewerOlder