gydi 最近的时间轴更新
gydi's repos on GitHub
TypeScript · 22029 人关注
clash-verge
A Clash GUI based on tauri. Supports Windows, macOS and Linux.
Go · 255 人关注
webscraper
Scrape the webpage convert it into Markdown, and enhance AI search applications.
Rust · 127 人关注
auto-launch
Auto launch any application or executable at startup.
Rust · 71 人关注
sysproxy-rs
A Rust library for set/get system proxy. Supports Windows, macOS and linux (via gsettings).
Go · 62 人关注
zbyai
ZByAI - AI-Enhanced Search
Rust · 31 人关注
verge
TypeScript · 30 人关注
how2pay
双十一价格计算器
Dart · 22 人关注
easy_dsl
Streamlining Flutter UI Development with DSL-Based Code Generation
TypeScript · 21 人关注
bilibili-boring
一个用于无聊刷 b 站视频的油猴脚本
Rust · 18 人关注
weso-lang
Rust实现的半成品玩具编程语言weso,可以编译到wasm
Rust · 17 人关注
clash-verge-service
TypeScript · 13 人关注
jsx2img
Converts JSX and HTML to images using Puppeteer.
9 人关注
Clash.Meta
A rule-based tunnel in Go.
JavaScript · 9 人关注
one-api
OpenAI 接口管理 & 分发系统,支持 Azure、Anthropic Claude、Google PaLM 2、智谱 ChatGLM、百度文心一言、讯飞星火认知以及阿里通义千问,可用于二次分发管理 key,仅单可执行文件,已打包好 Docker 镜像,一键部署,开箱即用. OpenAI key management & redistribution system, using a single API for all LLMs, and features an English UI.
Python · 8 人关注
milint
A markdown inspection tool for checking whether the image paths in the file are available and addressable.
TypeScript · 8 人关注
sing-shield
Rust · 7 人关注
sing-sword
Go · 7 人关注
thanks
Provide the link to your project's dependencies to get a list of contributors and their contributions.
TypeScript · 5 人关注
fsmlib
A finite state machine for JavaScript.
TypeScript · 4 人关注
Yacd-meta
Yet Another Clash Dashboard
JavaScript · 3 人关注
AutoSubmit
Nothing
Python · 3 人关注
jd-spider
Vue · 3 人关注
SEHub-front
A small project.
3 人关注
sing-box-for-apple
Experimental iOS/macOS client for sing-box
TypeScript · 2 人关注
font-pack
A font tool helps to generate ttf, woff, woff2 and css file at the same time.
Python · 2 人关注
HybridGPT
2 人关注
lobe-chat
🤯 Lobe Chat - an open-source, modern-design LLMs/AI chat framework. Supports Multi AI Providers( OpenAI / Claude 3 / Gemini / Ollama / Bedrock / Azure / Mistral / Perplexity ), Multi-Modals (Vision/TTS) and plugin system. One-click FREE deployment of your private ChatGPT chat application.
Rust · 2 人关注
MirrorX
Go · 2 人关注
sing-box
The universal proxy platform
Python · 2 人关注
vector-gate
Python · 1 人关注
Auto-GPT
An experimental open-source attempt to make GPT-4 fully autonomous.
Python · 1 人关注
ITproject
This is another annoying homework...
JavaScript · 1 人关注
js-sdk
Qiniu Cloud JavaScript SDK
1 人关注
langchain
⚡ Building applications with LLMs through composability ⚡
TypeScript · 1 人关注
Razord-meta
web port of clash
1 人关注
rquickjs
High level bindings to the quickjs javascript engine
1 人关注
rust-miniproxy
手把手教你用Rust写代理, 代码已完成, 文章不定期更新
1 人关注
tauri
Build smaller, faster, and more secure desktop applications with a web frontend.
TypeScript · 1 人关注
Telecrx
Easy for communication between each part of Chrome extension.
1 人关注
transform
A polyglot web converter.
TypeScript · 1 人关注
whim-ai
TypeScript · 0 人关注
ant-design-mobile
A configurable Mobile UI
0 人关注
awesome-tauri
🚀 Awesome Tauri Apps, Plugins and Resources
Vue · 0 人关注
CoBlog
A blog website
Jupyter Notebook · 0 人关注
dcd-spider
JavaScript · 0 人关注
detect-canvas-orientation
Detect whether the canvas handles the Exif's Orientation.
TypeScript · 0 人关注
easy-classify
一个简单的文本分类工具应用
0 人关注
fioende
Vue · 0 人关注
ITfrontEnd2.0
homework
Rust · 0 人关注
melody
Melody is a language that compiles to regular expressions and aims to be more easily readable and maintainable
0 人关注
monodepth2
[ICCV 2019] Monocular depth estimation from a single image
0 人关注
orange
Cross-platform local file search engine.
JavaScript · 0 人关注
parcel
The zero configuration build tool for the web. 📦🚀
0 人关注
pocketbase
Open Source realtime backend in 1 file
TypeScript · 0 人关注
rhv7-memory-leak-test
Java · 0 人关注
SEHub-backend
Go · 0 人关注
slog-gorm
A slog adapter, highly configurable, for gorm logger
Rust · 0 人关注
tao
The TAO of cross-platform windowing. A library in Rust built for Tauri.
TypeScript · 0 人关注
tauri-action
Build your Web application as a Tauri binary for MacOS, Linux and Windows
Go · 0 人关注
templater
Jupyter Notebook · 0 人关注
text-classify
Rust · 0 人关注
tools
The Rome Toolchain. A linter, compiler, bundler, and more for JavaScript, TypeScript, HTML, Markdown, and CSS.
Rust · 0 人关注
volt
Fast, clean, lightweight, robust, and efficient package management.
TypeScript · 0 人关注
web-win
0 人关注
windows-service-rs
Windows services in Rust
gydi

gydi

V2EX 第 548766 号会员,加入于 2021-06-19 01:02:37 +08:00
根据 gydi 的设置,主题列表只有在你登录之后才可查看
二手交易 相关的信息,包括已关闭的交易,不会被隐藏
gydi 最近回复了
2024 年 12 月 27 日
回复了 superhot 创建的主题 Python 求教 Python 问题, GPT o1 跟 Gemini 2.0 都解决不了
简单用 python 测试了一下,有下面这样的结果。
>>> b = {'next': 'b'}
>>> c = {'next': 'c'}
>>> b = b['next'] = c
>>> print(b,c)
{'next': {...}} {'next': {...}}
>>> b = {'next': 'b'}
>>> c = {'next': 'c'}
>>> b['next'] = b = c
>>> print(b,c)
{'next': 'c'} {'next': 'c'}

于是猜测 python 的执行对于 a=b=c 来说应该是 a=c;b=c 这样。然后搜了一下,发现这个文章 https://chowyi.com/key-points-of-chained-assignment-in-python/
2024 年 12 月 17 日
回复了 gydi 创建的主题 分享创造 jsx2img:分享一个开源的轻量的 jsx 转图片服务
@musi 这个确实
2024 年 12 月 17 日
回复了 gydi 创建的主题 分享创造 jsx2img:分享一个开源的轻量的 jsx 转图片服务
@changwei 在 h5 或 pc web 内截图,可以用 html2canvas 来整,图片直出,还不用存 oss ,用户可以直接下载保存。我整的这个的话,旨在提供 api 服务,当然也可以用来处理 html2canvas 能处理的那些需求。
2024 年 12 月 17 日
回复了 gydi 创建的主题 分享创造 jsx2img:分享一个开源的轻量的 jsx 转图片服务
@reDesign 这个就没有了解了
2024 年 8 月 19 日
回复了 gydi 创建的主题 分享创造 分享一个用于增强 RAG 应用的模块 — Web Scraper
@xiaozizayang 这个我目前还没有遇到,所以不清楚
2024 年 7 月 23 日
回复了 aolifu 创建的主题 奇思妙想 想搞一个共享卫生间,一起聊聊?
会支持先拉后付吗
2024 年 7 月 23 日
回复了 ringwraith 创建的主题 宽带症候群 请教个 Clash 客户端的问题
clash 有没有开 allow lan ; http_proxy 的 ip 不是 127 吧
今天上午,每次只要点进 v 站看到这个帖子,我就自觉的把腿放下来了
2024 年 7 月 19 日
回复了 ginobefun 创建的主题 程序员 基于 Dify Workflow 的文章智能分析实践
@18850317627 我看 dify 支持 http ,那么我感觉可以这么实现,每次 query 时调用自己的 A 接口检索出需要的上下文。然后 llm 回答完之后可以再调 B 接口将数据存好。这里需要自己实现一个 http server ,外加俩接口
2024 年 7 月 18 日
回复了 bingbingv2ex 创建的主题 酷工作 [招人] 全栈工程师(实习/远程/全职皆可)
建议补充一下薪资待遇
关于   ·   帮助文档   ·   自助推广系统   ·   博客   ·   API   ·   FAQ   ·   Solana   ·   5113 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 31ms · UTC 02:48 · PVG 10:48 · LAX 18:48 · JFK 21:48
♥ Do have faith in what you're doing.