ss098 最近的时间轴更新
ss098

ss098

🏢  RightCapital / DevOps
V2EX 第 53357 号会员,加入于 2014-01-05 15:48:26 +08:00
今日活跃度排名 10251
根据 ss098 的设置,主题列表被隐藏
二手交易 相关的信息,包括已关闭的交易,不会被隐藏
ss098 最近回复了
讲错了,需要把磁盘 wipe 掉恢复为没有 filesystem 的原始 block 设备
mkfs.xfs 你这就是给磁盘格式化文件系统啊?你应该把系统 wipe 掉

https://wiki.archlinux.org/title/Securely_wipe_disk
41 天前
回复了 qweruiop 创建的主题 PostgreSQL 请教一个经典的 postgres 的 sql 怎么写
@qweruiop 你可以参照我的方案在 student_transactions 中加上 where 条件,可以解决你的需求。
42 天前
回复了 qweruiop 创建的主题 PostgreSQL 请教一个经典的 postgres 的 sql 怎么写


刚刚的代码忘记设为 null 了,现在改了一下可以符合预期

with student_transactions as (
select
transactions.student_id,
count(transactions.id) as transactions_count
from transactions
group by transactions.student_id
)

select
students.id,
students.name,
coalesce(student_transactions.transactions_count, 0) as transactions_count
from students
left join student_transactions on students.id = student_transactions.student_id
42 天前
回复了 qweruiop 创建的主题 PostgreSQL 请教一个经典的 postgres 的 sql 怎么写
with student_transactions as (
select
transactions.student_id,
count(transactions.id) as transactions_count
from transactions
group by transactions.student_id
)

select
students.id,
students.name,
student_transactions.transactions_count
from students
left join student_transactions on students.id = student_transactions.student_id
Raspberry Pi 5
Docker Hub 上显示的是压缩后的 layer 大小
看错了,是下载不是上传,tus 适用于上传
开源断点续传协议 tus

https://tus.io/
可以使用 helmfile 来定制自己的 values.yaml 去覆盖默认 values.yaml 的值,也支持使用 Git 管理。
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   3402 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 12ms · UTC 11:52 · PVG 19:52 · LAX 04:52 · JFK 07:52
Developed with CodeLauncher
♥ Do have faith in what you're doing.