要说清楚 HTTPS 协议的实现原理,至少需要如下几个背景知识。1. 大致了解几个基本术语(HTTPS、SSL、TLS)的含义2. 大致了解 HTTP 和 TCP 的关系(尤其是“短连接”VS“长连接”)3. 大致了解加密算法的概念(尤其是“对称加密与非对称加密”的区别)4. 大致了解 CA 证书的...
分类:
Web程序 时间:
2015-02-01 10:44:51
阅读次数:
199
select * from? (select t.*, row_number() over(partition by 分组字段 order by 排序字段 desc ) rn from tablename t ) where rn=1 select * ? from (select t.*, ? ? ? ? ? ? ? ?row_number() over...
分类:
数据库 时间:
2015-01-31 14:52:59
阅读次数:
127
[背景知识]MTU: Maxitum Transmission Unit 最大传输单元MSS: Maxitum Segment Size 最大分段大小PPPoE: PPP Over Ethernet(在以太网上承载PPP协议)MTU1500字节: 以太网.1492字节: PPPoE.1472字节: ...
分类:
其他好文 时间:
2015-01-30 17:01:33
阅读次数:
211
有坑!1. 使用(1)点击动画模式按钮,进入动画模式(2)【关键1】左下角动作列表,右键添加动画(3)【关键2】渲染区选择要动画的控件,右键编辑动画* 可以看到最下面多了关键帧(4)在右边关键帧右键添加帧,同时可以改变控件的位置(5)所有帧加起来就是该控件的动画了,点击播放Over!
分类:
其他好文 时间:
2015-01-30 15:29:00
阅读次数:
169
采用分析函数row_number()select * from( select a.*,row_number() over (partition by column1 order by column2 [desc]) as rn from table1) qwhere rn = 1其中,part.....
分类:
其他好文 时间:
2015-01-30 15:27:50
阅读次数:
128
It is vitally important to have all the cities connected by highways in a war. If a city is occupied by the enemy, all the highways from/toward that c...
分类:
其他好文 时间:
2015-01-30 08:59:03
阅读次数:
151
With the 2010 FIFA World Cup running, football fans the world over were becoming increasingly excited as the best players from the best teams doing ba...
分类:
其他好文 时间:
2015-01-30 07:54:12
阅读次数:
166
oracle 多表查询 1对多 多个数据放到一个字段内
select id,zhzxm,fzhzxm,ltrim(max(sys_connect_by_path(xm, ',')), ',') xm
from (
select id,zhzxm,fzhzxm,xm,row_number() over(partition by id order by lrsj) rn --标记...
分类:
数据库 时间:
2015-01-29 17:41:56
阅读次数:
144
#include #include #include #include #include using namespace std;#define INF 10000000int start;int over;bool sign[9];int NUM;int path[9][9];int road[9...
分类:
其他好文 时间:
2015-01-29 12:30:12
阅读次数:
157
本文原始链接 http://unmi.cc/css-a-hover-js-over-out/, 来自 隔叶黄莺 Unmi Blog原来做过一个在 html 表格中,当鼠标悬停在某行时,该行出行操作按钮,其他行的操作按钮隐藏。那时候的实现思想是当 onmouseover 在某行时,循环所有行,全隐藏掉...
分类:
Web程序 时间:
2015-01-29 10:22:12
阅读次数:
163