├── .gitignore ├── .vscode ├── extensions.json └── launch.json ├── README.md ├── astro.config.mjs ├── create_post.sh ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── public ├── favicon.svg └── maps │ ├── china.json │ └── world.zh.json ├── src ├── assets │ ├── article-index │ │ ├── article-indexer-cli │ │ └── article-indexer-cli.exe │ └── wasm │ │ ├── article-filter │ │ ├── article_filter.js │ │ └── article_filter_bg.wasm │ │ ├── geo │ │ ├── geo_wasm.js │ │ └── geo_wasm_bg.wasm │ │ └── search │ │ ├── search_wasm.js │ │ └── search_wasm_bg.wasm ├── components │ ├── ArticleFilter.tsx │ ├── Breadcrumb.astro │ ├── Countdown.tsx │ ├── DoubanCollection.tsx │ ├── Footer.astro │ ├── GitProjectCollection.tsx │ ├── Header.astro │ ├── Layout.astro │ ├── Search.tsx │ ├── ThemeToggle.astro │ ├── WereadBookList.tsx │ ├── WorldHeatmap.tsx │ └── swup-init.js ├── consts.ts ├── content.config.ts ├── content │ ├── android │ │ ├── Android安装linux.md │ │ ├── Android热点开机自启动和VPN热点.md │ │ ├── 一加6t刷3系统思路.md │ │ └── 安装谷歌三件套服务框架.md │ ├── docker │ │ ├── Docker安装typecho.md │ │ ├── Docker部署gitea.md │ │ ├── Docker部署思源笔记.md │ │ ├── 制作数字人.md │ │ ├── 密码管理器—Vaultwarden(bitwarden).md │ │ └── 网盘直链程序—AList.md │ ├── echoes博客使用说明.md │ ├── linux │ │ ├── Centos 7 查看,开放端口.md │ │ ├── Linux美化终端zsh+ohmyzsh.md │ │ ├── SSH使用小技巧.md │ │ ├── Ubuntu安装c语言编译器.md │ │ ├── linux实现定时备份网站到网盘.md │ │ ├── ms17-010(永恒之蓝)漏洞复现.md │ │ ├── 一键卸载宝塔Linux面板及运行环境命令.md │ │ ├── 使用LNMP搭建网站.md │ │ ├── 开启系统自带的TCP-BBR加速.md │ │ └── 手动搭建LNMP.md │ ├── other │ │ ├── ai使用.md │ │ └── markdown使用教程.md │ ├── web │ │ ├── web技术思路.md │ │ ├── 前端与美化 │ │ │ ├── hugo-theme-stack美化教程.md │ │ │ ├── svg文字动画.css │ │ │ ├── svg文字动画.mdx │ │ │ ├── typecho【Handsome】本站魔改备忘录.mdx │ │ │ └── 用rust实现第一个wasm.md │ │ ├── 加速与防护 │ │ │ ├── CDN配置.md │ │ │ ├── Cloudflare_自选IP.md │ │ │ ├── GitHub-Actions自动刷新多吉云_CDN缓存.md │ │ │ ├── 使用宝塔面板受到CC攻击后自动开启 Cloudflare 经典的 5 秒盾.md │ │ │ ├── 充分利用不同cdn的优势.md │ │ │ ├── 宝塔面板下站点如何只限定CDN的IP节点回源请求.md │ │ │ └── 记录一下服务器和网站的安全防护.mdx │ │ ├── 各大搜索引擎站长平台地址汇总.md │ │ └── 部署 │ │ │ ├── nginx配置.md │ │ │ ├── 哪吒面板-服务器状态监控面板-Linux与Windows部署.md │ │ │ ├── 将hugo部署在vercel.md │ │ │ ├── 搭建Chevereto中文版.md │ │ │ ├── 搭建本地图床API可搭配Chevereto使用.md │ │ │ └── 服务器探针(ServerStatus探针)安装教程.md │ ├── windows │ │ ├── Adobe_Photoshop (Beta)使用教程.md │ │ ├── Windows11部分程序中文乱码解决方案[通用解决Windows10].md │ │ ├── Windows用批处理处理图标上的快捷方式和安全盾.md │ │ ├── Windows虚拟化和子系统安装指南.md │ │ ├── vscode配置.md │ │ ├── windows安装adb教程.md │ │ ├── windows终端美化PowerShell+OhMyPosh.md │ │ ├── 在VMware虚拟机上安装MacOS系统.md │ │ ├── 自动刷课.md │ │ ├── 解决Win11右键菜单问题.md │ │ └── 计算机意外的重新启动或遇到错误.md │ ├── 代理 │ │ ├── 3x-ui配置.md │ │ ├── X-UI面板快速搭建和配置.md │ │ ├── centos7.x搭建Tor私人网桥.md │ │ ├── v2board后端对接-XrayR-V2ray-ws-tls-cdn.md │ │ ├── v2board后端对接-soga.md │ │ ├── v2board后端对接-套cloudfront解决被墙和提升速度.md │ │ ├── v2board后端对接v2ray-warp使用Cloudflare-WARP解锁chatgpt-流媒体.md │ │ ├── 一键搭建Telegram的MTProto代理.md │ │ ├── 安装谷歌三件套服务框架.md │ │ └── 搭建v2board前端.md │ ├── 常用软件.md │ ├── 游行笔记 │ │ └── 第一次出国旅行-东南亚.md │ └── 短视频 │ │ ├── 电脑直播.md │ │ ├── 自动化混剪视频.md │ │ └── 视频制作.md ├── pages │ ├── 404.astro │ ├── about.astro │ ├── api │ │ ├── douban.ts │ │ ├── git-projects.ts │ │ └── weread.ts │ ├── articles │ │ ├── [...id].astro │ │ ├── [...path].astro │ │ └── index.astro │ ├── books.astro │ ├── filtered.astro │ ├── index.astro │ ├── movies.astro │ └── projects.astro ├── plugins │ ├── build-article-index.js │ ├── rehype-code-blocks.js │ ├── rehype-tables.js │ ├── robots-integration.js │ ├── rss-integration.js │ └── sitemap-integration.js └── styles │ ├── articles-code.css │ ├── articles-mermaid.css │ ├── articles-table.css │ ├── articles.css │ ├── global.css │ ├── header.css │ ├── swup-transitions.css │ └── theme-toggle.css ├── tsconfig.json ├── vercel.json └── wasm ├── Cargo.lock ├── Cargo.toml ├── article-filter ├── Cargo.toml └── src │ ├── builder.rs │ ├── lib.rs │ └── models.rs ├── article-indexer ├── Cargo.toml └── src │ └── main.rs ├── geo ├── Cargo.toml └── src │ └── lib.rs ├── readme.md ├── search ├── Cargo.toml └── src │ ├── builder.rs │ ├── lib.rs │ └── models.rs └── utils-common ├── Cargo.toml └── src ├── compression.rs ├── lib.rs └── models.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /create_post.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/create_post.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/maps/china.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/public/maps/china.json -------------------------------------------------------------------------------- /public/maps/world.zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/public/maps/world.zh.json -------------------------------------------------------------------------------- /src/assets/article-index/article-indexer-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/assets/article-index/article-indexer-cli -------------------------------------------------------------------------------- /src/assets/article-index/article-indexer-cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/assets/article-index/article-indexer-cli.exe -------------------------------------------------------------------------------- /src/assets/wasm/article-filter/article_filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/assets/wasm/article-filter/article_filter.js -------------------------------------------------------------------------------- /src/assets/wasm/article-filter/article_filter_bg.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/assets/wasm/article-filter/article_filter_bg.wasm -------------------------------------------------------------------------------- /src/assets/wasm/geo/geo_wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/assets/wasm/geo/geo_wasm.js -------------------------------------------------------------------------------- /src/assets/wasm/geo/geo_wasm_bg.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/assets/wasm/geo/geo_wasm_bg.wasm -------------------------------------------------------------------------------- /src/assets/wasm/search/search_wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/assets/wasm/search/search_wasm.js -------------------------------------------------------------------------------- /src/assets/wasm/search/search_wasm_bg.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/assets/wasm/search/search_wasm_bg.wasm -------------------------------------------------------------------------------- /src/components/ArticleFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/components/ArticleFilter.tsx -------------------------------------------------------------------------------- /src/components/Breadcrumb.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/components/Breadcrumb.astro -------------------------------------------------------------------------------- /src/components/Countdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/components/Countdown.tsx -------------------------------------------------------------------------------- /src/components/DoubanCollection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/components/DoubanCollection.tsx -------------------------------------------------------------------------------- /src/components/Footer.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/components/Footer.astro -------------------------------------------------------------------------------- /src/components/GitProjectCollection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/components/GitProjectCollection.tsx -------------------------------------------------------------------------------- /src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/components/Header.astro -------------------------------------------------------------------------------- /src/components/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/components/Layout.astro -------------------------------------------------------------------------------- /src/components/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/components/Search.tsx -------------------------------------------------------------------------------- /src/components/ThemeToggle.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/components/ThemeToggle.astro -------------------------------------------------------------------------------- /src/components/WereadBookList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/components/WereadBookList.tsx -------------------------------------------------------------------------------- /src/components/WorldHeatmap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/components/WorldHeatmap.tsx -------------------------------------------------------------------------------- /src/components/swup-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/components/swup-init.js -------------------------------------------------------------------------------- /src/consts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/consts.ts -------------------------------------------------------------------------------- /src/content.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content.config.ts -------------------------------------------------------------------------------- /src/content/android/Android安装linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/android/Android安装linux.md -------------------------------------------------------------------------------- /src/content/android/Android热点开机自启动和VPN热点.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/android/Android热点开机自启动和VPN热点.md -------------------------------------------------------------------------------- /src/content/android/一加6t刷3系统思路.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/android/一加6t刷3系统思路.md -------------------------------------------------------------------------------- /src/content/android/安装谷歌三件套服务框架.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/android/安装谷歌三件套服务框架.md -------------------------------------------------------------------------------- /src/content/docker/Docker安装typecho.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/docker/Docker安装typecho.md -------------------------------------------------------------------------------- /src/content/docker/Docker部署gitea.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/docker/Docker部署gitea.md -------------------------------------------------------------------------------- /src/content/docker/Docker部署思源笔记.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/docker/Docker部署思源笔记.md -------------------------------------------------------------------------------- /src/content/docker/制作数字人.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/docker/制作数字人.md -------------------------------------------------------------------------------- /src/content/docker/密码管理器—Vaultwarden(bitwarden).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/docker/密码管理器—Vaultwarden(bitwarden).md -------------------------------------------------------------------------------- /src/content/docker/网盘直链程序—AList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/docker/网盘直链程序—AList.md -------------------------------------------------------------------------------- /src/content/echoes博客使用说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/echoes博客使用说明.md -------------------------------------------------------------------------------- /src/content/linux/Centos 7 查看,开放端口.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/linux/Centos 7 查看,开放端口.md -------------------------------------------------------------------------------- /src/content/linux/Linux美化终端zsh+ohmyzsh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/linux/Linux美化终端zsh+ohmyzsh.md -------------------------------------------------------------------------------- /src/content/linux/SSH使用小技巧.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/linux/SSH使用小技巧.md -------------------------------------------------------------------------------- /src/content/linux/Ubuntu安装c语言编译器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/linux/Ubuntu安装c语言编译器.md -------------------------------------------------------------------------------- /src/content/linux/linux实现定时备份网站到网盘.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/linux/linux实现定时备份网站到网盘.md -------------------------------------------------------------------------------- /src/content/linux/ms17-010(永恒之蓝)漏洞复现.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/linux/ms17-010(永恒之蓝)漏洞复现.md -------------------------------------------------------------------------------- /src/content/linux/一键卸载宝塔Linux面板及运行环境命令.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/linux/一键卸载宝塔Linux面板及运行环境命令.md -------------------------------------------------------------------------------- /src/content/linux/使用LNMP搭建网站.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/linux/使用LNMP搭建网站.md -------------------------------------------------------------------------------- /src/content/linux/开启系统自带的TCP-BBR加速.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/linux/开启系统自带的TCP-BBR加速.md -------------------------------------------------------------------------------- /src/content/linux/手动搭建LNMP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/linux/手动搭建LNMP.md -------------------------------------------------------------------------------- /src/content/other/ai使用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/other/ai使用.md -------------------------------------------------------------------------------- /src/content/other/markdown使用教程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/other/markdown使用教程.md -------------------------------------------------------------------------------- /src/content/web/web技术思路.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/web技术思路.md -------------------------------------------------------------------------------- /src/content/web/前端与美化/hugo-theme-stack美化教程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/前端与美化/hugo-theme-stack美化教程.md -------------------------------------------------------------------------------- /src/content/web/前端与美化/svg文字动画.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/前端与美化/svg文字动画.css -------------------------------------------------------------------------------- /src/content/web/前端与美化/svg文字动画.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/前端与美化/svg文字动画.mdx -------------------------------------------------------------------------------- /src/content/web/前端与美化/typecho【Handsome】本站魔改备忘录.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/前端与美化/typecho【Handsome】本站魔改备忘录.mdx -------------------------------------------------------------------------------- /src/content/web/前端与美化/用rust实现第一个wasm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/前端与美化/用rust实现第一个wasm.md -------------------------------------------------------------------------------- /src/content/web/加速与防护/CDN配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/加速与防护/CDN配置.md -------------------------------------------------------------------------------- /src/content/web/加速与防护/Cloudflare_自选IP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/加速与防护/Cloudflare_自选IP.md -------------------------------------------------------------------------------- /src/content/web/加速与防护/GitHub-Actions自动刷新多吉云_CDN缓存.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/加速与防护/GitHub-Actions自动刷新多吉云_CDN缓存.md -------------------------------------------------------------------------------- /src/content/web/加速与防护/使用宝塔面板受到CC攻击后自动开启 Cloudflare 经典的 5 秒盾.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/加速与防护/使用宝塔面板受到CC攻击后自动开启 Cloudflare 经典的 5 秒盾.md -------------------------------------------------------------------------------- /src/content/web/加速与防护/充分利用不同cdn的优势.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/加速与防护/充分利用不同cdn的优势.md -------------------------------------------------------------------------------- /src/content/web/加速与防护/宝塔面板下站点如何只限定CDN的IP节点回源请求.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/加速与防护/宝塔面板下站点如何只限定CDN的IP节点回源请求.md -------------------------------------------------------------------------------- /src/content/web/加速与防护/记录一下服务器和网站的安全防护.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/加速与防护/记录一下服务器和网站的安全防护.mdx -------------------------------------------------------------------------------- /src/content/web/各大搜索引擎站长平台地址汇总.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/各大搜索引擎站长平台地址汇总.md -------------------------------------------------------------------------------- /src/content/web/部署/nginx配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/部署/nginx配置.md -------------------------------------------------------------------------------- /src/content/web/部署/哪吒面板-服务器状态监控面板-Linux与Windows部署.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/部署/哪吒面板-服务器状态监控面板-Linux与Windows部署.md -------------------------------------------------------------------------------- /src/content/web/部署/将hugo部署在vercel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/部署/将hugo部署在vercel.md -------------------------------------------------------------------------------- /src/content/web/部署/搭建Chevereto中文版.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/部署/搭建Chevereto中文版.md -------------------------------------------------------------------------------- /src/content/web/部署/搭建本地图床API可搭配Chevereto使用.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/部署/搭建本地图床API可搭配Chevereto使用.md -------------------------------------------------------------------------------- /src/content/web/部署/服务器探针(ServerStatus探针)安装教程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/web/部署/服务器探针(ServerStatus探针)安装教程.md -------------------------------------------------------------------------------- /src/content/windows/Adobe_Photoshop (Beta)使用教程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/windows/Adobe_Photoshop (Beta)使用教程.md -------------------------------------------------------------------------------- /src/content/windows/Windows11部分程序中文乱码解决方案[通用解决Windows10].md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/windows/Windows11部分程序中文乱码解决方案[通用解决Windows10].md -------------------------------------------------------------------------------- /src/content/windows/Windows用批处理处理图标上的快捷方式和安全盾.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/windows/Windows用批处理处理图标上的快捷方式和安全盾.md -------------------------------------------------------------------------------- /src/content/windows/Windows虚拟化和子系统安装指南.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/windows/Windows虚拟化和子系统安装指南.md -------------------------------------------------------------------------------- /src/content/windows/vscode配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/windows/vscode配置.md -------------------------------------------------------------------------------- /src/content/windows/windows安装adb教程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/windows/windows安装adb教程.md -------------------------------------------------------------------------------- /src/content/windows/windows终端美化PowerShell+OhMyPosh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/windows/windows终端美化PowerShell+OhMyPosh.md -------------------------------------------------------------------------------- /src/content/windows/在VMware虚拟机上安装MacOS系统.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/windows/在VMware虚拟机上安装MacOS系统.md -------------------------------------------------------------------------------- /src/content/windows/自动刷课.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/windows/自动刷课.md -------------------------------------------------------------------------------- /src/content/windows/解决Win11右键菜单问题.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/windows/解决Win11右键菜单问题.md -------------------------------------------------------------------------------- /src/content/windows/计算机意外的重新启动或遇到错误.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/windows/计算机意外的重新启动或遇到错误.md -------------------------------------------------------------------------------- /src/content/代理/3x-ui配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/代理/3x-ui配置.md -------------------------------------------------------------------------------- /src/content/代理/X-UI面板快速搭建和配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/代理/X-UI面板快速搭建和配置.md -------------------------------------------------------------------------------- /src/content/代理/centos7.x搭建Tor私人网桥.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/代理/centos7.x搭建Tor私人网桥.md -------------------------------------------------------------------------------- /src/content/代理/v2board后端对接-XrayR-V2ray-ws-tls-cdn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/代理/v2board后端对接-XrayR-V2ray-ws-tls-cdn.md -------------------------------------------------------------------------------- /src/content/代理/v2board后端对接-soga.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/代理/v2board后端对接-soga.md -------------------------------------------------------------------------------- /src/content/代理/v2board后端对接-套cloudfront解决被墙和提升速度.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/代理/v2board后端对接-套cloudfront解决被墙和提升速度.md -------------------------------------------------------------------------------- /src/content/代理/v2board后端对接v2ray-warp使用Cloudflare-WARP解锁chatgpt-流媒体.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/代理/v2board后端对接v2ray-warp使用Cloudflare-WARP解锁chatgpt-流媒体.md -------------------------------------------------------------------------------- /src/content/代理/一键搭建Telegram的MTProto代理.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/代理/一键搭建Telegram的MTProto代理.md -------------------------------------------------------------------------------- /src/content/代理/安装谷歌三件套服务框架.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/代理/安装谷歌三件套服务框架.md -------------------------------------------------------------------------------- /src/content/代理/搭建v2board前端.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/代理/搭建v2board前端.md -------------------------------------------------------------------------------- /src/content/常用软件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/常用软件.md -------------------------------------------------------------------------------- /src/content/游行笔记/第一次出国旅行-东南亚.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/游行笔记/第一次出国旅行-东南亚.md -------------------------------------------------------------------------------- /src/content/短视频/电脑直播.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/短视频/电脑直播.md -------------------------------------------------------------------------------- /src/content/短视频/自动化混剪视频.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/短视频/自动化混剪视频.md -------------------------------------------------------------------------------- /src/content/短视频/视频制作.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/content/短视频/视频制作.md -------------------------------------------------------------------------------- /src/pages/404.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/pages/404.astro -------------------------------------------------------------------------------- /src/pages/about.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/pages/about.astro -------------------------------------------------------------------------------- /src/pages/api/douban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/pages/api/douban.ts -------------------------------------------------------------------------------- /src/pages/api/git-projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/pages/api/git-projects.ts -------------------------------------------------------------------------------- /src/pages/api/weread.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/pages/api/weread.ts -------------------------------------------------------------------------------- /src/pages/articles/[...id].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/pages/articles/[...id].astro -------------------------------------------------------------------------------- /src/pages/articles/[...path].astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/pages/articles/[...path].astro -------------------------------------------------------------------------------- /src/pages/articles/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/pages/articles/index.astro -------------------------------------------------------------------------------- /src/pages/books.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/pages/books.astro -------------------------------------------------------------------------------- /src/pages/filtered.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/pages/filtered.astro -------------------------------------------------------------------------------- /src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/pages/index.astro -------------------------------------------------------------------------------- /src/pages/movies.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/pages/movies.astro -------------------------------------------------------------------------------- /src/pages/projects.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/pages/projects.astro -------------------------------------------------------------------------------- /src/plugins/build-article-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/plugins/build-article-index.js -------------------------------------------------------------------------------- /src/plugins/rehype-code-blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/plugins/rehype-code-blocks.js -------------------------------------------------------------------------------- /src/plugins/rehype-tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/plugins/rehype-tables.js -------------------------------------------------------------------------------- /src/plugins/robots-integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/plugins/robots-integration.js -------------------------------------------------------------------------------- /src/plugins/rss-integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/plugins/rss-integration.js -------------------------------------------------------------------------------- /src/plugins/sitemap-integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/plugins/sitemap-integration.js -------------------------------------------------------------------------------- /src/styles/articles-code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/styles/articles-code.css -------------------------------------------------------------------------------- /src/styles/articles-mermaid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/styles/articles-mermaid.css -------------------------------------------------------------------------------- /src/styles/articles-table.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/styles/articles-table.css -------------------------------------------------------------------------------- /src/styles/articles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/styles/articles.css -------------------------------------------------------------------------------- /src/styles/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/styles/global.css -------------------------------------------------------------------------------- /src/styles/header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/styles/header.css -------------------------------------------------------------------------------- /src/styles/swup-transitions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/styles/swup-transitions.css -------------------------------------------------------------------------------- /src/styles/theme-toggle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/src/styles/theme-toggle.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/vercel.json -------------------------------------------------------------------------------- /wasm/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/Cargo.lock -------------------------------------------------------------------------------- /wasm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/Cargo.toml -------------------------------------------------------------------------------- /wasm/article-filter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/article-filter/Cargo.toml -------------------------------------------------------------------------------- /wasm/article-filter/src/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/article-filter/src/builder.rs -------------------------------------------------------------------------------- /wasm/article-filter/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/article-filter/src/lib.rs -------------------------------------------------------------------------------- /wasm/article-filter/src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/article-filter/src/models.rs -------------------------------------------------------------------------------- /wasm/article-indexer/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/article-indexer/Cargo.toml -------------------------------------------------------------------------------- /wasm/article-indexer/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/article-indexer/src/main.rs -------------------------------------------------------------------------------- /wasm/geo/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/geo/Cargo.toml -------------------------------------------------------------------------------- /wasm/geo/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/geo/src/lib.rs -------------------------------------------------------------------------------- /wasm/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/readme.md -------------------------------------------------------------------------------- /wasm/search/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/search/Cargo.toml -------------------------------------------------------------------------------- /wasm/search/src/builder.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/search/src/builder.rs -------------------------------------------------------------------------------- /wasm/search/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/search/src/lib.rs -------------------------------------------------------------------------------- /wasm/search/src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/search/src/models.rs -------------------------------------------------------------------------------- /wasm/utils-common/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/utils-common/Cargo.toml -------------------------------------------------------------------------------- /wasm/utils-common/src/compression.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/utils-common/src/compression.rs -------------------------------------------------------------------------------- /wasm/utils-common/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/utils-common/src/lib.rs -------------------------------------------------------------------------------- /wasm/utils-common/src/models.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lsy2246/newechoes/HEAD/wasm/utils-common/src/models.rs --------------------------------------------------------------------------------