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 · 42 人关注
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
根据 ss098 的设置,主题列表被隐藏
二手交易 相关的信息,包括已关闭的交易,不会被隐藏
ss098 最近回复了
3 天前
回复了 NoKey 创建的主题 程序员 token 如何存放才能避免 csrf 攻击
你是不是在找 OAuth 2.0 Bearer token ?
部署 ElasticSearch Helm 到 Kubernetes ,声明 ElasticSearch 不同 node role 的 resources 以及 autoscaling 的配置。

https://github.com/bitnami/charts/tree/main/bitnami/elasticsearch
44 天前
回复了 bruceewoo 创建的主题 分享创造 NextJs 练习作品 TryOnHaul
@kong0bbs 尽管 Next.js 很慢但也没慢到这个程度吧,我觉得是你的应用程序哪里设计有问题。我在 Raspberry Pi 5 Kubernetes 上部署单 Pod 无后端依赖的 Next.js standalone 模式都有约 500 qps 。
讲错了,需要把磁盘 wipe 掉恢复为没有 filesystem 的原始 block 设备
mkfs.xfs 你这就是给磁盘格式化文件系统啊?你应该把系统 wipe 掉

https://wiki.archlinux.org/title/Securely_wipe_disk
170 天前
回复了 qweruiop 创建的主题 PostgreSQL 请教一个经典的 postgres 的 sql 怎么写
@qweruiop 你可以参照我的方案在 student_transactions 中加上 where 条件,可以解决你的需求。
171 天前
回复了 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
171 天前
回复了 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 大小
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1815 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 15ms · UTC 00:27 · PVG 08:27 · LAX 17:27 · JFK 20:27
Developed with CodeLauncher
♥ Do have faith in what you're doing.