Skip to content

Instantly share code, notes, and snippets.

@vectorisvector
vectorisvector / DC架构与浏览器采集配置-可复用模板.md
Created February 4, 2026 14:55
Discord + OpenClaw 工作流模板(X情报/Coinglass/脑暴线程/运维)

Discord 架构 + 浏览器采集配置(可复用模板)

目标:给“自用/小团队”的 Discord + OpenClaw 部署一个可复用的工作流架构:

  • 情报(X)定时汇总
  • 行情(Coinglass)定时汇报
  • 采集委托(你丢任务 → 我执行)
  • 脑暴频道(每条消息自动建 Thread,仅在线程里继续)
  • 运维频道(报错/配置变更/排障)

说明:本文档提供 架构与配置模板;Discord 的“奇幻风格命名/emoji 前缀”等风格化部分让使用者自行替换。

@PsiACE
PsiACE / Friendly-Python.md
Created January 8, 2026 18:53
Friendly Python notes

Friendly Python

本文基于 Frost Ming “friendly python” 标签下的文章,整理出偏向工程实践的开发范式、规范与典型好/坏代码范式示例。重点是“对使用者友好 + 对维护者友好”,并强调在 Python 中利用语言特性与生态扩展点进行合理抽象。

资料来源

React.js Github Repo Spammed

Background

React's official website makes a banner, which offers visitors a way to provide humanitarian aid to Ukraine.
React的官方网站做了一个横幅,为访问者提供了向乌克兰提供人道主义援助的途径。

telegram-cloud-photo-size-5-6127611897286078767-x

Then, many people went to the React.js Github repository and opened lots of spam issues with anti-US and anti-Ukrainian comments in an apparent form of digital protest. The messages are in English and Mandarin.
然后,很多人到React.js Github 仓库中开了很多带有反美国和反乌克兰 issue,进行一种数字化的抗议。这些信息是用英语和普通话写的。

@ryan-robeson
ryan-robeson / building-resynthesizer-instructions.md
Last active September 1, 2024 19:31
Building Resynthesizer for GIMP 2.10.10 on macOS

Building Resynthesizer for GIMP 2.10.10 on macOS - V2

Feedback is welcome and appreciated.

  • If you'd prefer to do things by hand check out Version 1 of this guide.

The following documents the steps I took to compile the latest version of Resynthesizer on macOS Sierra (10.12.6) for GIMP 2.10.10.

Homebrew was used to fulfill as many dependencies as possible.

#!/usr/bin/env bash
# exit 0
set -ex
echo '##########################################################################'
echo '##### About to run install-gnome-gui.sh script ##################'
echo '##########################################################################'
# https://codingbee.net/tutorials/vagrant/vagrant-enabling-a-centos-vms-gui-mode
yum groupinstall -y 'gnome desktop'
@caseywatts
caseywatts / 0 - Chrome Workshop.md
Last active February 11, 2026 10:29
Chrome Extension Workshop
@staltz
staltz / introrx.md
Last active March 10, 2026 03:48
The introduction to Reactive Programming you've been missing
@AlBaker
AlBaker / Main.groovy
Created May 23, 2012 00:54
Executable War Main
package mypackage;
import java.net.URL;
import java.security.ProtectionDomain
import org.mortbay.jetty.Connector;
import org.mortbay.jetty.Server;
import org.mortbay.jetty.nio.SelectChannelConnector;
import org.mortbay.jetty.webapp.WebAppContext;