1. Introduction.1.1 Recently, a friend asked me for advise on a very unusual requirement.1.2 He needs to replace all UUIDs in a COM DLL with new ones.... ...
分类:
其他好文 时间:
2017-11-30 13:34:31
阅读次数:
131
WRITE BEFORE THE BOOK REVIEW I have read The Little Prince for three or four times. However I still would like to read it again and again. Fortunately ...
分类:
其他好文 时间:
2017-11-27 01:19:00
阅读次数:
230
Don't wait to be lonely, to recognize the value of a friend. 不要等到孤独了,才明白朋友的价值。 Don't wait to be left far behind to know the value of endeavors. Maybe ...
分类:
其他好文 时间:
2017-11-25 00:55:05
阅读次数:
135
You are playing the following Flip Game with your friend: Given a string that contains only these two characters: + and -, you and your friend take tu ...
分类:
其他好文 时间:
2017-11-23 19:50:26
阅读次数:
384
#include #include #include #include #include #include using namespace std; class StrBlobPtr; class StrBlob { friend class StrBlobPtr; public: using si... ...
分类:
其他好文 时间:
2017-11-17 21:01:38
阅读次数:
169
浏览器给网站发请求的过程一直没怎么变过。当浏览器给网站发了请求。服务器收到了请求,然后开始搜寻被请求的资源。如果有需要,服务器还会查询一下数据库,最后把响应结果传回浏览器。不过,在传统的web服务器中(比如Apache),每一个请求都会让服务器创建一个新的进程来处理这个请求。 后来有了Ajax。有了 ...
分类:
其他好文 时间:
2017-11-17 00:02:55
阅读次数:
149
一个简单的point坐标类 class Point {public: Point():xval(0),yval(0){} Point(int x,int y):xval(x),yval(y){} int x()const { return xval; } int y()const { return ...
分类:
编程语言 时间:
2017-11-14 11:26:09
阅读次数:
234
字符串是 Python 中最常用的数据类型。我们可以使用引号('或")来创建字符串。 创建字符串很简单,只要为变量分配一个值即可。 var1 = 'Hello World!' var2 = "Python Runoob" Python访问字符串中的值 Python不支持单字符类型,单字符也在Pyth ...
分类:
编程语言 时间:
2017-11-11 20:40:18
阅读次数:
158
"Paramiko" is a combination of the Esperanto words for "paranoid" and "friend". It's a module for Python 2.7/3.4+ that implements the SSH2 protocol fo ...
分类:
其他好文 时间:
2017-11-10 23:21:49
阅读次数:
475
spa(单页应用,vue)中,使用history模式时,微信长按识别二维码在ios下失效的问题。 触发条件: spa单页应用; 路由模式 history 从其他页面跳转到带有微信二维码识别的页面(不是直接打开该页面) ios版本的微信(实测版本6.5.19) 结果: 二维码长按无法识别,刷新页面后恢 ...
分类:
微信 时间:
2017-11-10 15:18:04
阅读次数:
574