CentOS: 1、在grub引导界面 按“e” 进入编辑模式 2、选择 kernel /…… 然后在“e” 3、在后面加上“ single” 。 再按“b” 4、输入:“passwd root” 输入新的root密码 5、reboot,搞定 Ubuntu: 1、在grub引导界面 按“e” 进入编 ...
分类:
系统相关 时间:
2016-05-14 20:02:02
阅读次数:
340
修改root密码 有的时候会出现忘记了root 用户密码的情况,再次我们可以通过进入single(单)用户模式,将root的密码重新设置,然后重启登录即可。 具体流程: 1.先登录root用户(密码已知的情况),然后在终端中重启(reboot) 2.在重启的过程中不时地按【e】键,会出现下面的视图: ...
分类:
系统相关 时间:
2016-05-13 08:37:34
阅读次数:
289
10. Regular Expression Matching
Implement regular expression matching with support for '.' and '*'.
'.' Matches any single character.
'*' Matches zero or more of the preceding element.
The...
分类:
其他好文 时间:
2016-05-13 04:23:33
阅读次数:
121
S.O.L.I.D是面向对象设计和编程(OOD&OOP)中几个重要编码原则(Programming Priciple)的首字母缩写。
SRP
The Single Responsibility Principle
单一责任原则
OCP
The Open Closed Principle
开放封闭原则
LSP
The...
分类:
其他好文 时间:
2016-05-13 04:21:50
阅读次数:
226
Chapter 8. Scaling Redis (Beyond a Single Instance)精彩的总在最后,终于来到这一章了!本章讲述通过多实例来进行水平扩展,重要的概念有:persistence, replication, partitioning。Persistence内存是临时的, 易失性存储, 为防止数据丢失, Redis提供了两种persistence的方法:Redis Data...
分类:
其他好文 时间:
2016-05-13 03:13:23
阅读次数:
115
??
A、面向对象的五大基本原则(Object-Oriented Design)
1.单一职责原则(Single Responsibility Principle):每一个类应该只专注于做一件事。
?一个类应该仅有一个引起它变化的原因(最简单,最容易理解却最不容易做到的一个设计原则)
职员类例子:
比如在职员类里,将工程师、销售人员、销售经理这些情况都放在职员类里考虑,其结果将会非常...
分类:
其他好文 时间:
2016-05-13 02:38:48
阅读次数:
192
Problem Description
In Diagon Alley ,there is only one Wand-seller,peeling gold letters over the door read Ollivanders: Makers of Fine Wands since 382 BC.A single wand lay on a faded purple cushion in...
分类:
编程语言 时间:
2016-05-13 01:16:56
阅读次数:
258
一天一道LeetCode系列(一)题目
Implement wildcard pattern matching with support for ‘?’ and ‘*’.
‘?’ Matches any single character.
‘*’ Matches any sequence of characters (including the empty sequ...
分类:
其他好文 时间:
2016-05-13 00:44:08
阅读次数:
167
1、Add Two Numbers——这是leedcode的第二题:
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two num...
分类:
其他好文 时间:
2016-05-13 00:02:34
阅读次数:
394
单一职责原则(Single Responsibility Principle)SRP 基本概念单一职责原则
定义:应该有且仅有一个原因引起类的变更,也就是接口或类和职责的关系是一一对应的。
难点:职责的划分:
在不同情景和生产环境下我们对职责的细化是不同的(职责单一的相对性)
单一职责原则提出的是一个评价接口是否优良的标准,但是职责和变化原因是不可度量的,因项目而异,因环境而异(不可度量性)
优势...
分类:
编程语言 时间:
2016-05-12 22:52:20
阅读次数:
194