摘要:
Netduino plus 2自带SD卡槽,最大支持2G卡,以下是最基本的磁卡写入代码。for (int i = 0; i < 50; i++) { using (var filestream = new FileStream(@"SD\OBDlo... 阅读全文
摘要:
翻译水平有限,仅供参考When it comes to adaptive bitrate streaming over HTTP, file format really does matter. The fragmented MP4 (fMP4) file format, first used by Microsoft, is the basis of IIS Smooth Streaming, Adobe HTTP Dynamic Streaming, and two industry streaming standards. fMP4 files have some distinct ad 阅读全文
摘要:
这两天试着安装了一下Team Foundation Server 2010感受颇深,而这种深刻的印象其实在我参加Visual Studio 2010发布大会的时候就有所体验。当时大会上现场演示了TFS2010的安装过程,给我留下了比较深的印象:一是TFS不再仅限于安装在服务版Windows上,二是安装过程非常简单,似乎只用了10来分钟就安装完成了。这使我回想起第一次使用TFS2008时的情景:按照微软提供的安装帮助文件从操作系统安装到必要组件安装再到最后TFS安装配置,整个过程非常漫长,而且中间如果有任何组件安装不正确都会导致TFS安装出现异常,整个安装过程需要半天到一天的时间。后来又试着安. 阅读全文
摘要:
概述 Windows Phone 中的Microsoft Push Notification Service向第三方开发人员提供了一个弹性,专注,而且持续的渠道,使得开发人员可以从web service向移动应用程序发送信息和更新。 过去移动应用程序需要经常主动去调查其相应的Web服务,以了解是否有任何等待处理的通知。这样做虽然有效,但是会导致手机的无线设备频繁打开,从而对电池续航时间带来负面影响. 使用推送通知的方式取代主动调查,web service能够提醒应用程序获取所需要的重要更新。 图 1 推送 Notifications 当一个Web service有信息要发送到应用程序,它先发送 阅读全文
摘要:
MainPage.xamlCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--phone:PhoneApplicationPagex:Class="Orientation.MainPage"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:phone=" 阅读全文
摘要:
MainPage.xamlCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--phone:PhoneApplicationPagex:Class="WebBrowser.MainPage"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:phone="c 阅读全文
摘要:
MainPage.xamlCode highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--phone:PhoneApplicationPagex:Class="SIPInputScope.MainPage"xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"xmlns:phone 阅读全文
摘要:
效果如下: MainPage.xaml代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--<phone:PhoneApplicationPagex:Class="ShopShow.MainPage"xmlns="http://schemas.mi... 阅读全文
摘要:
概述: 对计算机中所存储的数据进行的最普遍的两种操作就是排序和查找。本次讨论的有关数据排序和查找的方法包括:冒泡排序,选择排序和插入排序。冒泡排序 假设要把一列数按升序方式进行排序,即较大的数值浮动到列的右侧,而较小的数值浮动到列的左侧。这种效果可以通过下列操作来实现:多次遍历整个列,并且比较相邻数值,如果左侧的数值大于右侧数值就进行交换。冒泡排序 Code highlighting produc... 阅读全文
摘要:
概念: 集合特殊元素们的一种聚合。其元素被称为“成员”。属性:集合成员都是无序的集合的成员只能出现一次定义:空集合:不包含任何成员的集合集合相等:两个集合包含完全一样的成员子集:第一个集合的全部成员都包含在第二个集合内,就认为第一个集合是第二个集合的子集集合操作:联合:把一个集合的成员与另一个集合的成员合并从而获得新的集合交叉:把既存在于第一个集合也存在于第二个集合的所有成... 阅读全文