在Github上用Hexo搭建个人Blog
1. 在github上创建名称为username.github.io仓库2. 将仓库clone到本地1$ git clone https://github.com/username/username.github.io
3. Hello World12$ cd username.github.io$ echo "Hello World" > index.html
4. push123$ git add --all$ git commit -m "Initial commit"$ git push -u origin master
5. 访问username.github.io这样就能看到Hello World了
6. 将域名映射到username.github.io123$ echo "www.yourdomain.com" > CNAME$ git commit -m "Create CNAME"$ git push origin master
在 ...
自建短链服务 Url-Shorten-Worker
Url-Shorten-WorkerA URL Shortener created using Cloudflare Worker
APIAPI Documentation (API文档)
Getting start去Workers KV中创建一个命名空间Go to Workers KV and create a namespace.
添加一个条目Entry 密钥key为password,值value为一个随机字符串
value为/登陆值
### 去Worker的Settings选选项卡中绑定KV Namespace
Bind an instance of a KV Namespace to access its data in a Worker.
其中Variable name填写LINKS, KV namespace填写你刚刚创建的命名空间Where Variable name should set as LINKS and KV namespace is the namespace you just created in the first step.
复制本项目中的 ...
自建clash在线订阅转换
前言 clash这个科学上网的客户端很强大也很麻烦,和我们平常使用的V2rayN、winxray、ssr不一样,其不能直接添加单个节点,添加节点只能通过配置文件添加,而且这个配置文件的格式会随着clash版本更新变化. 所以为了方便使用,很多网站提供了在线订阅地址转换的服务.但是很多这样的在线订阅地址转换存在节点信息泄露的问题.
对于这样一个问题,我们可以通过自建订阅转换的方法来解决.这里有两种思路一个是在本地建一个订阅转换的服务,自己在本地使用.另外一个是搭建一个类似的在线网站,自己拥有全部权限.
本文介绍第二种方法–搭建一个在线订阅地址转换网站.
准备工作1 / 两个邮箱,用来注册heroku,推荐使用临时邮箱
2/ 个常用邮箱用了注册前端服务网站
这次推荐使用render https://render.com/
开始搭建一/ 后端搭建
github 项目地址: https://github.com/jth445600/subconverter-heroku
注册 heroku 使用 临时邮 ...