Skip to content

Instantly share code, notes, and snippets.

@weboko
weboko / logos-docs-dogfooding.md
Created May 9, 2026 11:21
Weekly Logos Docs Dogfooding

title: "Weekly Logos Docs Dogfooding" task_slug: "logos-docs-dogfood-weekly" type: "recurring" agent: "claude" target_repositories:

  • "logos-co/logos-docs" schedule_text: "Every Monday at 09:00 in the operator's local timezone. Configure the first run date to avoid duplicating any same-week manual run." cron_expression: "0 9 * * 1" timezone: ""
@weboko
weboko / README.md
Created December 5, 2024 11:00
Buddybook retro

Store could be subsctituted Last minute changes Wider Waku team presentation Rought plan around using

Goto market plan

git clean -xfd
git submodule foreach --recursive git clean -xfd
git reset --hard
git submodule foreach --recursive git reset --hard
git submodule update --init --recursive
@weboko
weboko / libp2p.mjs
Created October 19, 2023 23:36
Weird Waku connectivity problem
import { noise } from '@chainsafe/libp2p-noise';
import { tcp } from '@libp2p/tcp';
import { createLibp2p } from 'libp2p';
import { webSockets } from "@libp2p/websockets";
import { all as filterAll } from "@libp2p/websockets/filters";
import { multiaddr } from '@multiformats/multiaddr';
run().then(() => {
console.log("Node is running...");
})