我之前用了两篇文章写了WP与Unity相互通信、调用的办法,一个是事件,一个是插件。这次来说个更简单的,我觉得这应该是Unity发布到WP或者Win Store上得天独厚的优势。毕竟都是C#。懒得写的那么详细了。具体就是在Unity里边定义了个Public的静态方法,在WP中直接就可以调用了,呵呵,...
分类:
编程语言 时间:
2014-10-24 18:44:47
阅读次数:
156
Failed to load resource: net::ERR_CACHE_MISS 译为开发人员工具载入缓存的时候,说找不到资源。原因是你先打开页面,然后打开chrome的开发人员工具。而页面本身设置了no-store 无缓存,所以后者打开的开发人员工具去不到缓存。如果你已经打开开发者工具的时...
分类:
Web程序 时间:
2014-10-24 18:16:45
阅读次数:
289
问题描述:
Given n, how many structurally unique BST's (binary search trees) that store values 1...n?
For example,
Given n = 3, there are a total of 5 unique BST's.
1 3 3 2...
分类:
其他好文 时间:
2014-10-24 16:33:10
阅读次数:
117
Cache 一致性在并行编程中非常重要,理解这些原理将是你成为并行编程高手的必经之路。...
分类:
系统相关 时间:
2014-10-24 16:30:17
阅读次数:
230
64-bit and iOS 8 Requirements for New Apps
October 20, 2014
Starting February 1, 2015, new iOS apps uploaded to the App Store must include 64-bit support and be built with the iOS 8 SDK, included in...
分类:
移动开发 时间:
2014-10-24 13:03:46
阅读次数:
141
原文http://www.gowhich.com/blog/view/id/382出于什么样的原因你会希望用户从你的iOS app中进入App Store呢?可能你想用户去App Store 为你的应用评分,也可能你希望用户看到你其他的iOS app。iOS 6引入了SKStoreProductVi...
分类:
移动开发 时间:
2014-10-24 12:46:42
阅读次数:
171
/**
* 支付渠道管理详细
*
* @param {}
* title
* @param {}
* record
* @param {}
* readonly
* @param {}
* store
*/
function showConnCfgDetail(title, record...
分类:
Web程序 时间:
2014-10-24 11:06:02
阅读次数:
296
并行编程是 CPU 进入多核时代后一个非常重要的方面,要想掌握并行编程,一些基础的知识非常重要。...
分类:
系统相关 时间:
2014-10-24 10:57:45
阅读次数:
222
https://github.com/josephmisiti/awesome-machine-learning/blob/master/books.mdMachine-Learning / Data MiningAn Introduction To Statistical Learning - B...
分类:
系统相关 时间:
2014-10-24 10:28:36
阅读次数:
331
POSTMAN in Google APP Store因為工作的關係,常常寫一些 API 供 APP 使用。以前傻傻的,每次測試的時候都會自己刻一個 HTML 的表單,一個一個填入 input ,接著送出。 後來覺得這樣太慢了,就用 JavaScript 寫了一個程式來送, 可是效率都沒有很好,尤其...