java多线程-01-基本概念

该系列文章只是记录本人回顾java多线程编程时候记录的笔记。文中所用语言并非严谨的专业术语(太严谨的术语其实本人也不会……)。难免有理解偏差的地方,欢迎指正。
另外,大神请绕路。不喜勿喷。
毕竟好记性不如烂笔头嘛,而且许多东西只要不是你经常用的最终都会一丢丢一丢丢地给忘记。

1 几个名词

1.1 多线程

简单理解,就是同一段程序同时以多条路径执行。
而这里的“同时”一词表示的含义就看你具体的机器配置了:你有多个CPU或者多核,当然是同时并发执行了;如果你是单核单CPU那就只能是CPU时间片的切换来执行了。

阅读全文

排序算法-02-插入排序

说明

该分类下的内容只是个人笔记而已,放这里只是为了方便查找,算不上博客。

非专业定义

每次将一个待排序的元素,插入到前面已经排序的序列的合适位置(从后向前找到合适位置后),直到全部插入排序完为止。

阅读全文

常见加密类型及通信安全

声明

本篇文章只是记录一些加密类型和常见算法,所用的并不是严谨的术语,而是使用日常用语以方便理解,当然都是参考各种资料后自己的理解,所以难免有理解偏差之处,欢迎指正。大神请绕路。不喜勿喷。

阅读全文

docker筑基篇-00-docker简介

1 docker简介

docker是一个能够把开发的应用程序部署到容器的开源引擎。

具体的其他信息就不多说了,有兴趣请看一下链接:

阅读全文

git-01-简介、安装和配置

说明

本篇文章是本人回顾git知识点时从《progit》一书中摘抄出来的笔记,毕竟好记性不如烂笔头嘛,不然我也不会回顾了……
另请大神绕路,不喜勿喷……

阅读全文

git-02-基本操作

说明

本篇文章是本人回顾git知识点时从《progit》一书中摘抄出来的笔记,毕竟好记性不如烂笔头嘛,不然我也不会回顾了……
另请大神绕路,不喜勿喷……

阅读全文

shiro-常用filter

总览

org.apache.shiro.web.filter.mgt.DefaultFilter.java

阅读全文

problem01-05

声明
该系列文章来自:http://aperiodic.net/phil/scala/s-99/
大部分内容和原文相同,加入了部分自己的代码。
如有侵权,请及时联系本人。本人将立即删除相关内容。

阅读全文

java秘钥、证书管理工具-keytool

[TOC]

1 简介

keytool is a key and certificate management utility. It allows users to administer their own public/private key pairs and associated certificates for use in self-authentication (where the user authenticates himself/herself to other users/services) or data integrity and authentication services, using digital signatures. It also allows users to cache the public keys (in the form of certificates) of their communicating peers.
A certificate is a digitally signed statement from one entity (person, company, etc.), saying that the public key (and some other information) of some other entity has a particular value. (See Certificates.) When data is digitally signed, the signature can be verified to check the data integrity and authenticity. Integrity means that the data has not been modified or tampered with, and authenticity means the data indeed comes from whoever claims to have created and signed it.

阅读全文

SSL、openSSL、CA

前言

上一篇文章 http://blog.csdn.net/hylexus/article/details/53048305http://www.jianshu.com/p/c929ac2d9134 中,最终得到的安全通信的结论的前提都是基于CA及CA颁发的证书是可靠的基础上的,整个通信过程的安全性也都依赖于CA这个根源。本篇文章就来说说CA及与其相关的一些概念。

阅读全文