tbxark's repos on GitHub
TypeScript · 3506 人关注
ChatGPT-Telegram-Workers
Deploy your own Telegram ChatGPT bot on Cloudflare Workers with ease.
Swift · 688 人关注
PinterestSegment
A Pinterest-like segment control with masking animation.
Swift · 246 人关注
Ruler
An AR ruler app can measure length & area
JavaScript · 229 人关注
mail2telegram
Forward email to telegram with Cloudflare Email Routing
Swift · 29 人关注
PasswordX
Offline password manager for iOS/macOS
Python · 19 人关注
poe-telegram-bot
A lightweight poe chatbot for telegram
Go · 16 人关注
github-backup
A simple tool to backup github repository to gitea or other provider.
Go · 10 人关注
g4vercel
Go web server for vercel
JavaScript · 9 人关注
numberbarn2telegram
Forward the text message from NumberBarn to Telegram.
Swift · 6 人关注
FlexLayout
Flex layout library similar to SwiftUI
Swift · 6 人关注
JSONElement
JSONElement makes it easier and safer to use JSON
Go · 5 人关注
chat-bot-go
A lightweight chatgpt bot for telegram
Swift · 3 人关注
my-leetcode-code
LeetCode is a platform for preparing technical coding interviews.
TypeScript · 2 人关注
cloudflare-worker-adapter
Running your Cloudflare Workers application locally.
Swift · 2 人关注
MinesWeeping
A simple MinesWeeping Game
Swift · 2 人关注
PiPlayground
An iOS teleprompter app that can be controlled from a web page
JavaScript · 2 人关注
rmock
Modify HTTP JSON responses without needing HTTP capture and MitM.
Go · 1 人关注
azure2openai
A simple tool to proxy OpenAI‘s request to Azure OpenAI Service
Dart · 1 人关注
dart_router
A simple framework for application routing.
Go · 1 人关注
gitea-mirror-reauth
Quickly modify the authorization information of a Gitea mirror repository.
Go · 1 人关注
mweb-export
A tool for generating directories from MWeb files.
0 人关注
docker-action
GitHub Action to build and push Docker images with Buildx
Go · 0 人关注
dumpdb2qiniu
Automatically backup the database to Qiniu
Swift · 0 人关注
Either
An implementation of Either type in Swift
Ruby · 0 人关注
homebrew-repo
My homebrew program registry
Swift · 0 人关注
InteractiveTransitionGesc
A gesture-based interactive transition animation
0 人关注
options-proto
This is a proto file that defines extra options for rpc methods.
Python · 0 人关注
plate_detection_recognition
A telegram bot that detects and recognizes license plates in images.
Go · 0 人关注
registry-sync
Sync images between docker registries.
Swift · 0 人关注
ResizeableScrollView
tbxark

tbxark

V2EX 第 248673 号会员,加入于 2017-08-14 23:27:46 +08:00
根据 tbxark 的设置,主题列表被隐藏
二手交易 相关的信息,包括已关闭的交易,不会被隐藏
tbxark 最近回复了
23 天前
回复了 isSamle 创建的主题 程序员 有啥好用的 Nginx 管理 UI 吗
@mingtdlb 倒不是不用写配置,就是配置比较简单,没有 nginx 复杂比较适合 GUI 去配置。而且提供 HTTP API 控制,想要 GUI 的话自己随手就能撸一个自己用的了

https://caddyserver.com/docs/api
@jorneyr 这个其实还好用`decoder.UseNumber()` 就能解决,不过这个不是默认行为罢了

```go

package main

import (
"encoding/json"
"strings"
)

func main() {
raw := `{ "age": 10 }`
var res map[string]any
decoder := json.NewDecoder(strings.NewReader(raw))
decoder.UseNumber()
err := decoder.Decode(&res)
if err != nil {
panic(err)
}
age := res["age"].(json.Number)
i, err := age.Int64()
if err != nil {
panic(err)
}
println(i)

}

```
24 天前
回复了 isSamle 创建的主题 程序员 有啥好用的 Nginx 管理 UI 吗
不用在 nginx 上吊死,直接转 caddy
直接回答 《 100 个 Go 语言典型错误》 中 100 个典型错误.
http 方便抓包调试,方便给 web 和小程序服务。grpc 还是适合微服务之间通信。
你是不是用 vscode 的 remote ssh 连接服务器了
162 天前
回复了 yuanbz666 创建的主题 问与答 发现 CleanMyMac 图标上出现了乌的国旗
毕竟他们是乌克兰的公司,前阵子他们还把多语言支持里面的俄语给删掉了。😂
182 天前
回复了 tbxark 创建的主题 分享创造 使用纯 Bash 脚本直接从终端询问 LLM
@molezznet 这个属于通配符了,可以使用\?转译或者中文?比较快
182 天前
回复了 tbxark 创建的主题 分享创造 使用纯 Bash 脚本直接从终端询问 LLM
@cdlnls 加了一个插件系统,可以在插件里自定义结果处理函数。可以实现这个功能
182 天前
回复了 tbxark 创建的主题 分享创造 使用纯 Bash 脚本直接从终端询问 LLM
@lekai63 是的,不过 3.5.0 有 BUG ,第三方 API 用不了,在等他 3.5.1 release 。我的这个生成命令的 prompt 就是直接复制 iterm2 默认的 prompt 。
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   3505 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 14ms · UTC 11:15 · PVG 19:15 · LAX 03:15 · JFK 06:15
Developed with CodeLauncher
♥ Do have faith in what you're doing.