I think this may be like just a record, list all things I have done, in chinese this may be called a running account, haha.
Java中Thread和Executor的区别
发表于
|
分类于
Java
真是人品好,写了文档都赶上11:02这种时间点,一种注孤生的感觉,幸亏我已经有老婆了哈哈。
这篇文章介绍一下Java中Thread和Executor的区别。
Python requests timeout
发表于
|
分类于
Python
requests异常处理:
stackoverflow的讨论
socket to处理
requests异常处理
Linux Cgroups
发表于
|
分类于
Linux
StackStorm Learning - Actions
发表于
|
分类于
StackStorm
这个系列是翻译的StackStrom官方文档。
StackStorm Learning - Install
发表于
|
分类于
StackStorm
这个系列是翻译的StackStrom官方文档。
做了一个决定
发表于
|
分类于
life
writting blob always slow down and even forget it for some time, now I made a decision that write 2 blobs one week in English and Chinese.
StackStorm Learning - Introduction
发表于
|
分类于
StackStorm
这个系列是翻译的StackStrom官方文档。
Intellij IDEA 一些不为人知的技巧
发表于
|
分类于
Java
转载自鲁大师的简书:https://www.jianshu.com/p/364b94a664ff
Python设计模式-单例模式(Singleton Pattern)
发表于
|
分类于
Python
单例模式的主要目的是确保某一个类只有一个实例存在。当你希望在整个系统中,某个类只能出现一个实例时,单例对象就能派上用场。
例如一个程序的配置文件,客户端通过一个 AppConfig 的类来读取配置文件的信息。如果在程序运行期间,有很多地方都需要使用配置文件的内容,也就是说,很多地方都需要创建 AppConfig 对象的实例,这就导致系统中存在多个 AppConfig 的实例对象,而这样会严重浪费内存资源,尤其是在配置文件内容很多的情况下。事实上,类似 AppConfig 这样的类,我们希望在程序运行期间只存在一个实例对象。