ByteCanvas

Stay close to every update.

A clean timeline for posts, media, and conversations from your channel.

分享一些日常收集到的开源软件、开发工具和技术知识。

Earlier Posts

Continue browsing older updates

GitMind:在普通 XMind 思维导图的基础上支持了 AI 目前全免费的AI识别图片、文件,一键生成思维导图(不用非要手敲)。给一个主题,AI大模型会帮生成内容,可在没思路的时候给予灵感。 补充:每天签到可以拿使用点数 https://gitmind.cn/mindmap
GitMind:在普通 XMind 思维导图的基础上支持了 AI

目前全免费的AI识别图片、文件,一键生成思维导图(不用非要手敲)。给一个主题,AI大模型会帮生成内容,可在没思路的时候给予灵感。

补充:每天签到可以拿使用点数

https://gitmind.cn/mindmap
https://github.com/AdguardTeam/HostlistsRegistry/tree/main/filters/general/filter_53_AWAvenueAdsRule 秋风广告规则:开源轻量可靠的去广告解决方案 秋风广告规则(AWAvenue-Ads-Rule)基于 Adblock 语法,高效拦截 Android 应用中的广告 SDK,从网络层面阻止摇一摇等广告加载,现已被 AdGuard 收录。 特色:使用成本低,无需逐一配置应用;适配范围广,支持路由器等多场景部署,实现全局无感去广告;更新日志透明,用户可随时查看拦截效果和规则变化。 #ads GitHub HostlistsRegistry/filters/general/filter_53_AWAvenueAdsRule at main · AdguardTeam/HostlistsRegistry Known hosts blocklists that are made available to the users of AdGuard products - AdguardTeam/HostlistsRegistry
https://github.com/AdguardTeam/HostlistsRegistry/tree/main/filters/general/filter_53_AWAvenueAdsRule

秋风广告规则:开源轻量可靠的去广告解决方案

秋风广告规则(AWAvenue-Ads-Rule)基于 Adblock 语法,高效拦截 Android 应用中的广告 SDK,从网络层面阻止摇一摇等广告加载,现已被 AdGuard 收录。

特色:使用成本低,无需逐一配置应用;适配范围广,支持路由器等多场景部署,实现全局无感去广告;更新日志透明,用户可随时查看拦截效果和规则变化。
#ads HostlistsRegistry/filters/general/filter_53_AWAvenueAdsRule at main · AdguardTeam/HostlistsRegistry
FFmpeg: https://ffmpeg.org/download.html ffmpeg -version # 檢查 FFmpeg 是否安裝成功 ffmpeg -i 2.mp4 -ss 00:00:00 -t 00:59:00 -c copy output21.mp4 #从开始到指定时间 ffmpeg -i 2.mp4 -ss 00:59:00 -c copy output22.mp4 #从指定时间到结束 #ffmpeg
FFmpeg:https://ffmpeg.org/download.html

ffmpeg -version # 檢查 FFmpeg 是否安裝成功

ffmpeg -i 2.mp4 -ss 00:00:00 -t 00:59:00 -c copy output21.mp4 #从开始到指定时间

ffmpeg -i 2.mp4 -ss 00:59:00 -c copy output22.mp4  #从指定时间到结束

#ffmpeg
Text2Voice Web 一个简单的文本转语音应用程序,支持通过 API 调用将文本转换为语音,并提供在线试听和下载功能。该项目包括一个使用 Bootstrap 构建的前端页面,支持通过 Cloudflare Pages 部署。 https://github.com/bestZwei/text2voice-web?tab=readme-ov-file #cloudflare GitHub GitHub - bestZwei/text2voice-web: TTS WEB TTS WEB. Contribute to bestZwei/text2voice-web development by creating an account on GitHub.
Text2Voice Web
一个简单的文本转语音应用程序,支持通过 API 调用将文本转换为语音,并提供在线试听和下载功能。该项目包括一个使用 Bootstrap 构建的前端页面,支持通过 Cloudflare Pages 部署。

https://github.com/bestZwei/text2voice-web?tab=readme-ov-file

#cloudflare
博客新建导航标签 首先确保你的项目结构如下: Copy项目根目录 / ├── docker / │ ├── index . md │ └── 2024 - 03 - 17 - first - post . md └── docusaurus . config . js 检查每个文章的前置元数据格式是否正确: 确保日期格式为 YYYY-MM-DD 文件名必须以日期开头 slug 是必须的 title 是必须的 // docusaurus.config.js module . exports = { // ... 其他配置 i18n : { defaultLocale : 'zh-CN' , locales : [ 'zh-CN' ] , } , plugins : [ [ '@docusaurus/plugin-content-blog' , { id : 'docker-blog' , routeBasePath : 'docker' , path : './docker' , blogTitle : 'Docker Blog' , blogDescription : 'Docker 相关技术文章和教程' , blogSidebarCount : 'ALL' , blogSidebarTitle : 'Docker 文章' , // 确保文章使用正确的日期格式 postsPerPage : 10 , } , ] , ] , themeConfig : { navbar : { items : [ // ... 其他导航项 { to : '/docker' , label : 'Docker' , position : 'left' , } , ] , } , } , } ; // docker/index.md (添加一个索引页) -- - slug : / docker title : Docker 文章列表 -- - 欢迎访问 Docker 技术专栏! // docker/2024-03-17-first-post.md (示例文章) -- - slug : first - post title : Docker 入门指南 authors : - name : Your Name title : Developer date : 2024 - 03 - 17 tags : [ docker , guide ] -- - 这是一篇 Docker 入门指南 ... !!! #blog
博客新建导航标签


首先确保你的项目结构如下:
Copy项目根目录/
├── docker/
│   ├── index.md
│   └── 2024-03-17-first-post.md
└── docusaurus.config.js

检查每个文章的前置元数据格式是否正确:


确保日期格式为 YYYY-MM-DD
文件名必须以日期开头
slug 是必须的
title 是必须的

// docusaurus.config.js
module.exports = {
  // ... 其他配置
  i18n: {
    defaultLocale: 'zh-CN',
    locales: ['zh-CN'],
  },
  
  plugins: [
    [
      '@docusaurus/plugin-content-blog',
      {
        id: 'docker-blog',
        routeBasePath: 'docker',
        path: './docker',
        blogTitle: 'Docker Blog',
        blogDescription: 'Docker 相关技术文章和教程',
        blogSidebarCount: 'ALL',
        blogSidebarTitle: 'Docker 文章',
        // 确保文章使用正确的日期格式
        postsPerPage: 10,
      },
    ],
  ],

  themeConfig: {
    navbar: {
      items: [
        // ... 其他导航项
        {
          to: '/docker',
          label: 'Docker',
          position: 'left',
        },
      ],
    },
  },
};

// docker/index.md (添加一个索引页)
---
slug: /docker
title: Docker 文章列表
---

欢迎访问 Docker 技术专栏!

// docker/2024-03-17-first-post.md (示例文章)
---
slug: first-post
title: Docker 入门指南
authors: 
  - name: Your Name
    title: Developer
date: 2024-03-17
tags: [docker, guide]
---

这是一篇 Docker 入门指南...



!!!
#blog
Charles激活码生成器 轻松获取Charles激活码,一键搞定! https://charles.asuhe.org https://lab.asuhe.org/ #charles charles.asuhe.org Charles Keygen - Charles激活码生成器 Charles激活码在线生成工具,支持最新版Charles代理工具的激活码生成、注册码生成和破解
腾讯官方公众号今日宣布,旗下 AI 智能工作台 ima 现已正式上线,其除了能完成其余大模型 AI 问答产品的功能(问答、创作文字、生成图片等)以外,还打通了微信公众号文章的生态,整个公众号世界里的知识都可为用户所用。 ima 还支持边问边看、边搜边记,本地资料也支持总结内容、提炼要点、生成思维导图,并支持翻译多国语言。 https://ima.qq.com/ #ima
腾讯官方公众号今日宣布,旗下 AI 智能工作台 ima 现已正式上线,其除了能完成其余大模型 AI 问答产品的功能(问答、创作文字、生成图片等)以外,还打通了微信公众号文章的生态,整个公众号世界里的知识都可为用户所用。

ima 还支持边问边看、边搜边记,本地资料也支持总结内容、提炼要点、生成思维导图,并支持翻译多国语言。

https://ima.qq.com/

#ima
https://github.com/BewlyBewly/BewlyBewly #bilibili GitHub GitHub - BewlyBewly/BewlyBewly: Just make a few small changes to your Bilibili homepage. (English | 简体中文 | 正體中文 | 廣東話) Just make a few small changes to your Bilibili homepage. (English | 简体中文 | 正體中文 | 廣東話) - BewlyBewly/BewlyBewly
https://github.com/EvanNotFound/hexo-theme-redefine GitHub GitHub - EvanNotFound/hexo-theme-redefine: Fast, Pure, Elegant. Hexo, Redefined. Fast, Pure, Elegant. Hexo, Redefined. Contribute to EvanNotFound/hexo-theme-redefine development by creating an account on GitHub.
#Cloudflare ☁️ 开源作者有福啦!免费升级 Cloudflare Pro 申请地址: www.cloudflare.com/zh-cn/lp/project-alexandria/ Cloudflare推出「Project Alexandria」,为开源开发者免费升级 Cloudflare Pro、Business 或 Enterprise 计划,以及增加 Workers、Pages、R2存储等 申请条件是维护一个具有公认开源许可证的开源项目,并仅以非营利方式运作 Cloudflare 博客 Expanding Cloudflare’s support for open source projects with Project Alexandria At Cloudflare, we believe in the power of open source. With Project Alexandria, our expanded open source program, we’re helping open source projects have a sustainable and scalable future, providing them with the tools and protection needed to thrive.
https://github.com/gdtool/cloudflare-workers-blog 这是一个运行在cloudflare workers 上的博客程序,使用 cloudflare KV作为数据库,无其他依赖. 兼容静态博客的速度,以及动态博客的灵活性,方便搭建不折腾.很稳定 演示地址: https://blog.gezhong.vip #cf GitHub GitHub - gdtool/cloudflare-workers-blog: A Blog Powered By Cloudflare Workers and KV A Blog Powered By Cloudflare Workers and KV . Contribute to gdtool/cloudflare-workers-blog development by creating an account on GitHub.
https://github.com/gdtool/cloudflare-workers-blog

这是一个运行在cloudflare workers 上的博客程序,使用 cloudflare KV作为数据库,无其他依赖. 兼容静态博客的速度,以及动态博客的灵活性,方便搭建不折腾.很稳定 演示地址: https://blog.gezhong.vip

#cf
https://github.com/xiaomingTang/img-handler 一个图片拼接工具 #image GitHub GitHub - xiaomingTang/img-handler: 图片拼接工具 图片拼接工具. Contribute to xiaomingTang/img-handler development by creating an account on GitHub.
https://github.com/AykutSarac/jsoncrack.com ✨ Innovative and open-source visualization application that transforms various data formats, such as JSON, YAML, XML, CSV and more, into interactive graphs. #json GitHub GitHub - AykutSarac/jsoncrack.com: ✨ Innovative and open-source visualization application that transforms various data formats… ✨ Innovative and open-source visualization application that transforms various data formats, such as JSON, YAML, XML and CSV into interactive graphs. - AykutSarac/jsoncrack.com
https://github.com/yt-dlp/yt-dlp 超级影音下载工具 yt-dlp 覆盖 YouTube/Tiltok/Bilibili/抖音/Ins 等数千平台(GitHub目前已被star 86.8k) 核心功能: - 支持数千个网站的音视频下载 - 提供丰富的命令行选项 - 支持各种格式的视频/音频处理 - 具备地理限制规避功能 #download GitHub GitHub - yt-dlp/yt-dlp: A feature-rich command-line audio/video downloader A feature-rich command-line audio/video downloader - yt-dlp/yt-dlp
https://github.com/yt-dlp/yt-dlp


超级影音下载工具 yt-dlp

覆盖 YouTube/Tiltok/Bilibili/抖音/Ins 等数千平台(GitHub目前已被star 86.8k)

核心功能:
- 支持数千个网站的音视频下载
- 提供丰富的命令行选项
- 支持各种格式的视频/音频处理
- 具备地理限制规避功能
#download GitHub - yt-dlp/yt-dlp: A feature-rich command-line audio/video downloader
不错一次给这么多 😬
不错一次给这么多😬
https://github.com/ipfs/public-gateway-checker IPFS Public Gateway Checker A site displaying public IPFS gateways and their online/offline status. GitHub GitHub - ipfs/public-gateway-checker: Checks which public gateways are online or not Checks which public gateways are online or not. Contribute to ipfs/public-gateway-checker development by creating an account on GitHub.
https://github.com/liseami/screenshot-to-code 将截图转换为干净的代码 一个简单的工具,可使用 AI 将屏幕截图、模型和 Figma 设计转换为干净、实用的代码。现在支持 Claude Sonnet 3.5 和 GPT-4o! GitHub GitHub - liseami/screenshot-to-code: Drop in a screenshot and convert it to clean code (HTML/Tailwind/React/Vue) Drop in a screenshot and convert it to clean code (HTML/Tailwind/React/Vue) - liseami/screenshot-to-code
https://github.com/liseami/screenshot-to-code

将截图转换为干净的代码

一个简单的工具,可使用 AI 将屏幕截图、模型和 Figma 设计转换为干净、实用的代码。现在支持 Claude Sonnet 3.5 和 GPT-4o! GitHub - liseami/screenshot-to-code: Drop in a screenshot and convert it to clean code (HTML/Tailwind/React/Vue)
写了一个vps防止端口扫描的脚本(主要是应对安全引擎的扫描),你们可以试试,支持ipv4&6 portscan_trasp.sh 10.3 KB
写了一个vps防止端口扫描的脚本(主要是应对安全引擎的扫描),你们可以试试,支持ipv4&6
portscan_trasp.sh
10.3 KB
This message is used to verify that this feed (feedId:72873291497609216) belongs to me (userId:59988420981786624). Join me in enjoying the next generation information browser https://follow.is . Folo Folo — AI RSS Reader for deep, noise-free reading with contextual AI.
This message is used to verify that this feed (feedId:72873291497609216) belongs to me (userId:59988420981786624). Join me in enjoying the next generation information browser https://follow.is. Folo — AI RSS Reader for deep, noise-free reading with contextual AI.
Navigate
Back to Top