tbxark's repos on GitHub
TypeScript · 3579 人关注
ChatGPT-Telegram-Workers
Easily deploy your Telegram ChatGPT bot on Cloudflare Workers (or Vercel, Docker...).
Swift · 689 人关注
PinterestSegment
A Pinterest-like segment control with masking animation.
TypeScript · 254 人关注
mail2telegram
Forward email to telegram with Cloudflare Email Routing
Swift · 29 人关注
PasswordX
Offline password manager for iOS/macOS
Python · 20 人关注
poe-telegram-bot
A lightweight poe chatbot for telegram
Go · 19 人关注
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
TypeScript · 4 人关注
cloudflare-worker-adapter
Running your Cloudflare Workers application locally.
Swift · 3 人关注
my-leetcode-code
LeetCode is a platform for preparing technical coding interviews.
Swift · 2 人关注
MinesWeeping
A simple MinesWeeping Game
Swift · 2 人关注
PiPlayground
An iOS teleprompter app that can be controlled from a web page
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.
Go · 0 人关注
confstore
Generic configuration read/write tool
0 人关注
docker-action
GitHub Action to build and push Docker images with Buildx
Swift · 0 人关注
Either
An implementation of Either type in Swift
Go · 0 人关注
gbvm
A command line tool to manage Go binaries installed in GOPATH/bin
Go · 0 人关注
github-status
Generate SVG cards showing your GitHub statistics and programming language distribution
0 人关注
homebrew-core
🍻 Default formulae for the missing package manager for macOS (or Linux)
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.
tbxark

tbxark

V2EX 第 248673 号会员,加入于 2017-08-14 23:27:46 +08:00
根据 tbxark 的设置,主题列表被隐藏
二手交易 相关的信息,包括已关闭的交易,不会被隐藏
tbxark 最近回复了
@ychen997 帖子里有提到,他整个代码里就一段有用的逻辑。直接删除,不管是文件夹还是文件。其他 rm 特性都没有实现。相当于 rm -rf 。

https://github.com/sindresorhus/macos-trash/blob/a3831fc0f22250b102192732984bd892d7883bfb/Sources/trash/main.swift#L13
@aapeli 哈哈 就是看到这个 6 年都不维护了,而且他这个移动到废纸篓是自己手撸的,在新的系统已经不太适应了。
@Kobayashi 我还以为是纯 shell ,原来还得依赖 python 搭那个 trash-cli ,还是选择 macOS 原生 API 吧
@Kobayashi 😲 brew search 搜不到以为没有人写了,这个不错
94 天前
回复了 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)

}

```
95 天前
回复了 isSamle 创建的主题 程序员 有啥好用的 Nginx 管理 UI 吗
不用在 nginx 上吊死,直接转 caddy
直接回答 《 100 个 Go 语言典型错误》 中 100 个典型错误.
http 方便抓包调试,方便给 web 和小程序服务。grpc 还是适合微服务之间通信。
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   705 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 85ms · UTC 23:00 · PVG 07:00 · LAX 15:00 · JFK 18:00
Developed with CodeLauncher
♥ Do have faith in what you're doing.