V2EX gydi
 gydi 最近的时间轴更新
gydi's repos on GitHub
TypeScript 22024 人关注
clash-verge
A Clash GUI based on tauri. Supports Windows, macOS and Linux.
Go 256 人关注
webscraper
Scrape the webpage convert it into Markdown, and enhance AI search applications.
Rust 129 人关注
auto-launch
Auto launch any application or executable at startup.
Rust 73 人关注
sysproxy-rs
A Rust library for set/get system proxy. Supports Windows, macOS and linux (via gsettings).
Go 62 人关注
zbyai
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     2866 人在线   最高记录 6679       Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 18ms UTC 11:53 PVG 19:53 LAX 03:53 JFK 06:53
Do have faith in what you're doing.
ubao msn snddm index pchome yahoo rakuten mypaper meadowduck bidyahoo youbao zxmzxm asda bnvcg cvbfg dfscv mmhjk xxddc yybgb zznbn ccubao uaitu acv GXCV ET GDG YH FG BCVB FJFH CBRE CBC GDG ET54 WRWR RWER WREW WRWER RWER SDG EW SF DSFSF fbbs ubao fhd dfg ewr dg df ewwr ewwr et ruyut utut dfg fgd gdfgt etg dfgt dfgd ert4 gd fgg wr 235 wer3 we vsdf sdf gdf ert xcv sdf rwer hfd dfg cvb rwf afb dfh jgh bmn lgh rty gfds cxv xcv xcs vdas fdf fgd cv sdf tert sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf sdf shasha9178 shasha9178 shasha9178 shasha9178 shasha9178 liflif2 liflif2 liflif2 liflif2 liflif2 liblib3 liblib3 liblib3 liblib3 liblib3 zhazha444 zhazha444 zhazha444 zhazha444 zhazha444 dende5 dende denden denden2 denden21 fenfen9 fenf619 fen619 fenfe9 fe619 sdf sdf sdf sdf sdf zhazh90 zhazh0 zhaa50 zha90 zh590 zho zhoz zhozh zhozho zhozho2 lislis lls95 lili95 lils5 liss9 sdf0ty987 sdft876 sdft9876 sdf09876 sd0t9876 sdf0ty98 sdf0976 sdf0ty986 sdf0ty96 sdf0t76 sdf0876 df0ty98 sf0t876 sd0ty76 sdy76 sdf76 sdf0t76 sdf0ty9 sdf0ty98 sdf0ty987 sdf0ty98 sdf6676 sdf876 sd876 sd876 sdf6 sdf6 sdf9876 sdf0t sdf06 sdf0ty9776 sdf0ty9776 sdf0ty76 sdf8876 sdf0t sd6 sdf06 s688876 sd688 sdf86