本文地址 原文地址 关注微信公众号 这是一个读图时代,并不是说文字不行了,而是大家更喜欢图文并茂的东西。照片或者说图片更有说服力,所谓眼见为实大抵如此。这里我就稍微盘点一下读图时代的林林总总吧。 照片本身就是定个那个瞬间的,或者是记忆,或者是美好,或者是事实。这次我们就少点文字,多一点图片吧。 风景 ...
分类:
其他好文 时间:
2017-05-31 20:12:01
阅读次数:
229
public static T Clone(this T source) { if (!typeof(T).IsSerializable) { throw new ArgumentException("The type must be serializable.", "source"); ... ...
分类:
其他好文 时间:
2017-05-31 16:45:39
阅读次数:
131
所需工具: findller chrome 获取外卖历史订单地址为: http://e.waimai.meituan.com/v2/order/history/r/query?getNewVo=1&wmOrderPayType=2&wmOrderStatus=-2&sortField=1&start ...
分类:
其他好文 时间:
2017-05-31 10:19:42
阅读次数:
1374
transform-style(preserve-3d) 建立3D空间 Perspective 景深 Perspective- origin 景深基点 Transform 新增函数 rotateX() rotateY() rotateZ() translateZ() scaleZ(... ...
分类:
其他好文 时间:
2017-05-30 17:44:54
阅读次数:
210
一般使用R从数据库导出来的时间数据一般都不是我们能看的懂的(具体是什么格式的我也忘记了),需要做如下转化 最近从网上爬下来的时间数据是UTC格式的,需要作如下转化 2 as.Date(my_date,format = '%Y-%M-%D') > as.Date(my_date,format = '% ...
分类:
编程语言 时间:
2017-05-30 17:42:35
阅读次数:
144
1. 下载安装好git bash 2.到github上注册一个马甲 3. 点new repositories 建一个项目 4. 在你项目里git clone 你的项目 5. 1.git add * 2. git commit * '注释' 3. git push origin master ...
分类:
Web程序 时间:
2017-05-30 16:10:22
阅读次数:
146
在OSCHINA的GIT上创建远程项目 cd existing_git_repo git init git add Onepass/ Source/ notes.txt git commit -m "init" git remote add origin https://git.oschina.ne ...
分类:
其他好文 时间:
2017-05-30 12:50:15
阅读次数:
246
Python中对中文字符的操作时常会使程序出现乱码 不全然管用的处理方法: 读取数据时使用encode编码为Bytes以保护数据 使用时转化为string并使用decode解码 如: title = title_origin[0].encode('utf-8') title = str(title. ...
分类:
编程语言 时间:
2017-05-29 13:31:07
阅读次数:
146
public class StringUtils { public static String MD5Encode(String origin) { String resultString = null; try { resultString = new String(origin); Messag ...
分类:
移动开发 时间:
2017-05-29 09:51:45
阅读次数:
185
功能: 1、绘制的图形包括直线、椭圆和矩形,通过菜单对绘制的图形切换 2、在视图中使用鼠标动态的绘制图形 分析: 当窗口尺寸发生变化时,引起窗口重绘,会发送WM_PAINT消息,这时首先会擦除窗口的背景,然后再进行重绘操作,这样就把窗口中先前绘制的图形擦除掉了;可以将绘制图形的三要素(起点、终点、绘 ...
分类:
其他好文 时间:
2017-05-28 00:28:54
阅读次数:
343