Skip to content

Instantly share code, notes, and snippets.

View Hakkadaikon's full-sized avatar
💪
100 times more energetic

Hakkadaikon Hakkadaikon

💪
100 times more energetic
View GitHub Profile
@Hakkadaikon
Hakkadaikon / kubowatch_ai_summarize.md
Created December 17, 2025 09:52
kubo.watch kidstr 詳細 AI要約

概要

12/17 5:00 JSTで行われたkubo.watchのプロダクトによるプレゼン/ディスカッション内容のAI要約。

詳細

Web of Trust Foundation & Operation Kidster プロジェクト概要

  1. 背景と目的
  • プロジェクト名: Operation Kidster(オペレーション・キッズスター)
  • 運営組織: Web of Trust Foundation(慈善事業を行う法人として設立)
@Hakkadaikon
Hakkadaikon / discussion.md
Last active December 17, 2025 09:46
kubo.watch ディスカッション AI要約

kubo.watch

概要

会議は、子供たちのための適切で安全なデジタル環境を作ることを目的とした新しいプロトコルである Trust Extended Permission Protocol (TEP)の紹介と議論に焦点を当てました。 最近設立されたWeb of Trust Foundationは、オープンプロトコルとNostrベースのシステムを構築するこのイニシアチブを主導しています。

TEPの核心概念は、コンテンツをフィルタリングするためにホワイトリスト(許可)を使用し、 ソーシャルトラストネットワークを活用して効率的に許可を拡張することです。

@Hakkadaikon
Hakkadaikon / nostr_subscription.go
Created December 5, 2025 12:14
翔泳社 サンプルコード365+1 7/26 Go言語でNostrのサブスクリプション
package main
import (
"fmt"
"golang.org/x/net/websocket"
"golang.org/x/term"
"os"
"strings"
"time"
)
@Hakkadaikon
Hakkadaikon / what_is_nostr.md
Last active November 6, 2025 14:38
what_is_nostr
@Hakkadaikon
Hakkadaikon / main.c
Created February 27, 2025 21:04
OpenRouter Example
#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;
@Hakkadaikon
Hakkadaikon / deep_research_websocket_and_webtransport.md
Last active April 23, 2025 13:17
Deep Research テスト: WebTransport / WebSocketの速度向上について扱った論文

概要

Deep ResearchでWebTransport / WebSocketの速度向上について扱った論文一覧を取ってきて、箇条書きで纏めたもの
英語の要約は、Deep Researchで出力された英語を機械翻訳したもの

出力

@Hakkadaikon
Hakkadaikon / awesome-mcp-server-link.md
Created January 29, 2025 18:16
MCPサーバーリンク集
@Hakkadaikon
Hakkadaikon / memo.md
Last active January 16, 2025 05:35
つよつよサーバーを使ったWebSocket / Nostrリレーのパフォーマンス評価案

設定チューニング

アプリで使うCPUコアの割り込みを禁止

  sudo update-grub
  sudo shutdown -h now
@Hakkadaikon
Hakkadaikon / websocket_flame_parse.c
Created December 30, 2024 10:07
Websocket frame parse (RFC6455)
/**
* @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>
@Hakkadaikon
Hakkadaikon / main.c
Created October 14, 2024 16:17
SSTP Sample in C
// 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")