上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 48 下一页

2016年10月15日

EasyN IP Camera

摘要: Android App: "EasyN P" How to access EasyN HD ip camera web interface by browser: http://support.easyn.com/support/solutions/articles/4000069862-how-t 阅读全文

posted @ 2016-10-15 12:09 cutepig 阅读(776) 评论(0) 推荐(0) 编辑

2016年10月2日

Dynamic dispatch

摘要: Dynamic dispatch动态调度。动态分发 In computer science, dynamic dispatch is the process of selecting which implementation of a polymorphic operation (method or 阅读全文

posted @ 2016-10-02 22:57 cutepig 阅读(844) 评论(0) 推荐(0) 编辑

C++ vs Objective C

摘要: oc Short list of some of the major differences: C++ allows multiple inheritance, Objective-C doesn't.一个允许多继承,一个不允许Unlike C++, Objective-C allows metho 阅读全文

posted @ 2016-10-02 21:59 cutepig 阅读(279) 评论(0) 推荐(0) 编辑

2016年10月1日

Dynamic Signals and Slots

摘要: Ref https://doc.qt.io/archives/qq/qq16-dynamicqobject.html Trolltech | Documentation | Qt Quarterly Dynamic Signals and Slotsby Eskil Abrahamsen Blomf 阅读全文

posted @ 2016-10-01 23:58 cutepig 阅读(416) 评论(0) 推荐(0) 编辑

Quest for sane signals in Qt - step 1 (hand coding a Q_OBJECT)

摘要: 探索qt的信号ref: http://crazyeddiecpp.blogspot.hk/2011/01/quest-for-sane-signals-in-qt-step-1.html If it wasn't for the particular implementation of signal 阅读全文

posted @ 2016-10-01 23:05 cutepig 阅读(318) 评论(0) 推荐(0) 编辑

Why aren't more desktop apps written with Qt?

摘要: Ref http://programmers.stackexchange.com/questions/88685/why-arent-more-desktop-apps-written-with-qt I don't really intend this to be a bashing answer 阅读全文

posted @ 2016-10-01 22:10 cutepig 阅读(256) 评论(0) 推荐(0) 编辑

What is the difference between concurrency, parallelism and asynchronous methods?

摘要: Ref: http://stackoverflow.com/questions/4844637/what-is-the-difference-between-concurrency-parallelism-and-asynchronous-methods Concurrent and paralle 阅读全文

posted @ 2016-10-01 10:24 cutepig 阅读(217) 评论(0) 推荐(0) 编辑

2016年9月25日

自建mail服务器之二:hmailserver

摘要: 具体参考: http://blog.xuite.net/sendohshih/blog/41958216-3%E5%88%86%E9%90%98%E8%BC%95%E9%AC%86%E6%93%81%E6%9C%89%E8%87%AA%E5%B7%B1%E7%9A%84Mail+Server 阅读全文

posted @ 2016-09-25 17:11 cutepig 阅读(283) 评论(0) 推荐(0) 编辑

自建mail服务器之一:dns解析

摘要: 这个其实不是必须的 1,maradns服务器安装和设置 mararc文件 db.lan.txt 2,配置系统dns服务器为127.0.0.1 3,测试 C:\Users\cutepig>e:\Users\cutepig\Downloads\maradns-2-0-13-win32\maradns-2 阅读全文

posted @ 2016-09-25 15:02 cutepig 阅读(1318) 评论(0) 推荐(0) 编辑

2016年9月10日

区间树

摘要: 概念: 区间树是在红黑树基础上进行扩展得到的支持以区间为元素的动态集合的操作, 每个节点的关键值是区间的左端点。通过建立这种特定的结构,可是使区间的元素的查找和插入都可以在O(lgn)的时间内完成。 相比于基础的数据结构,增加了一个max[x],即以x为根的子树中所有区间的断点的最大值 区间树如下图 阅读全文

posted @ 2016-09-10 16:56 cutepig 阅读(2743) 评论(0) 推荐(0) 编辑

2016年9月5日

3d tech

摘要: http://www.lmi3d.com/products/hdi-100-series http://www.lmi3d.com/products/flexscan3d Tech: stereo + projection? speed FOV resoliution 阅读全文

posted @ 2016-09-05 00:52 cutepig 阅读(220) 评论(0) 推荐(0) 编辑

2016年8月25日

3d

摘要: http://www8.hp.com/us/en/sprout/3d.html http://www.david-3d.com/en/products/sls-3 http://www8.hp.com/us/en/hp-news/blog/3d-printing/3d-acquisition.htm 阅读全文

posted @ 2016-08-25 00:05 cutepig 阅读(119) 评论(0) 推荐(0) 编辑

2016年8月7日

node inspector

摘要: 阅读全文

posted @ 2016-08-07 00:20 cutepig 阅读(106) 评论(0) 推荐(0) 编辑

2016年7月24日

平板比较

摘要: 比较因素: 价格 续航 分辨率 Ipad Ipadmini Surface 3 Surface Pro 4 阅读全文

posted @ 2016-07-24 11:54 cutepig 阅读(212) 评论(0) 推荐(0) 编辑

2016年7月10日

Node。js 访问gmail

摘要: 参考: https://developers.google.com/gmail/api/quickstart/nodejs step 1,在google网站上打开gmail api,下载JSOn step 2,安装node lib Step 3: Set up the sample sample代码 阅读全文

posted @ 2016-07-10 23:03 cutepig 阅读(251) 评论(0) 推荐(0) 编辑

2016年7月9日

node nightmare 网页自动化测试 sample

摘要: 安装nightmare 编写1.js 运行 node 1.js var Nightmare = require('nightmare');var nightmare = Nightmare({ show: true }) nightmare .goto('http://yahoo.com') .ty 阅读全文

posted @ 2016-07-09 19:30 cutepig 阅读(1461) 评论(0) 推荐(0) 编辑

node start - hello world http server

摘要: Write a file t1.js 运行 node t1.js 在浏览器输入 http://localhost:8080/ 阅读全文

posted @ 2016-07-09 12:20 cutepig 阅读(299) 评论(0) 推荐(0) 编辑

2016年6月25日

中國駐香港外交部

摘要: 中國駐香港外交部簽証處 - 香港灣仔港灣道26號華潤大廈低座 7 樓0900-1200 / 1400-1700 (星期一至五) 二、外國人簽證處 頒發外國公民進入中國內地的各類簽證。 辦公地點、時間、電話和傳真: 地 點:香港 灣仔 港灣道26號華潤大廈3樓 時 間:星期一至星期五 上午9:00-1 阅读全文

posted @ 2016-06-25 18:16 cutepig 阅读(600) 评论(1) 推荐(0) 编辑

2016年6月6日

create a simple COM object

摘要: // ConsoleApplication1.cpp : Defines the entry point for the console application. // //CoGetClassObject() simply does half the job that CoCreateInstance() does.It returns a class facto... 阅读全文

posted @ 2016-06-06 22:58 cutepig 阅读(166) 评论(0) 推荐(0) 编辑

2016年6月4日

Inside VCL 深入核心VCL架构剖析笔记

摘要: 阅读全文

posted @ 2016-06-04 22:42 cutepig 阅读(271) 评论(0) 推荐(0) 编辑

上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 48 下一页

导航