发布

公众号:懒时小窝

赐他一块白石,石头上刻着新名
专栏成员
280
文章
261727
阅读量
29
订阅数
如何写一份优秀的接口文档
最近看了很多写的非常好的接口文档,在理解业务方面给了非常多的帮助,解决很多时候对于一些协商数据的问题困扰,同时,后续个人的工作当中,也需要对外开放接口给第三方进行调用,这时候一个好的规范文档可以解决很多问题。
阿东
2021-08-16
18.3K0
置顶
《How To Be Intresting》步骤十:无视责骂
2023年被某宝算法推荐而购买的一本书,这本书采用了一种新颖而引人入胜的方式来传达智慧——通过漫画。
阿东
2024-11-25
670
《How To Be Intresting》步骤九:勇敢一点
2023年被某宝算法推荐而购买的一本书,这本书采用了一种新颖而引人入胜的方式来传达智慧——通过漫画。
阿东
2024-11-25
790
《How To Be Intresting》步骤八: 不要跟风或退出潮流
2023年被某宝算法推荐而购买的一本书,这本书采用了一种新颖而引人入胜的方式来传达智慧——通过漫画。
阿东
2024-11-22
540
《How To Be Intresting》步骤六:减少自负
2023年被某宝算法推荐而购买的一本书,这本书采用了一种新颖而引人入胜的方式来传达智慧——通过漫画。
阿东
2024-11-13
720
固态硬盘做缓存盘是什么意思?
用固态硬盘直接做缓存盘不同于直接用固态硬盘做系统盘直接在固态硬盘上读取数据,固态硬盘做缓存盘的时候是根据用户经常访问的数据,将这一部分数据保存到固态硬盘上方便下次读取的时候快速读取而已,其作用类似硬盘的内存,只不过这块内存的数据并不会伴随关机而自动清空。
阿东
2024-05-08
3200
【Java】Java - GC 是如何工作的
Java — How GC works. One of the most notable features of… | by RR | Jul, 2023 | Medium
阿东
2024-05-08
1210
如何让Apache HttpClient 支持SSL配置?
按照Httpclient的设计要求编写一个响应信息处理类,也可以使用匿名内部类或者Lambda表达式。
阿东
2024-05-08
7210
Chapter 10. Network Applications and Services(网络应用和服务)
This chapter explores basic network applications—the clients and servers running in user space that reside at the application layer. Because this layer is at the top of the stack, close to end users, you may find this material more accessible than the material in Chapter 9. Indeed, you interact with network client applications such as web browsers and email readers every day.
阿东
2024-04-28
1650
【Linux】《how linux work》第八章 流程和资源利用的近距离观察
This chapter takes you deeper into the relationships between processes, the kernel, and system resources. There are three basic kinds of hardware resources: CPU, memory, and I/O. Processes vie for these resources, and the kernel’s job is to allocate resources fairly. The kernel itself is also a resource—a software resource that processes use to perform tasks such as creating new processes and communicating with other processes. Many of the tools that you see in this chapter are often thought of as performance-monitoring tools. They’re particularly helpful if your system is slowing to a crawl and you’re trying to figure out why. However, you shouldn’t get too distracted by performance; trying to optimize a system that’s already working correctly is often a waste of time. Instead, concentrate on understanding what the tools actually measure, and you’ll gain great insight into how the kernel works.
阿东
2024-04-22
1160
【Linux】《how linux work》第九章 了解网络及其配置
Networking is the practice of connecting computers and sending data between them. That sounds simple enough, but to understand how it works, you need to ask two fundamental questions:
阿东
2024-04-22
2780
【Linux】《how linux work》第二章 基本命令和目录层次结构(第二部分)
Occasionally, you may redirect standard output but find that the program still prints something to the terminal. This is called standard error (stderr); it’s an additional output stream for diagnostics and debugging.
阿东
2024-04-21
1290
【Linux】《how linux work》第二章 基本命令和目录层次结构(第一部分)
This chapter is a guide to the Unix commands and utilities that will be referenced throughout this book. This is preliminary material, and you may already know a substantial amount of it. Even if you think you’re up to speed, take a few seconds to flip through the chapter just to make sure, especially when it comes to the directory hierarchy material in 2.19 Linux Directory Hierarchy Essentials.
阿东
2024-04-21
1210
【Linux】《how linux work》第五章 Linux内核的启动过程
You now know the physical and logical structure of a Linux system, what the kernel is, and how to work with processes. This chapter will teach you how the kernel starts— or boots. In other words, you’ll learn how the kernel moves into memory up to the point where the first user process starts.
阿东
2024-04-10
4510
【Linux】《how linux work》第四章 磁盘和文件系统
In Chapter 3, we discussed some of the top-level disk devices that the kernel makes available. In this chapter, we’ll discuss in detail how to work with disks on a Linux system. You’ll learn how to partition disks, create and maintain the filesystems that go inside disk partitions, and work with swap space.
阿东
2024-03-22
2630
【Linux】《how linux work》第三章 设备
This chapter is a basic tour of the kernel-provided device infrastructure in a functioning Linux system.
阿东
2024-03-22
2370
JSON 网络加密(JWE)说明
JSON Web Encryption (JWE) の解説 #JWT - Qiita
阿东
2024-03-22
3770
【Git】Common Git Command Line Operation
Common Git Command Line Operation | Chanvin's Blog (chanvinxiao.com)
阿东
2024-03-05
1490
【GO】《GO HANDBOOK》读书笔记
非常入门的一本书?准确来说是一篇GO的入门文章,用于学学英语和简单了解GO还不错,并且词汇和语法都比较简洁易懂。
阿东
2024-03-02
1910
【Tomcat】《How Tomcat Works》英文版GPT翻译(第二十章)
Chapter 19 discussed the Manager application. It showed that the ManagerServlet class implemented the ContainerServlet interface to get access to Catalina internal objects. This chapter now shows that managing Tomcat can be achieved more sophisticatedly using the Java Management Extensions (the JMX specification). For those unfamiliar with JMX, a brief introduction is given at the beginning of the chapter. In addition, this chapter explains the Commons Modeler library that Catalina uses to ease the task of writing Managed Beans, the objects used for managing other objects. Examples are offered to make understanding the use of JMX in Tomcat easier.
阿东
2024-02-06
1470
点击加载更多
社区活动
Python精品学习库
代码在线跑,知识轻松学
博客搬家 | 分享价值百万资源包
自行/邀约他人一键搬运博客,速成社区影响力并领取好礼
技术创作特训营·精选知识专栏
往期视频·干货材料·成员作品 最新动态
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档