博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2012年5月1日

摘要: 1、下载 Windows 8 Consumer Preview从VHD启动win8的方法win7,win8双系统的方法用虚拟机(vmware)装win8的方法这里有3种实现win8安装的方式,个人推荐用vhd的方式,这是在性能和对磁盘分区影响的一个折衷的方式。2、下载 Microsoft Visual Studio11 Beta开发metro风格的程序必须得用他,目前最新版只有beta,一些新特性如下:向后兼容vs2010sp1的工程更强大的搜索功能针对C++和javascript的编辑器做了更多智能提示的优化,以及支持metro、html5异步功能(async)asp.net 4.5dx s 阅读全文

posted @ 2012-05-01 11:36 淡如水wp 阅读(3301) 评论(0) 推荐(0) 编辑

2012年4月30日

摘要: 从同事那拷来了windows8 CP的VHD,昨天休息一天,今天再次打开visual studio 2011 beta编译程序时居然提示:DEP0730 : Registration of the application failed because no Developer License is installed。意思是需要开发授权才能编译程序,并弹出一个获取授权的窗口,可是输入msn账号却失败,折腾了一个小时。在网上搜了很多文章,也并没有解决问题http://connect.microsoft.com/VisualStudio/feedback/details/728710/failed 阅读全文

posted @ 2012-04-30 17:51 淡如水wp 阅读(1089) 评论(1) 推荐(0) 编辑

2012年3月29日

摘要: Q群号 88628083讨论wp7的相关应用,前景,框架,发布,疑难杂症等。看好wp7并正在开发自己或商业应用的同学请加入吧。 阅读全文

posted @ 2012-03-29 11:38 淡如水wp 阅读(642) 评论(0) 推荐(0) 编辑

2010年12月5日

摘要: ogr是gdal的一部分,主要是处理gis的矢量数据。ogr的地理数据模型符合OGC的简单数据对象模型标准,如下图:最顶层是Geometry类,下面的点(Point),曲线(Curve),表面(Surface)分别继承于它。然后geometry与投影相关的类成关联关系。线串(LineString)继承于曲线(Curve),且线串(LineString)由点(Point)聚焦而成,一对连续的点决定一个线段。线(Line)与环线(LinearRing)同时继承于线串(LineString)。线(Line)是只有两个点的线串(LineString)。环线(LinearRing)是一种特殊的线串(Li 阅读全文

posted @ 2010-12-05 11:55 淡如水wp 阅读(4949) 评论(0) 推荐(0) 编辑

2010年12月4日

摘要: gdal是著名的开源GIS数据操作库,包括arcgis在内的软件都在用它。官网地址如下:http://www.gdal.org/支持的格式很多。包括 基础的图片png,gif,jpg,tiff,bmppci,erdas,arcinfo的遥感影像数据shp,tab,mif等的矢量文件oracle spatial,postsql的空间数据库打算结合qt做一些相关的学习性开发,走了不少弯子。因为是打算抛开微软的那一套来开发,所以也麻烦了许多。编译器采用的是MinGW,我用的版本是4.5,下载地址如下:http://sourceforge.net/projects/mingw/files/gdal的源 阅读全文

posted @ 2010-12-04 16:57 淡如水wp 阅读(6542) 评论(0) 推荐(0) 编辑

2010年11月29日

摘要: Trees are a very common data structure in computer science. A tree is anonlinear data structure that is used to store data in a hierarchical manner.We examine one primary tree structure in this chapter, the binary tree, alongwith one implementation of the binary tree, the binary search tree. Binaryt 阅读全文

posted @ 2010-11-29 17:21 淡如水wp 阅读(1382) 评论(0) 推荐(0) 编辑

2010年11月28日

摘要: Searching for data is a fundamental computer programming task and onethat has been studied for many years. This chapter looks at just one aspect ofthe search problem—searching for a given value in a list (array).There are two fundamental ways to search for data in a list: the sequentialsearch and th 阅读全文

posted @ 2010-11-28 02:52 淡如水wp 阅读(834) 评论(0) 推荐(0) 编辑

2010年11月24日

摘要: The two most common operations performed on data stored in a computerare sorting and searching. This has been true since the beginning of the computingindustry, which means that sorting and searching are also two of themost studied operations in computer science. Many of the data structures discusse 阅读全文

posted @ 2010-11-24 20:24 淡如水wp 阅读(725) 评论(0) 推荐(0) 编辑

2010年9月27日

摘要: 6300号称最耐用的,结果才一年就被我弄得白屏开不了机了,开机重启三下就一直关机了。。在柜子里甩了半年,今天看到网上有刷机软件,以前怕刷成砖来着,现在懒得管了,不值钱的东西了已经是,后来才发现网上好多人都有这种情况。具体步骤如下:环境准备:凤凰刷机软件(我用的是2009版)6300对应的刷机固件包(我用的是RM-217,7.30版本,product code是0559234,这些在手机后盖里的入网... 阅读全文

posted @ 2010-09-27 21:20 淡如水wp 阅读(979) 评论(0) 推荐(0) 编辑

2010年8月22日

摘要: 打算把 proj.net 移植到silverlight上,发现居然不认识手动写的WKT,查了很多资料,原来是不认unicode.改成unicode后才解决。操作步骤:将StreamTokenizer.cs文件中的#if SILVERLIGHTEncoding AE = System.Text.Encoding.Unicode;#else ASCIIEncoding AE = new ASCIIEn... 阅读全文

posted @ 2010-08-22 16:46 淡如水wp 阅读(397) 评论(0) 推荐(0) 编辑