Given several boxes with different colors represented by different positive numbers. You may experience several rounds to remove boxes until there is ...
分类:
其他好文 时间:
2017-05-13 23:20:06
阅读次数:
228
ORA-00257:archivererror.Connectinternalonly,untilfreed错误的处理方法oracle数据库做了实时同步功能,同步必须要打开归档日志功能1.用sys用户登录sqlplussys/passwordassysdba;2.看看archivlog有那些日志SQL>showparameterlog_archive_dest;3.可以用archiveloglist检查一..
分类:
其他好文 时间:
2017-05-12 22:25:21
阅读次数:
271
回顾: 字符串处理 数组 bash交互 if forcase分支选择结构: case词in[模式[|模式]...)命令;;]...esac case变量引用in 模式1) 分支1 ;; 模式2) 分支2 ;; ... *) 默认分支 ;; esac模式(PATTERN): 1.普通的文本字符 2.globbing风格的通配符: *:任意长度任意字..
分类:
其他好文 时间:
2017-05-11 14:41:40
阅读次数:
282
项目地址:https://github.com/fsnotify/fsnotify fsnotify 能监控指定文件夹 内文件的修改情况,如 文件的 增加、删除、修改、重命名等操作。 官方给出了以下注意事项: When a file is moved to another directory is ...
分类:
其他好文 时间:
2017-05-10 15:38:05
阅读次数:
323
Given a non-negative integer num, repeatedly add all its digits until the result has only one digit. Example Given num = 38. The process is like: 3 + ...
分类:
其他好文 时间:
2017-05-10 15:37:57
阅读次数:
132
Given a binary tree, collect a tree's nodes as if you were doing this: Collect and remove all leaves, repeat until the tree is empty. Example: Given b ...
分类:
其他好文 时间:
2017-05-10 12:51:37
阅读次数:
136
一、背景ORA-00257: archiver error. Connect internal only, until freed。考虑到前些天已经扩大了硬盘空间,应该是archive log大小已经达到Oracle中对archive log大小的限制。而DBA已经放假了。因此决定清除下无用的日志同 ...
分类:
数据库 时间:
2017-05-09 21:51:10
阅读次数:
296
© 版权声明:本文为博主原创文章,转载请注明出处 1.循环类型 1.1 while循环 - 语法:while(condition) do ...<执行语句> end - 解析:判断condition是否为true,为true执行语句,false结束循环 1.2 for循环 1.2.1 数值for循环 ...
分类:
其他好文 时间:
2017-05-09 18:59:07
阅读次数:
216
本文出处:http://oldboy.blog.51cto.com/2561410/1889346 30.1 文档目的 本文目的提高自己文档的写作能力及排版能力,加强上课所讲的内容得以锻炼也方便自己以后查阅特写此文档。 30.2 文档内容 本章内容包括:单向和双向认证的概念、openssl的介绍、N ...
分类:
Web程序 时间:
2017-05-02 13:50:56
阅读次数:
377
一、多线程网络 1. 多线程的底层实现? 1> 首先搞清楚什么是线程、什么是多线程 2> Mach是第一个以多线程方式处理任务的系统。因此多线程的底层实现机制是基于Mach的线程 3> 开发中非常少用Mach级的线程,由于Mach级的线程没有提供多线程的基本特征,线程之间是独立的 4> 开发中实现多 ...
分类:
移动开发 时间:
2017-05-02 10:00:59
阅读次数:
280