项脊轩志 【作者】归有光 【朝代】明代 项脊轩,旧南阁子也。室仅方丈,可容一人居。百年老屋,尘泥渗漉,雨泽下注;每移案,顾视,无可置者。又北向,不能得日,日过午已昏。余稍为修葺,使不上漏。前辟四窗,垣墙周庭,以当南日,日影反照,室始洞然。又杂植兰桂竹木于庭,旧时栏楯,亦遂增胜。借书满架,偃仰啸歌,冥 ...
分类:
其他好文 时间:
2017-02-22 11:13:36
阅读次数:
170
在Web程序中,验证码是经常使用的技术之一。Web程序永远面临未知用户和未知程序的探测。为了防止恶意脚本的执行,验证码技术无疑是首选方案之一。本文将讨论如何在JSP和Servlet中使用验证码技术。 验证码的产生思路很简单,在Servlet中随机产生验证码字符序列,并计入session中,JSP中以 ...
分类:
编程语言 时间:
2017-02-20 10:45:24
阅读次数:
273
CAShapeLayer与UIBezierPath动画: CAShapeLayer与UIBezierPath的动画,就离不开 CABasicAnimation;也将会使用到 strokeEnd、strokeStart、lineWidth 三个属性: 先做一条贝塞尔曲线: strokeEnd: str ...
分类:
移动开发 时间:
2017-02-16 01:28:05
阅读次数:
280
分组 选择器分组 h2,p {color:gray;} 声明分组 h1 {font:18px Helvetica;color:purple;background:aqua;} 类选择器和ID选择器 多类选择器 .warning.urgent {background:silver;} 属性选择器 简单 ...
分类:
其他好文 时间:
2017-02-14 15:53:01
阅读次数:
187
esri-leaflet入门教程(3)-自定义底图 by 李远祥 在前面的篇章我们已经了解到了怎么样使用FlatUI、leaflet和esri-leaflet 去搭建简单的地图应用界面了。如果有着手写代码的朋友可能已经发现第一个Hello World 程序,使用的就是esri 的 Topograph ...
分类:
其他好文 时间:
2017-02-09 16:05:47
阅读次数:
1126
Say you have an array for which the ith element is the price of a given stock on day i.Design an algorithm to find the maximum profit. You may complet... ...
分类:
其他好文 时间:
2017-02-07 23:38:53
阅读次数:
185
function RgbToGray(RGBColor : TColor) : TColor;var Gray : byte;begin Gray := Round((0.30 * GetRValue(RGBColor)) + (0.59 * GetGValue(RGBColor)) + (0.11 ...
分类:
其他好文 时间:
2017-02-07 16:25:03
阅读次数:
161
procedure TForm1.Button1Click(Sender: TObject); var lpPalette : PLogPalette; hPal : hPalette; i : integer; begin {Allocate the memory used by the pale... ...
分类:
其他好文 时间:
2017-02-07 14:04:23
阅读次数:
191
1022 石子归并 V2 基准时间限制:1 秒 空间限制:131072 KB 分值: 160 难度:6级算法题 收藏 关注 收藏 关注 N堆石子摆成一个环。现要将石子有次序地合并成一堆。规定每次只能选相邻的2堆石子合并成新的一堆,并将新的一堆石子数记为该次合并的代价。计算将N堆石子合并成一堆的最小代 ...
分类:
其他好文 时间:
2017-01-30 21:00:05
阅读次数:
237
'ez' => 'application/andrew-inset', 'hqx' => 'application/mac-binhex40', 'cpt' => 'application/mac-compactpro', 'doc' => 'application/msword', 'bin' = ...
分类:
其他好文 时间:
2017-01-28 20:26:23
阅读次数:
245