摘要:
首先使用大家推荐的 zbar mac m2 python 3.8 安装无法解析动态库 安装 arch -arm64 brew install zbar python 使用 from pyzbar.pyzbar import decode from PIL import Image if __name 阅读全文
摘要:
why ? 为什么需要workspace 历史发展和版本依赖的管理 GOPATH 最开始的模式 开发者需要设置一个环境变量 GOPATH,用于指定项目的工作空间。GOPATH 是一个目录路径,其中包括了三个重要的子目录:src、bin 和 pkg 通过 go get 命令,GOPATH/src 下的 阅读全文
摘要:
生成二维码 def make_qrcode(data: str, path: str): qr = qrcode.QRCode( version=1, error_correction=qrcode.constants.ERROR_CORRECT_L, box_size=10, border=4 ) 阅读全文
摘要:
查询订单的 定金+支付金额 -支付金额 错误写法 Order.objects.aggregate( sum=Sum(F('final_amt') + F('deposit_amt') - F('refund_amt')) ) ) 正确的信息 Order.objects.aggregate( sum= 阅读全文
摘要:
java package com.example; import org.springblade.core.tool.utils.*; import javax.annotation.Nullable; import javax.crypto.Cipher; import javax.crypto. 阅读全文
摘要:
java 代码 package com.example.trip_vip; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import javax.crypto.Cipher; import jav 阅读全文
摘要:
先说结论 就是指针引用和非指针引用 调用没啥区别的 golang 会做自动转换 将指针转为非指针调用 代码演示 package main import "fmt" type T struct { Name string } func (p *T) SetName(name string) { p.N 阅读全文
摘要:
### pg订阅[ 传送门](https://www.cnblogs.com/guanchaoguo/p/17679035.html) #### 服务端代码 ``` const {Client} = require('pg'); const WebSocket = require('ws'); co 阅读全文
摘要:
#### Postgres 在 9.1 之后推出 LISTEN / NOTIFY #### 创建一个数据表 foo ``` CREATE TABLE foo (id serial primary key, name varchar); ``` #### 创建一个 存贮过程 ``` CREATE FU 阅读全文
摘要:
### 安装 pgsql ``` brew uninstall --force postgresql rm -rf /usr/local/var/postgres brew install postgres brew install postgis ``` ### 查看版本 ``` psql -V 阅读全文