ss098 最近的时间轴更新
ss098's repos on GitHub
PHP · 139 人关注
payment
停止维护,支付宝免签约收款网关
Python · 61 人关注
payment-script
停止维护,支付宝免签约收款爬虫端
PHP · 54 人关注
work
一个收集图片并打包的工具,主要用于完成上级团委组织的行政任务:收集青年大学习截图。
PHP · 42 人关注
blog
Laravel + Vue 2 + Vue Router 的博客系统
Go · 39 人关注
certmagic-s3
Certmagic S3-compatible driver written in Go | Caddy 证书存储 Certmagic 接口分布式对象存储实现
PHP · 12 人关注
bulma-typecho
基于 Bulma.css 的 Typecho 模板
JavaScript · 3 人关注
nebulas-todo
待办事项是一个 Nebulas (星云链)下的去中心化应用(DApp),帮助规划你的任务,保持专注。
PHP · 3 人关注
tailwind-typecho
基于 TailwindCSS 的 Typecho 主题
JavaScript · 2 人关注
leancloud-file
LeanCloud File 基于 Vue.js 2 与 Vuex 编写。
Vue · 2 人关注
vue-multi-selector
Vue.js 多级(无限)选择插件
Vue · 1 人关注
nebulas-lottery
抽奖是一个星云链(Nebulas)下的去中心化应用(DApp),用以解决抽奖过程中所产生的的信任问题。
JavaScript · 1 人关注
note
Node.js、MongoDB 文章分享系统
ss098

ss098

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

https://wiki.archlinux.org/title/Securely_wipe_disk
51 天前
回复了 qweruiop 创建的主题 PostgreSQL 请教一个经典的 postgres 的 sql 怎么写
@qweruiop 你可以参照我的方案在 student_transactions 中加上 where 条件,可以解决你的需求。
52 天前
回复了 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
52 天前
回复了 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   ·   我们的愿景   ·   实用小工具   ·   2667 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 12ms · UTC 15:23 · PVG 23:23 · LAX 08:23 · JFK 11:23
Developed with CodeLauncher
♥ Do have faith in what you're doing.