[Go] 快速实现电报机器人

Telebot is a Telegram bot framework in Go. 先登录telegram创建机器人,创建机器人获取到 ,可以通过API查询。 1 curl -s 'https://api.telegram.org/bot<TOKEN>/getMe' 响应结果 1 {"ok":true,"result":{"id":6906901111,"is_bot":true,"first_name":"test","username":"test","can_join_groups":true,"can_read_all_group_messages":false,"supports_inline_queries":false}} 实现电报机器人示例: 1 2 3 4 5 6

Mac使用Colima运行Docker

Mac使用Colima运行Docker Container runtimes on macOS (and Linux) with minimal setup Colima是一个免费的开源容器运行时,它使用QEMU在虚拟机中运行Docker容器

更改 MySQL 用户密码的三种方法

在MySQL中,可以使用 UPDATE , SET PASSWORD 和 ALTER USER 语句更改 MySQL 用户密码。 UPDATE 使用 UPDATE 语句更新 mysql 数据库中的 user 表。 执行完 UPDATE 语句后,还需要执行 FLUSH PRIVILEGES 语句从 mysql 数据库中的

fatal: couldn't find remote ref refs/heads/master

fatal: couldn’t find remote ref refs/heads/master brew 更新提示失败如下: 1 2 3 4 5 > brew update Warning: No available formula with the name "ca-certificates". ==> Searching for similarly named formulae and casks... Error: No formulae or casks found for ca-certificates. fatal: Couldn't find remote ref refs/heads/master 解决方法: 1 2 /usr/local/Homebrew/Library/Taps/homebrew git:(master) > git pull origin master 更新