Let it go.Let it be.Keep it up! ...
分类:
其他好文 时间:
2016-07-16 00:46:47
阅读次数:
126
Let's Encrypt 给网站加 HTTPS 完全指南
29 MAY 2016
前段时间在北京联通3G移动网络下,发现自己的站点被联通劫持注入恶心的话费充值广告,决定让我的网站强制使用 HTTPS,避免 ISP 劫持。
使用 HTTPS 前的一些疑惑
现在是 2016 年,使用 HTTPS 已经不像几年前是一件昂贵的事情。当然我也是自己了解了一圈才消除了自己的疑惑,主要是:
我的...
分类:
Web程序 时间:
2016-07-15 11:14:12
阅读次数:
847
// let bt = UIButton(frame:CGRectMake(10,20,50,50)) let button = UIButton(frame:CGRectMake(10, 150, 100, 30)) //初始化按钮和设置按钮位置与大小 button.backgroundColor ...
分类:
编程语言 时间:
2016-07-14 21:05:44
阅读次数:
183
tip 1 : 给UIImage添加毛玻璃效果 func blurImage(value:NSNumber) -> UIImage { let context = CIContext(options:[KCIContextUseSoftwareRenderer:true]) let ciImage ...
分类:
移动开发 时间:
2016-07-14 15:11:13
阅读次数:
319
s-palindrome s-palindrome Let's call a string "s-palindrome" if it is symmetric about the middle of the string. For example, the string "oHo" is "s-pa ...
分类:
其他好文 时间:
2016-07-14 07:06:09
阅读次数:
231
C. GCD Table C. GCD Table The GCD table G of size n?×?n for an array of positive integers a of length n is defined by formula Let us remind you that t ...
分类:
其他好文 时间:
2016-07-14 02:30:35
阅读次数:
150
Description You are given an array A consisting of N positive integers. You have to answer Q queries on it of following type: l r k : Let S denote the ...
分类:
编程语言 时间:
2016-07-14 01:24:44
阅读次数:
380
/*:常量变量* let 常量: 常量的值一旦设定就不能改变* var 变量: 变量的值可以随意更改* 常量&变量的使用原则:* 为保证数据的安全性尽量先用 let,只有需要改变的时候才使用 var*//*:常量定义格式* 声明符号 常量名称: 类型标注* let number: Int* 特点: ...
分类:
其他好文 时间:
2016-07-12 19:31:07
阅读次数:
146
Let's play a card game called Gap. You have 28 cards labeled with two-digit numbers. The first digit (from 1 to 4) represents the suit of the card, an ...
分类:
其他好文 时间:
2016-07-11 17:02:41
阅读次数:
165
1,LINQ查询 语法:查询表达式必须以from子句开头,以select活group子句结束。在这两个子句之间,可以使用where、orderby、join、let和其他from子句。 执行:如上,变量query只指定了LINQ查询。该查询不是通过这个赋值语句执行的,只要使用foreach循环访问查 ...