CookBook

CookBook

如何做一个有质量的技术分享 | 酷 壳 - CoolShell

Posted on Tue, Jul 4, 2023

DOCKER: LINUX NAMESPACE

Posted on Mon, Jul 3, 2023 Linux

What is CPU?

本文介绍了 CPU 的定义和组成,以及 CPU 的发展历程和性能指标。其中,Clock Speed、Cores、Cache 和 Hyper-Threading 是影响 CPU 性能的关键指标。此外,还介绍了如何检查 CPU 的关键指标,如 CPU 使用率、CPU 负载平均值、CPU 时钟频率、CPU 核心数量、CPU 线程数量和 CPU Scaling Governor等。

Posted on Sat, Jun 24, 2023 Operating System

Extending with Shared Libraries

This document provides a comprehensive guide to using shared libraries in Jenkins. It covers the differences between trusted and untrusted libraries, and how to load and use libraries in your pipelines. It also includes information on defining global variables and custom steps, and troubleshooting tips.

Posted on Tue, Jun 20, 2023 Jenkins CI

Jenkins: Declarative Pipelines

Embrace Declarative Pipeline

Posted on Tue, Jun 6, 2023 Jenkins CI

Jenkins: The Foundations

Introducing Jenkins basic concepts and functionality

Posted on Tue, Jun 6, 2023 Jenkins CI

Version Control

The document discusses four different version control workflows: Git Flow, GitHub Flow, GitLab Flow, and Trunk Based Development. Each workflow has its own set of pros and cons, with some being more suitable for larger projects or longer release cycles, while others are better suited for web projects or continuous delivery. Git Flow, for example, provides a clear branching model, while GitHub Flow emphasizes simplicity and fast feedback. GitLab Flow builds upon Git Flow and GitHub Flow while offering additional features, and Trunk Based Development emphasizes frequent integration of code changes into a shared main branch.

Posted on Sat, Jul 2, 2022 VCS

Code Review Guidelines

A code review is a process where someone other than the author(s) of a piece of code examines that code. At Google, we use code review to maintain the quality of our code and products. This documentation is the canonical description of Google’s code review processes and policies.

Introducing Jenkins