分享一些日常收集到的开源软件、开发工具和技术知识。
ima 还支持边问边看、边搜边记,本地资料也支持总结内容、提炼要点、生成思维导图,并支持翻译多国语言。
https://ima.qq.com/
#ima
#Cloudflare
☁️ 开源作者有福啦!免费升级 Cloudflare Pro
Cloudflare推出「Project Alexandria」,为开源开发者免费升级 Cloudflare Pro、Business 或 Enterprise 计划,以及增加 Workers、Pages、R2存储等
申请条件是维护一个具有公认开源许可证的开源项目,并仅以非营利方式运作
☁️ 开源作者有福啦!免费升级 Cloudflare Pro
申请地址: www.cloudflare.com/zh-cn/lp/project-alexandria/
Cloudflare推出「Project Alexandria」,为开源开发者免费升级 Cloudflare Pro、Business 或 Enterprise 计划,以及增加 Workers、Pages、R2存储等
申请条件是维护一个具有公认开源许可证的开源项目,并仅以非营利方式运作
https://github.com/gdtool/cloudflare-workers-blog
这是一个运行在cloudflare workers 上的博客程序,使用 cloudflare KV作为数据库,无其他依赖. 兼容静态博客的速度,以及动态博客的灵活性,方便搭建不折腾.很稳定 演示地址: https://blog.gezhong.vip
#cf
这是一个运行在cloudflare workers 上的博客程序,使用 cloudflare KV作为数据库,无其他依赖. 兼容静态博客的速度,以及动态博客的灵活性,方便搭建不折腾.很稳定 演示地址: https://blog.gezhong.vip
#cf
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
✨ Innovative and open-source visualization application that transforms various data formats, such as JSON, YAML, XML, CSV and more, into interactive graphs.
#json
https://github.com/yt-dlp/yt-dlp
超级影音下载工具 yt-dlp
覆盖 YouTube/Tiltok/Bilibili/抖音/Ins 等数千平台(GitHub目前已被star 86.8k)
核心功能:
- 支持数千个网站的音视频下载
- 提供丰富的命令行选项
- 支持各种格式的视频/音频处理
- 具备地理限制规避功能
#download
超级影音下载工具 yt-dlp
覆盖 YouTube/Tiltok/Bilibili/抖音/Ins 等数千平台(GitHub目前已被star 86.8k)
核心功能:
- 支持数千个网站的音视频下载
- 提供丰富的命令行选项
- 支持各种格式的视频/音频处理
- 具备地理限制规避功能
#download
https://github.com/ipfs/public-gateway-checker
IPFS Public Gateway Checker
A site displaying public IPFS gateways and their online/offline status.
IPFS Public Gateway Checker
A site displaying public IPFS gateways and their online/offline status.
https://github.com/liseami/screenshot-to-code
将截图转换为干净的代码
一个简单的工具,可使用 AI 将屏幕截图、模型和 Figma 设计转换为干净、实用的代码。现在支持 Claude Sonnet 3.5 和 GPT-4o!
将截图转换为干净的代码
一个简单的工具,可使用 AI 将屏幕截图、模型和 Figma 设计转换为干净、实用的代码。现在支持 Claude Sonnet 3.5 和 GPT-4o!
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.
Ubuntu 删除防火墙
#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