gydi's recent timeline updates
gydi's repos on GitHub
TypeScript · 21987 watchers
clash-verge
A Clash GUI based on tauri. Supports Windows, macOS and Linux.
Go · 258 watchers
webscraper
Scrape the webpage convert it into Markdown, and enhance AI search applications.
Rust · 133 watchers
auto-launch
Auto launch any application or executable at startup.
Rust · 72 watchers
sysproxy-rs
A Rust library for set/get system proxy. Supports Windows, macOS and linux (via gsettings).
Go · 63 watchers
zbyai
ZByAI - AI-Enhanced Search
Rust · 31 watchers
verge
TypeScript · 30 watchers
how2pay
双十一价格计算器
Python · 28 watchers
verge-browser
A browser sandbox platform for agents.
Dart · 23 watchers
easy_dsl
Streamlining Flutter UI Development with DSL-Based Code Generation
TypeScript · 21 watchers
bilibili-boring
一个用于无聊刷 b 站视频的油猴脚本
Rust · 18 watchers
weso-lang
Rust实现的半成品玩具编程语言weso,可以编译到wasm
Rust · 17 watchers
clash-verge-service
TypeScript · 12 watchers
jsx2img
Converts JSX and HTML to images using Puppeteer.
9 watchers
Clash.Meta
A rule-based tunnel in Go.
JavaScript · 9 watchers
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 watchers
milint
A markdown inspection tool for checking whether the image paths in the file are available and addressable.
TypeScript · 8 watchers
sing-shield
Rust · 7 watchers
sing-sword
Go · 7 watchers
thanks
Provide the link to your project's dependencies to get a list of contributors and their contributions.
TypeScript · 5 watchers
fsmlib
A finite state machine for JavaScript.
TypeScript · 4 watchers
Yacd-meta
Yet Another Clash Dashboard
JavaScript · 3 watchers
AutoSubmit
Nothing
Python · 3 watchers
jd-spider
Vue · 3 watchers
SEHub-front
A small project.
3 watchers
sing-box-for-apple
Experimental iOS/macOS client for sing-box
TypeScript · 2 watchers
font-pack
A font tool helps to generate ttf, woff, woff2 and css file at the same time.
Python · 2 watchers
HybridGPT
2 watchers
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 watchers
MirrorX
Go · 2 watchers
sing-box
The universal proxy platform
Python · 2 watchers
vector-gate
Python · 1 watchers
Auto-GPT
An experimental open-source attempt to make GPT-4 fully autonomous.
Python · 1 watchers
ITproject
This is another annoying homework...
JavaScript · 1 watchers
js-sdk
Qiniu Cloud JavaScript SDK
1 watchers
langchain
⚡ Building applications with LLMs through composability ⚡
TypeScript · 1 watchers
Razord-meta
web port of clash
1 watchers
rquickjs
High level bindings to the quickjs javascript engine
1 watchers
rust-miniproxy
手把手教你用Rust写代理, 代码已完成, 文章不定期更新
1 watchers
tauri
Build smaller, faster, and more secure desktop applications with a web frontend.
TypeScript · 1 watchers
Telecrx
Easy for communication between each part of Chrome extension.
1 watchers
transform
A polyglot web converter.
TypeScript · 1 watchers
whim-ai
0 watchers
agent-browser
Browser automation CLI for AI agents
TypeScript · 0 watchers
ant-design-mobile
A configurable Mobile UI
0 watchers
awesome-tauri
🚀 Awesome Tauri Apps, Plugins and Resources
Vue · 0 watchers
CoBlog
A blog website
Jupyter Notebook · 0 watchers
dcd-spider
JavaScript · 0 watchers
detect-canvas-orientation
Detect whether the canvas handles the Exif's Orientation.
TypeScript · 0 watchers
easy-classify
一个简单的文本分类工具应用
0 watchers
fioende
Vue · 0 watchers
ITfrontEnd2.0
homework
Rust · 0 watchers
melody
Melody is a language that compiles to regular expressions and aims to be more easily readable and maintainable
0 watchers
monodepth2
[ICCV 2019] Monocular depth estimation from a single image
0 watchers
orange
Cross-platform local file search engine.
JavaScript · 0 watchers
parcel
The zero configuration build tool for the web. 📦🚀
0 watchers
pocketbase
Open Source realtime backend in 1 file
Go · 0 watchers
porter
TypeScript · 0 watchers
rhv7-memory-leak-test
Java · 0 watchers
SEHub-backend
Go · 0 watchers
slog-gorm
A slog adapter, highly configurable, for gorm logger
Rust · 0 watchers
tao
The TAO of cross-platform windowing. A library in Rust built for Tauri.
TypeScript · 0 watchers
tauri-action
Build your Web application as a Tauri binary for MacOS, Linux and Windows
Go · 0 watchers
templater
Jupyter Notebook · 0 watchers
text-classify
Rust · 0 watchers
tools
The Rome Toolchain. A linter, compiler, bundler, and more for JavaScript, TypeScript, HTML, Markdown, and CSS.
Rust · 0 watchers
volt
Fast, clean, lightweight, robust, and efficient package management.
TypeScript · 0 watchers
wake
TypeScript · 0 watchers
web-win
0 watchers
windows-service-rs
Windows services in Rust
gydi

gydi

V2EX member #548766, joined on 2021-06-19 01:02:37 +08:00
Today's activity rank 28119
Per gydi's settings, the topics list is only visible after you sign in
Deals info, including closed deals, is not hidden
gydi's recent replies
现在已经提供方便 Agent 部署和使用的 Skills ,欢迎尝试和反馈~
@v9912ex 感谢 感谢认可
简单用 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/
@musi 这个确实
@changwei 在 h5 或 pc web 内截图,可以用 html2canvas 来整,图片直出,还不用存 oss ,用户可以直接下载保存。我整的这个的话,旨在提供 api 服务,当然也可以用来处理 html2canvas 能处理的那些需求。
@reDesign 这个就没有了解了
@xiaozizayang 这个我目前还没有遇到,所以不清楚
Jul 23, 2024
Replied to a topic by aolifu 奇思妙想 想搞一个共享卫生间,一起聊聊?
会支持先拉后付吗
Jul 23, 2024
Replied to a topic by ringwraith 宽带症候群 请教个 Clash 客户端的问题
clash 有没有开 allow lan ; http_proxy 的 ip 不是 127 吧
今天上午,每次只要点进 v 站看到这个帖子,我就自觉的把腿放下来了
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   1210 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 14ms · UTC 23:33 · PVG 07:33 · LAX 16:33 · JFK 19:33
♥ Do have faith in what you're doing.