Skip to content

Instantly share code, notes, and snippets.

@Pioooooo
Pioooooo / DDNet 国内服务器赞助指南.md
Created November 23, 2025 09:21
DDNet 国内服务器赞助指南

DDNet 国内服务器赞助指南

国内 DDNet 服务器赞助制的原因是租用国内云服务器需要实名认证(大概),DDNet 自己弄会比较麻烦或者做不到。因此如果想赞助需要我们提供一台服务器供 DDNet 使用。

服务器价格:

目前的上海服务器是我在腾讯云购买的,有新用户的活动(同时也可能有双十一)价格是 1024RMB 第一年,配置为 12Mbps 带宽,月流量 2000GB,应该是比较便宜的。对于国内 DDNet 服务器来说流量/带宽往往是瓶颈,所以选购的时候主要看这两个,目前周末下午三四点刚开几十分钟服务器带宽一直是跑满的状态。服务器其他配置是 4 核 16GB,180GB SSD。服务器具体怎么买划算我也不是专家,如果有赞助意向可以自行比价。deen 的其他要求只有 Debian 和 x86-64,一般服务器都满足要求。

具体步骤:

@smx-smx
smx-smx / XZ Backdoor Analysis
Last active February 24, 2026 09:30
[WIP] XZ Backdoor Analysis and symbol mapping
XZ Backdoor symbol deobfuscation. Updated as i make progress
@thesamesam
thesamesam / xz-backdoor.md
Last active July 2, 2026 08:41
xz-utils backdoor situation (CVE-2024-3094)

FAQ on the xz-utils backdoor (CVE-2024-3094)

This is a living document. Everything in this document is made in good faith of being accurate, but like I just said; we don't yet know everything about what's going on.

Update: I've disabled comments as of 2025-01-26 to avoid everyone having notifications for something a year on if someone wants to suggest a correction. Folks are free to email to suggest corrections still, of course.

Background

@danieleagle
danieleagle / msys2-with-zsh-on-windows-11.md
Created May 26, 2022 15:08 — forked from ronnaf/msys2-with-zsh-on-windows-11.md
Setting up MSYS2 with ZSH on Windows 11
@cbuckowitz
cbuckowitz / README.md
Last active July 12, 2026 15:07
Change Storage Location for Docker Desktop with WSL2 #DockerDesktop #WSL2

Change the Storage Location for Docker Desktop with WSL2

Docker Desktop stores docker data in 2 distros

  • docker-desktop
  • docker-desktop-data

These distros are installed on the system drive by default.

To move them to another drive, these distros can be exported, deleted and imported from the new location.

@br3ndonland
br3ndonland / github-actions-notes.md
Last active May 30, 2026 00:06
Getting the Gist of GitHub Actions
@bergmannjg
bergmannjg / rearct-native-app-in-wsl2.md
Last active July 6, 2026 08:15
Building a react native app in WSL2
@aprell
aprell / Makefile
Created March 7, 2019 19:13
Wrapping library functions using -Wl,--wrap=symbol
CC := gcc
CFLAGS += -Wall -Wextra -std=c99
LDLIBS += -lpthread
all: test_wrap
test_wrap: LDFLAGS += -Wl,--wrap=pthread_create -Wl,--wrap=pthread_join
test_wrap: test_wrap.c wrap.c
clean: