这里没有橄榄
https://blog.shuf.io
18:51 · 2021年11月14日 · 周日
卡瓦邦噶!
Coredns 源码阅读(导读)
Telegraph
|
原文
Telegraph
Coredns 源码阅读(导读) - 卡瓦邦噶!
周末看了一下 coredns 的源代码,目前为止只是差不多搞清楚了这个代码库的逻辑。写篇博客记录一下,如果你也想要阅读这个库的源代码的话,这篇博客可以节省你的一些时间。
12:41 · 2021年11月13日 · 周六
Eli Bendersky's website
Testing multiple implementations of a trait in Rust
Telegraph
|
原文
Telegraph
Testing multiple implementations of a trait in Rust - Eli Bendersky's website
I've been hacking on a small practice project in Rust where I implement the samedata structure in several different ways. When testing this project, I want torun exactly the same set of tests on several types that implement the sametrait. As a demonstrative…
12:40 · 2021年11月13日 · 周六
Eli Bendersky's website
Rust data structures with circular references
21:40 · 2021年11月12日 · 周五
依云's Blog
不同情况下的图形效果
Telegraph
|
原文
Telegraph
不同情况下的图形效果 - 依云's Blog
本文来自依云's Blog,转载请注明。 我在上一篇说到,Wayland 下再也不会遇到撕裂了。后来群友说,这是 Intel 的 modesetting 驱动特有的问题。所以我又重新比较了一下。为了让事实说话,而不是靠很容易有偏见的主观感受,我使用 Sony Xperia XZ2 Compact 手机的「慢动作」功能,以 960fps 录制了不同情况下,火狐滚动同一页面的效果。不过视频我就不放了,上传费时又占地方。 首先是我长期使用的组合:X11 + Intel 集成显卡 + modesetting DDX,窗口管理器是…
01:06 · 2021年11月12日 · 周五
山山仙人博客
Golang反射-上篇
Telegraph
|
原文
Telegraph
Golang反射-上篇 - 山山仙人博客
1、反射的定义 2、反射的基础数据类型 3、Type 4、Value 5、反射三大定律5.1 反射第一定律 5.2 反射第二定律 5.3 反射第三定律
09:35 · 2021年11月11日 · 周四
Xuanwo's Blog
2021-46: GPG 增加新的 Subkey
Telegraph
|
原文
Telegraph
2021-46: GPG 增加新的 Subkey - Xuanwo's Blog
每当 git 出现形如下文的报错,我就知道又是一年过去了。 :) git coerror: gpg failed to sign the datafatal: failed to write commit object 从前年开始,我就在使用一个主 Key 配合多个 Subkey 的方案: 一个最高信任等级,无过期时间,仅用作 Certify,离线保存的 Secret Key 一年有效期,仅用作 Sign,在机器上保存的 Secret Subkey Subkey 会由 Secret Key 定期手动签发,最终形成像这样的一系列…
15:08 · 2021年11月10日 · 周三
Slack Engineering
Developing in the Open
Telegraph
|
原文
Telegraph
Developing in the Open - Slack Engineering
We use plenty of open source tools at Slack and we’ve benefited immensely from the wider Android, Kotlin, and Gradle communities. We also try to be good citizens by giving back. This includes things like sponsoring the Kotlin Lang Slack, contributions to…
22:09 · 2021年11月8日 · 周一
No Headback
Software Engineering at Google 第一部分
Telegraph
|
原文
Telegraph
Software Engineering at Google 第一部分 - No Headback
这个是这本书的读书笔记,这本书总共有四个部分。 第一部分只有一章,所以可以水一篇,开心。
20:56 · 2021年11月8日 · 周一
依云's Blog
Wayland 初体验
Telegraph
|
原文
Telegraph
Wayland 初体验 - 依云's Blog
本文来自依云's Blog,转载请注明。 前天得知 wayfire 能够直接在 X Window 下运行之后,我就尝试了一下。很好,能跑。虽然不能捕获键盘,从而与外边窗口管理器重复的快捷键无法使用,但至少它的鼠标光标位置是对的,能够用来测试。我在 QEMU 里跑过 KDE Wayland、sway 和 wayfire,无一例外鼠标位置不对。KDE 里是缩放倍数设为 2 之后,鼠标的实际坐标会翻倍。后两者基于 wlroots 的,鼠标的实际坐标位于显示的光标上方几十像素处。总之没法用。 在 X Window…
23:27 · 2021年11月6日 · 周六
卡瓦邦噶!
SRE 的工作介绍
Telegraph
|
原文
Telegraph
SRE 的工作介绍 - 卡瓦邦噶!
有很多人问过我想了解一下 SRE 这个岗位,这是个很大的话题,在这篇博客中把想到的一些介绍一下吧。 SRE 到底是什么?这是一个最早由 Google 提出的概念,我的理解是,用软件解决运维问题。标准化,自动化,可扩展,高可用是主要的工作内容。这个岗位被提出的时候,想解决的问题是打破开发人员想要快速迭代,与运维人员想要保持稳定,拒绝频繁更新之间的矛盾。 SRE 目前对于招聘来说还是比较困难。一方面,这个岗位需要一定的经验,而应届生一般来说不会有运维复杂软件的经历;另一方面就是很多人依然以为这就是“运维”工…
05:43 · 2021年11月5日 · 周五
Slack Engineering
How Two Interns Are Helping Secure Millions of Lines of Code
Telegraph
|
原文
Telegraph
How Two Interns Are Helping Secure Millions of Lines of Code - Slack Engineering
At Slack, proactively securing our systems is a top priority. One way we achieve this is by automating the detection of security issues with static code analysis, which are tools that inspect programs without executing them. They’re often used with security…
00:54 · 2021年11月5日 · 周五
山山仙人博客
Helm Chart语法概要
Telegraph
|
原文
Telegraph
Helm Chart语法概要 - 山山仙人博客
1、概述 2、调试 3、内置对象 4、Values 5、管道与函数 6、流程控制6.1 if 6.2 with 6.3 range
05:53 · 2021年11月4日 · 周四
HashiCorp Solutions Engineering Blog - Medium
Automating AWS Tags Management with Consul-Terraform-Sync
Telegraph
|
原文
Telegraph
Automating AWS Tags Management with Consul-Terraform-Sync - HashiCorp Solutions Engineering Blog - Medium
In this post, I will explore something that came out recently with v0.4 of CTS: an integration with the Consul Key/Value store.
01:14 · 2021年11月4日 · 周四
山山仙人博客
Azure DevOps的使用入门
Telegraph
|
原文
Telegraph
Azure DevOps的使用入门 - 山山仙人博客
1、介绍 2、服务开通 3、添加ssh key 4、测试项目4.1 提交代码 4.2 创建pipeline
22:45 · 2021年11月1日 · 周一
Nova Kwok's Awesome Blog
用 Lambda@Edge + S3 实现静态网站上的 OAuth 认证操作记录
Telegraph
|
原文
Telegraph
用 Lambda@Edge + S3 实现静态网站上的 OAuth 认证操作记录 - Nova Kwok's Awesome Blog
本文章由 flowerss 抓取自RSS,版权归源站点所有。 查看原文:用 Lambda@Edge + S3 实现静态网站上的 OAuth 认证操作记录 - Nova Kwok's Awesome Blog
19:37 · 2021年11月1日 · 周一
HashiCorp Solutions Engineering Blog - Medium
Consul-Terraform-Sync: How to Build Your Own Module
Telegraph
|
原文
Telegraph
Consul-Terraform-Sync: How to Build Your Own Module - HashiCorp Solutions Engineering Blog - Medium
I have written over a dozen posts on Terraform in the past few years and I always find it interesting to hear more use cases for it. A new one I discovered since I joined HashiCorp is a really nice integration with another HashiCorp tool (Consul): Consul…
20:04 · 2021年10月30日 · 周六
李辉
开始写作《Flask Web 开发实战》第二版
Telegraph
|
原文
Telegraph
开始写作《Flask Web 开发实战》第二版 - 李辉
《Flask Web 开发实战》第二版已从九月开始写作,计划在今年完成这本书。那本《Python Web API 设计与开发》一直拖着没写完,让我感觉很焦虑。因为拖得太久,HelloFlask 群聊里已经开始谣传我转行送快递了 :D。 所以我想先把《Flask Web 开发实战》新版完成,这样这一年我至少完成了三个年度目标中的一个。「优化」是我擅长和喜欢做的事情,除了要用 Word 写之外,我很乐意给这本书写新版。 主页:https://helloflask.com/book/4 建议收集(或在文末留言…
16:25 · 2021年10月30日 · 周六
卡瓦邦噶!
多租户环境中的 TCP 限速(基于 iptables)
Telegraph
|
原文
Telegraph
多租户环境中的 TCP 限速(基于 iptables) - 卡瓦邦噶!
我们有个服务以类似 SideCar 的方式和应用一起运行,SideCar 和应用通过 Unix Domain Socket 进行通讯。为了方便用户,在开发的时候不必在自己的开发环境中跑一个 SideCar,我用 socat 在一台开发环境的机器上 map UDS 到一个端口。这样用户在开发的时候就可以直接通过这个 TCP 端口测试服务,而不用自己开一个 SideCar 使用 UDS 了。 因为所有人都要用这一个地址做开发,所以就有互相影响的问题。虽然性能还可以,几十万 QPS 不成问题,但是总有憨憨拿来…
23:51 · 2021年10月29日 · 周五
HashiCorp Solutions Engineering Blog - Medium
Build a Kubernetes k3s Cluster in vSphere with Terraform and Packer
Telegraph
|
原文
Telegraph
Build a Kubernetes k3s Cluster in vSphere with Terraform and Packer - HashiCorp Solutions Engineering Blog - Medium
In this post, we will use an Ubuntu image from a previous post to build an entire Kubernetes k3s cluster in vSphere. Continue reading on HashiCorp Solutions Engineering Blog » 本文章由 flowerss 抓取自RSS,版权归源站点所有。 查看原文:Build a Kubernetes k3s Cluster in vSphere with…
22:59 · 2021年10月29日 · 周五
No Headback
DDD 到底是垃圾还是银弹
Telegraph
|
原文
Telegraph
DDD 到底是垃圾还是银弹 - No Headback
每过一段时间,就会有人跳出来批判 DDD,这东西到底是垃圾还是银弹? 在某某公司干活的时候,有一批人声称要用 DDD 改造老旧系统,彻底解决核心流程规模化之后,项目难以维护的问题。之前某篇文章里的这张图,就是在用 DDD 做项目重构之前的烂摊子: 大家都很聪明,聪明到最后没人知道这新需求到底该往哪里写了。架构师们聚在一起学习 DDD 精神,产出学习报告,大半年过去,终于出了一些成果,有些子项目完成了用 DDD 进行的重构,年底可以拿来在酒会上邀功了,这下我们跟上了业界业务开发的主流方法论,可喜可贺,可喜可贺啊。…
Before
After
Home
Powered by
BroadcastChannel
&
Sepia