hide-ghpage.rongsh3.workers.dev Open in urlscan Pro
2606:4700:3032::6815:1b62  Public Scan

URL: https://hide-ghpage.rongsh3.workers.dev/
Submission: On November 13 via api from US — Scanned from US

Form analysis 0 forms found in the DOM

Text Content

Shawn's Blog

 * Posts
 * Archive
 * Search
 * Tags


👋 WELCOME TO SHAWN’S BLOG

Hi, this is Shawn. I’m here to document my notes in this blog.



通过CF WORKER代理第三方API在CURSOR中使用CLAUDE

前言 本教程将指导你如何通过 Cloudflare Worker 在 Cursor 中以第三方api的方式访问 Claude 和 Deepseek
模型。通过覆盖 OpenAI 的 URL 地址,我们可以使用 第三方api 来访问这些模型。 功能特点 支持 OpenAI 的 GPT 模型 支持将请求中的
‘my-cld’ 改写为 ‘claude’(通过 第三方api 代理地址) 支持将请求中的 ‘my-deepseek’ 改写为 ‘deepseek’(直接通过
Deepseek 官方 API) 详细步骤 1. 创建 Cloudflare Worker 登录到 Cloudflare Dashboard 在左侧菜单中选择
“Workers & Pages” 点击 “Create Application” 选择 “Create Worker” 为你的 Worker 命名,然后点击
“Deploy” 进入 Worker 编辑界面 2. 配置环境变量 在 Cloudflare Dashboard 中: 进入你的 Worker 的设置页面 点击
“Settings” 选项卡 找到 “Variables” 部分 点击 “Add variable” 按钮 添加以下环境变量: ...

November 11, 2024 · 933 words · Shawn


免费使用 GITHUB 私有仓库部署网站

前言 本教程详细说明如何使用 Hugo + GitHub Pages + Paper Mod 主题来部署网站,通过私有仓库管理源码,公开仓库发布网站。
最终仓库结构如下所示: 私有仓库 (hugo-source) ├── content/ │ └── posts/ │ └── hello-world.md #
原始文章 ├── themes/ ├── hugo.yaml └── public/ # 这个文件夹是一个独立的 git 仓库 ├── index.html #
构建后的文件 ├── posts/ │ └── hello-world/ │ └── index.html # 构建后的文章 └── ... 公开仓库
(username.github.io) ├── index.html # 与 public 文件夹中的文件相同 ├── posts/ │ └──
hello-world/ │ └── index.html └── ... 步骤 1. 创建两个 GitHub 仓库 - 私有仓库:hugo-source
(用于存放源码) - 公开仓库:username.github.io (用于发布网站) 2. 安装必要工具 # 安装 Hugo (以 Ubuntu 为例) #
sudo apt install hugo # 安装 Hugo (以 Mac 为例) brew install hugo # 验证安装 hugo version
3. 创建新的 Hugo 站点 # 创建新站点, --format yaml 指定hugo 配置文件使用 yaml 格式,默认是toml格式 hugo new
site /Users/yourname/Documents/hugo-source --format yaml cd
/Users/yourname/Documents/hugo-source # 初始化 git 仓库 git init 4. 安装 PaperMod 主题
git submodule add --depth=1 https://github.com/adityatelange/hugo-PaperMod.git
themes/PaperMod git submodule update --init --recursive # needed when you
reclone your repo (submodules may not get cloned automatically) 5. 配置 hugo.yaml
点击查看 ▼ baseURL: https://username.github.io/ languageCode: en-us title: My Blog
theme: PaperMod # 基础设置 enableGitInfo: false enableEmoji: true # 支持 emoji 显示
paginate: 10 # 一页显示10篇文章 # params底下的应该是PaperMod的设置 params: homeInfoParams:
Title: "👋 Welcome to My Blog" Content: "Hi, this is my blog." socialIcons: -
name: "rss" url: "/index.xml" - name: "email" url: "your_email@example.com" -
name: "github" url: "https://github.com/username" label: text: "User's Blog"
icon: /favicon.ico # 导航栏显示的图标 iconHeight: 35 # 控制导航栏图标大小 assets: disableHLJS:
true favicon: "/favicon.ico" favicon16x16: "/favicon-16x16.png" favicon32x32:
"/favicon-32x32.png" # apple_touch_icon: "/apple-touch-icon.png" #
android_chrome_192: "/android-chrome-192x192.png" # android_chrome_512:
"/android-chrome-512x512.png" env: production defaultTheme: auto
disableSpecial1stPost: true ShowRssButtonInSectionTermList: true ShowToc: true #
文章设置 ShowReadingTime: false # 显示阅读时间 ShowPostNavLinks: true ShowBreadCrumbs:
true ShowCodeCopyButtons: true ShowWordCount: true # 显示字数统计 ShowAuthor: true #
显示作者 menu: main: - name: Posts url: /posts/ weight: 1 - name: Archive url:
/archive/ weight: 2 - name: Search url: /search/ weight: 3 - name: Tags url:
/tags/ weight: 4 # 输出设置 outputs: home: - HTML - RSS - JSON # 用于搜索功能 section: -
HTML # 文章页面设置 permalinks: posts: /posts/:year-:month-:day-:filename/ # Markdown
渲染设置 markup: goldmark: renderer: unsafe: true 6. 配置搜索和归档功能 为了确保搜索功能正常工作,创建
content/search.md: ...

November 10, 2024 · 1074 words · Shawn


HELLO WORLD

My First Post Hello World! This is my first post.

November 10, 2024 · 10 words
© 2024 Shawn's Blog · Powered by Hugo & PaperMod