Zimo Li
Zimo Li
Follow
Follow
home

使用 iptables + ipset 禁止代理服务器访问中国大陆 IP 地址

Nov 5, 2023

根据 @RPRX 关于 GFW 检测方式的讨论: 是的,请不要使用代理访问境内 IP 网站,这是一个基本实践问题,因为你使用任何代理访问境内网站,代理的 IP 都会被记录、上传、标记。 使用代理服务器访问中国大陆 IP 地址存在被检测的风险,因此有必要从服务端屏蔽所有的境内 IP...

🤯TIL for...else exists in Python

Feb 23, 2023

Today, I learned that you can pair an else clause with a loop statement such as for or while. It looks like this: for i in iterator: # do...

Why is my Rust code blocking???

Dec 7, 2022

Rust is a low-level programming language known for its performance and safety. We'll look at why my first attempt to use std::process resulted in...

Introducing Cronify

Aug 3, 2022

Cronify is a simple and easy-to-use utility that helps you schedule your cron jobs using Natural Language Processing (NLP). What is a cron job? A cron...

Introducing Cronify

Create Telegram Alerts with Cloudflare Workers and ScheduledEvent

Jul 15, 2022

Introduction Motivations Creating notifications on real events in the world is a very common scenario for developers. Telegram Bot provides a...

Create Telegram Alerts with Cloudflare Workers and ScheduledEvent

Dealing with Daylight Saving Time in Scala/Java

Jul 7, 2022

Handing daylight saving time programmatically can be tricky. It could create a mini Y2K problem twice a year when done incorrectly. If you want to get...