/images/avatar.png

谷中仁的博客

所有文章观点仅代表本站观点,与他人无关。

浮躁的时代更需要沉淀自己

这个社会怎么了

最近的热点都被俄罗斯攻打乌克兰占领了,没有一点悬念的是社交网站上出现了完全不同立场的人的极端言论。

国家已经在各个发布会上表明了 ZF 的立场,个人还在自己的朋友圈、公众号、社交平台上发布各种言论;远远的只能是说一句 真是辛苦那些社交媒体了,以后的社交媒体恐怕又要加几条规则了;暴力机器在这,一个小小的零部件又怎能翻起大浪呢。

依旧免费使用 Docker Desktop 的方案

缘由

Docker 公司在 2021 年 8 月更新了 Docker Desktop 的 使用条款,决定对大企业(员工超过 250 人或者年收入超过 1 千万美元)用户(包含员工的个人性质使用)开始执行收费订阅的策略,于 2021 年 8 月 31 日生效,同时,给了使用者一个缓冲时间,延续到 2022 年 1 月 31 日,在此之前可以继续免费使用。

工作的常态是被打断

场景

最近西安疫情比较严重,不到一个月已经近 200 例了,而我也被确诊病例轨迹重重包围了;疫情刚开始我司就决定让大家居家办公,一直到现在;居家办公已经不是第一次了,但是在居家办公这个过程中,每个人都会遇到这样或者那样的事,今天就来说说,工作的常态就是被打断,以及如何有效的解决被打断这个问题。

性能优化 Accept-Encoding

以前的网页请求

人类总是在追求快,更快

随着带宽和基础设施的快速发展,网页显示速度也有迫切需求,随之,就出现了各种各样加速显示网页的技术。

HTTP compression
HTTP compression is a capability that can be built into web servers and web clients to improve transfer speed and bandwidth utilization. –wikipedia
Content Negotiation

In HTTP, content negotiation is the mechanism that is used for serving different representations of a resource to the same URI to help the user agent specify which representation is best suited for the user (for example, which document language, which image format, or which content encoding).

Container Image Scanner - Trivy

Abstract

In modern software development, we leverage public images as base images to build up applications images quickly and deploy them into the production environment.

With more and more applications containerized, container security is also becoming more important. To use vulnerability scanners, we can bring forward the security feedback cycle which is traditionally done towards the end. This aligns closely with our belief that by adopting agile, we will be able to get faster feedback. This is what we are doing in order to achieve it.

Container Image Scanner - Trivy

摘要

在现代软件开发中, 我们会使用一些公共镜像作为基础镜像来快速构建我们的应用镜像,并将其部署到生产环境中。

随着越来越多的应用程序被容器化,容器安全也随之变得越来越重要。在项目的 Pipeline 中, 我们可以使用漏洞扫描器(Vulnerability Scanners)进行扫描并提前获得反馈,实现 “安全左移” ,也可以更好的实践敏捷。