ByteCanvas
Stay close to every update.
A clean timeline for posts, media, and conversations from your channel.
分享一些日常收集到的开源软件、开发工具和技术知识。
Latest Direction
Back toward newer posts
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/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
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.
#视频站 #app 免费APP打包工具,对视频站有针对性加速方案,优化国内访问线路。 官网: https://blackace.app 交流群: https://t.me/blackace_app_group SpriteTV.apk 7.2 MB
开源AI网络爬虫工具:Crawl4AI 可以直接用于大语言模型和AI应用。性能快,还能输出适合大语言模型的格式,比如JSON、清理过的HTML和markdown。它还支持同时爬取多个网址,能提取所有媒体标签(图片、音频、视频),以及所有内外部链接。可以自定义用户代理,还能给网页截图,甚至在爬取之前执行自定义JavaScript。 GitHub | 官方文档教程 #爬虫 GitHub GitHub - unclecode/crawl4ai: 🚀 🤖 Crawl4AI: Open-source LLM Friendly Web Crawler & Scraper. Don't be shy, join here: https://dis… 🚀 🤖 Crawl4AI: Open-source LLM Friendly Web Crawler & Scraper. Don't be shy, join here: https://discord.gg/jP8KfhDhyN - unclecode/crawl4ai
https://github.com/Jiabinone/notdiamond2api #chatgpt GitHub GitHub - Jiabinone/notdiamond2api Contribute to Jiabinone/notdiamond2api development by creating an account on GitHub.
Ubuntu 删除防火墙 # 开放所有端口 sudo iptables - P INPUT ACCEPT sudo iptables - P FORWARD ACCEPT sudo iptables - P OUTPUT ACCEPT sudo iptables - F # Oracle自带的Ubuntu镜像默认设置了Iptable规则,关闭它 apt - get purge netfilter - persistent reboot # 强制删除 rm - rf / etc / iptables & & reboot #ubuntu
GitHub - hiroi-sora/Umi-OCR: OCR software, free and offline. 开源、免费的离线OCR软件。支持截屏/批量导入图片,PDF文档识别,排除水印/页眉页脚,扫描/生成二维码。内置多国语言库。 https://github.com/hiroi-sora/Umi-OCR #ocr GitHub GitHub - hiroi-sora/Umi-OCR: OCR software, free and offline. 开源、免费的离线OCR软件。支持截屏/批量导入图片,PDF文档识别,排除水印/页眉页脚,扫描/生成二维码。内置多国语言库。 OCR software, free and offline. 开源、免费的离线OCR软件。支持截屏/批量导入图片,PDF文档识别,排除水印/页眉页脚,扫描/生成二维码。内置多国语言库。 - hiroi-sora/Umi-OCR
GitHub - Zeyi-Lin/HivisionIDPhotos: ⚡️ HivisionIDPhotos: a lightweight and efficient AI ID photos tools. 一个轻量级的AI证件照制作算法。 https://github.com/Zeyi-Lin/HivisionIDPhotos #证件照 GitHub GitHub - Zeyi-Lin/HivisionIDPhotos: ⚡️ HivisionIDPhotos: a lightweight and efficient AI ID photos tools. 一个轻量级的AI证件照制作算法。 ⚡️ HivisionIDPhotos: a lightweight and efficient AI ID photos tools. 一个轻量级的AI证件照制作算法。 - Zeyi-Lin/HivisionIDPhotos
GitHub - Z4nzu/hackingtool: ALL IN ONE Hacking Tool For Hackers https://github.com/Z4nzu/hackingtool #tool 黑客攻击集合 GitHub GitHub - Z4nzu/hackingtool: ALL IN ONE Hacking Tool For Hackers ALL IN ONE Hacking Tool For Hackers. Contribute to Z4nzu/hackingtool development by creating an account on GitHub.
https://deeplx.smnet.io/ deeplx 负载均衡接口 https://api.deeplx.org/ <api-key>/translate #deeplx
Oracle dd 获取ipv6 Debian_IPv6 ( ) { iName = $ ( ip add | grep "^2: " | awk - F '[ :]' '{print $3}' ) dhclient - 6 $iName #临时开启IPv6 echo $iName #人工查看网卡是否正确 cp / etc / network / interfaces / root sed - i "$ a iface $iName inet6 dhcp" / etc / network / interfaces echo "Reboot... & ping ipv6.google.com After reboot" reboot } Ubuntu_IPv6 ( ) { yamlName = $ ( find / etc / netplan / - iname "*.yaml" ) iName = $ ( ip add | grep "^2: " | awk - F '[ :]' '{print $3}' ) dhclient - 6 $iName MAC = $ ( ip add | grep "link/ether.*brd" | awk - F ' ' '{print $2}' ) IPv6 = $ ( ip add | grep "inet6.*global" | awk - F ' ' '{print $2}' ) if [ [ $ { #IPv6} -lt 5 ]]; then echo "Can't IPv6"; exit 1; fi cp $yamlName / root / cat << 0099 > $yamlName network : ethernets : ens3 : dhcp4 : true dhcp6 : false match : macaddress : $MAC addresses : - $IPv6 set - name : $iName version : 2 0099 netplan apply sleep 2 s ping ipv6 . google . com } myOS = $ ( hostnamectl | sed - n 's_.*System: \(\S*\).*_\1_p' ) #Ubuntu, Debian if [ [ " $myOS " = ~ "Ubuntu" ] ] ; then echo "Ubuntu" Ubuntu_IPv6 elif [ [ " $myOS " = ~ "Debian" ] ] ; then echo "Debian" Debian_IPv6 fi 保存为sh文件执行 #oracle