Skip to content

Instantly share code, notes, and snippets.

@Aaron-Bird
Aaron-Bird / yuque-markdown-download
Last active January 26, 2025 11:22
yuque-markdown-download
!(async () => {
// 配置
//是否下载储存在语雀上的图片
const DOWNLOAD_IMAGE = true;
// 修改 markdown 的图片路径
// 示例:MARKDOWN_IMAGE_PATH = "/image/";
// 效果:![](foo.png) -> ![](/image/foo.png)
const MARKDOWN_IMAGE_PATH = "";
class YuqueMarkdownDownload {
@jianyun8023
jianyun8023 / sourcesv3.json
Last active September 17, 2024 06:54
syncnext 过滤成人内容
[
{
"id": "749efa89-d429-4a4e-8295-6ae9e01226d4",
"Top": true,
"note": "粤语港剧社区平台",
"GEO": "Only-China",
"Search": true,
"title": "埋堆堆",
"name": "SyncnextMDD",
"api": "Syncnext://MDD"
@y0ngb1n
y0ngb1n / docker-registry-mirrors.md
Last active May 2, 2025 20:33
国内的 Docker Hub 镜像加速器,由国内教育机构与各大云服务商提供的镜像加速服务 | Dockerized 实践 https://github.com/y0ngb1n/dockerized
@mholt
mholt / macapp.go
Last active May 1, 2025 04:32
Distribute your Go program (or any single binary) as a native macOS application
// Package main is a sample macOS-app-bundling program to demonstrate how to
// automate the process described in this tutorial:
//
// https://medium.com/@mattholt/packaging-a-go-application-for-macos-f7084b00f6b5
//
// Bundling the .app is the first thing it does, and creating the DMG is the
// second. Making the DMG is optional, and is only done if you provide
// the template DMG file, which you have to create beforehand.
//
// Example use: