Total Pageviews

Wednesday, 9 September 2026

利用ff的插件 easy-youtube-video-downloader 下载youtube video

 https://addons.mozilla.org/en-US/firefox/addon/easy-youtube-video-download/

官网: https://www.yourvideofile.org/

不错, 确实可以下载youtube video。

 

 

对中国, 川普变脸

 

利用chrome的扩展chrono来嗅探/下载在线播放的音视频

安装地址:

https://chromewebstore.google.com/detail/chrono%E4%B8%8B%E8%BD%BD%E7%AE%A1%E7%90%86%E5%99%A8/mciiogijehkdemklbdcbfkefimifhecn

安装扩展后,点击扩展图标,再点击下图所指的图标,来切换到Chrone的「资源嗅探器」功能。
之后,在弹出的Chrono资源嗅探器中,则可以轻松的嗅探出当前网页上正在播放的音频/视频。

这时我们点击开始即可把文件下载到Chrono的默认下载目录。

当然不止音频,大多数视频都可以用资源嗅探器来获取轻松下载。
备注:

如果没有嗅探到下载地址:

    刷新页面后,确保你的音频 / 视频正在播放中,再点资源嗅探.

    还是没有下载地址的话,可能是网站有防下载措施(多是视频类课程),这种视频想下载一般只能靠盗录。

官网: https://www.chronodownloader.net/

------

挺不错的,porno video也可以嗅探到。 

翻墙工具 am-cf-trojan 和 am-cf-tunnel

 https://github.com/amclubs/am-cf-trojan

 https://github.com/amclubs/am-cf-tunnel

 https://github.com/amclubs/am-cf-tunnel-sub/

博文: https://amclubss.vercel.app/snippets_trojan

google gemini帮我解决qdb-350ec8.gitlab.io不能公开访问的问题

 访问https://gitlab.com/briteming/qdb/edit ,

在'Visibility, project features, permissions'那行,Project visibility设为public,

勾选 Users can request access,其他默认的选项值不要动,然后点击底部的save changes按钮。qdb-350ec8.gitlab.io就能公开访问了。

相关帖子: https://briteming.blogspot.com/2026/09/gitlab-pages.html

Monday, 7 September 2026

如何将静态网站根目录的内容推送到 GitLab Pages



与普通 Git 推送有所不同:GitLab Pages 必须依赖 .gitlab-ci.yml 自动化构建文件,且网页文件必须存放在构建产物文件夹(通常命名为 public)中,GitLab 才会自动将其部署发布。

以下是将本地的静态网站根目录推送到 GitLab Pages 的最简流程:

第一步:在项目根目录里,创建 CI/CD 配置文件.

在包含 index.html 的本地网站根目录下,新建一个名为 .gitlab-ci.yml 的文件,并写入以下内容

pages:
  stage: deploy
  script:
    - mkdir -p public
    # 将根目录下除 public 以外的所有静态文件复制到 public 文件夹中
    - cp -r $(ls -A | grep -v '^public$') public/
  artifacts:
    paths:
      - public
  rules:
    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH


原理说明:GitLab Pages 要求最终对外展示的文件存放在名为 public 的产物(artifacts)目录中。上面的脚本会在 GitLab 服务器端自动创建 public 目录并将根目录的文件复制进去,不需要改动你本地的文件结构。

第二步:提交并推送根目录内容在终端中依次运行以下命令,将代码推送到 GitLab:

1.初始化与添加文件:确认已在项目根目录下,将所有文件(包括新建的 .gitlab-ci.yml)加入 Git:
git init .
git add .
git commit -m "xx"


2.关联 GitLab 远程仓库:先在 GitLab.com/your-username/上新建一个空仓库,我新建的空仓库是qdb, 仓库地址是
https://gitlab.com/briteming/qdb
复制 SSH 或 HTTPS 仓库链接并关联:
git remote set-url origin https://gitlab.com/你的用户名/你的仓库名
(我的情况为git remote set-url origin https://gitlab.com/briteming/qdb)

3.推送至 GitLab:将代码推送到主分支:
git branch -m main

git push -f origin main

演示静态网站的网址:https://briteming.gitlab.io/qdb,会跳转到

https://qdb-350ec8.gitlab.io/ (要登录gitlab.com后,才能打开该网站。有点奇怪

验证部署:

    推送完成后,打开 GitLab仓库页面,进入侧边栏的 Build > Pipelines(构建 > 流水线)。

    等待名为 pages 的任务运行完毕(显示绿色勾标志)。

    进入侧边栏的 Deploy > Pages。

--------------------------------------------

 多亏了google gemini的指点,才搞定。真不容易,看下面的内容,看半天,没看明白:

 https://docs.gitlab.com/user/project/pages/
https://docs.gitlab.com/user/project/pages/introduction/

 https://about.gitlab.com/blog/gitlab-pages-setup/
https://docs.gitlab.com/ci/environments/deployments/

( https://docs.gitlab.com/user/ssh/)


Chatbox


Powerful AI Client.

Your Ultimate AI Copilot on the Desktop.
Chatbox is a desktop client for ChatGPT, Claude and other LLMs, available on Windows, Mac, Linux

macOS Windows Linux Downloads Privacy

Chatbox - Better UI & Desktop App for ChatGPT, Claude and other LLMs. | Product Hunt chatboxai%2Fchatbox | Trendshift

This is the repository for the Chatbox Community Edition, open-sourced under the GPLv3 license.

Chatbox is going open-source Again!

We regularly sync code from the pro repo to this repo, and vice versa.

Download

Desktop

Windows MacOS Linux

Setup.exe

Intel

Apple Silicon

AppImage

iOS/Android

.APK

For more information: chatboxai.app

Quick Start

For End Users

  1. Download the appropriate installer for your platform from the releases page
  2. Install and launch Chatbox
  3. Configure your AI provider (OpenAI, Claude, etc.) in settings
  4. Start chatting!

System Requirements

Platform Minimum Version Architecture
Windows Windows 10 x64
macOS macOS 11 (Big Sur) Intel/Apple Silicon
Linux Ubuntu 20.04+ / AppImage supported distros x64

Features

🤖 AI Model Support

  • Support for Multiple LLM Providers
    ⚙️ Seamlessly integrate with a variety of cutting-edge language models:

    • OpenAI (ChatGPT)
    • Azure OpenAI
    • Claude
    • Google Gemini Pro
    • Ollama (enable access to local models like llama2, Mistral, Mixtral, codellama, vicuna, yi, and solar)
    • ChatGLM-6B
  • Image Generation with Dall-E-3
    🎨 Create the images of your imagination with Dall-E-3.

  • Enhanced Prompting
    💬 Advanced prompting features to refine and focus your queries for better responses.

🖥️ User Experience

  • Local Data Storage
    💾 Your data remains on your device, ensuring it never gets lost and maintains your privacy.

  • No-Deployment Installation Packages
    📦 Get started quickly with downloadable installation packages. No complex setup necessary!

  • Ergonomic UI & Dark Theme
    🌑 A user-friendly interface with a night mode option for reduced eye strain during extended use.

  • Keyboard Shortcuts
    ⌨️ Stay productive with shortcuts that speed up your workflow.

  • Streaming Reply
    ▶️ Provide rapid responses to your interactions with immediate, progressive replies.

📄 Content & Formatting

  • Markdown, Latex & Code Highlighting
    📜 Generate messages with the full power of Markdown and Latex formatting, coupled with syntax highlighting for various programming languages, enhancing readability and presentation.

  • Prompt Library & Message Quoting
    📚 Save and organize prompts for reuse, and quote messages for context in discussions.

👥 Collaboration & Sharing

  • Team Collaboration
    👥 Collaborate with ease and share OpenAI API resources among your team. Learn More

🌐 Platform Availability

  • Cross-Platform Desktop
    💻 Chatbox is ready for Windows, Mac, and Linux users.

  • Web Version
    🌐 Use the web application on any device with a browser, anywhere.

  • Mobile Apps
    ☎️ Native iOS and Android applications for on-the-go access.

🌍 Localization

  • Multilingual Support
    🌎 Catering to a global audience by offering support in multiple languages:
    • English
    • 简体中文 (Simplified Chinese)
    • 繁體中文 (Traditional Chinese)
    • 日本語 (Japanese)
    • 한국어 (Korean)
    • Français (French)
    • Deutsch (German)
    • Русский (Russian)
    • Español (Spanish)

✨ More Features

  • And More...
    ✨ Constantly enhancing the experience with new features!

FAQ

from  https://github.com/chatboxai/chatbox