上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 28 下一页
摘要: 前言 软件开发工作无论是从宏观还是微观上看,都可以看作一个问题解决的过程。从宏观上看,软件开发,简单来说,就是弄清楚客户的需求是什么,然后通过分析、设计、编码和测试等一系列活动解决如何将需求转换为代码的问题。从微观上看,开发人员的日常工作中也面临各式各样的问题。比如,用于调试代码的Web服务器突然... 阅读全文
posted @ 2015-08-06 11:45 遥望星空 阅读(405) 评论(0) 推荐(0) 编辑
摘要: 英文原文:Finding awesome developers in programming interviews 我曾在一次面试中要求一个很有经验的嵌入式软件开发人员写出一个反转一段字符串并输出到屏幕上的程序。他在这个题目上挣扎了很久。这个家伙是个很神奇的人。你给他一些没用的零件,他能建造一个机... 阅读全文
posted @ 2015-08-06 11:42 遥望星空 阅读(269) 评论(0) 推荐(0) 编辑
摘要: I had been happily coding an iOS app (targeting iPad) using Xamarin/VS.Netwith everything working fine when debugging in the iOS simulator, however as... 阅读全文
posted @ 2015-08-06 10:22 遥望星空 阅读(223) 评论(0) 推荐(0) 编辑
摘要: Since applications on the iPhone using Xamarin.iOS are compiled to static code, it is not possible to use any facilities that require code generation ... 阅读全文
posted @ 2015-08-06 09:09 遥望星空 阅读(594) 评论(0) 推荐(0) 编辑
摘要: Ahead-of-Time (AOT) compilation is in contrast toJust-in-Time compilation(JIT).In a nutshell, .NET compilers do not generate platform specific assembl... 阅读全文
posted @ 2015-08-06 08:59 遥望星空 阅读(304) 评论(0) 推荐(0) 编辑
摘要: Eclipse:IBM花了4千万美金来开发这个IDE(IntegratedDevelopmentEnvironment)。第一版1.0在2001年11月释出,随后逐渐受到欢迎。Eclipse已经成为开放原始码计划(OpenSourceProject)大部分的开发扔然掌握在IBM手中,但是有一部份由e... 阅读全文
posted @ 2015-08-05 01:41 遥望星空 阅读(4438) 评论(0) 推荐(1) 编辑
摘要: 相信大家都在安裝MyEclipse 2014 for Mac時候會遇到提示虚拟内存为0,,无法安装。。。小弟找了解決方法。。。1. 先下載軟件及破解檔案。 http://pan.baidu.com/s/1mgKKrsk密码bd5u2. 在terminal 執行這個指令 memory_pressure... 阅读全文
posted @ 2015-08-05 00:22 遥望星空 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 最近想尝尝鲜,FQ去www.myeclipseide.com上下载了最新版的MyEclipse 15CI版,安装的时候,报告如下错误(MyEclipse 14也会出现这个问题):Your system does not have sufficient memory to support MyEcli... 阅读全文
posted @ 2015-08-04 23:07 遥望星空 阅读(704) 评论(0) 推荐(0) 编辑
摘要: 1、沙盒机制介绍iOS 中的沙盒机制(SandBox)是一种安全体系。每个 iOS 应用程序都有一个单独的文件系统(存储空间),而且只能在对应的文件系统中进行操作,此区域被称为沙盒。所有的非代码文件都要保存在此,例如属性文件 plist、文本文件、图像、图标、媒体资源等。2、沙盒目录结构通常情况下,... 阅读全文
posted @ 2015-08-04 19:12 遥望星空 阅读(4007) 评论(0) 推荐(1) 编辑
摘要: 应用沙盒结构分析1、应用程序包:包含了所有的资源文件和可执行文件2、Documents:保存应用运行时生成的需要持久化的数据,iTunes同步设备时会备份该目录3、tmp:保存应用运行时所需要的临时数据,使用完毕后再将相应的文件从该目录删除。应用没有运行,系统也可能会清除该目录下的文件,iTunes... 阅读全文
posted @ 2015-08-04 18:50 遥望星空 阅读(2159) 评论(0) 推荐(0) 编辑
摘要: 什么是bundle?bundle就是一个文件夹,按照一定标准组织的目录结构。每个iOS APP至少有一个main bundle,这个main bundle包含了app的二进制代码及任何你用到的资源,如图片,声音,HTML文件等。换句话说,主bundle包含了所有资源,这些资源会被编译成二进制代码提交... 阅读全文
posted @ 2015-08-04 18:11 遥望星空 阅读(2990) 评论(0) 推荐(0) 编辑
摘要: 初学iOS开发的同学,不管是自己写的,还是粘贴的代码,或多或少都写过下面的代码[[NSBundlemainBundle]pathForResource:@"someFileName"ofType:@"yourFileExtension"];[YourViewControllerinitWithNib... 阅读全文
posted @ 2015-08-04 18:10 遥望星空 阅读(1339) 评论(0) 推荐(0) 编辑
摘要: 你有没有想过一个Mac的MagSafe接头里面有什么? 控制光线是什么? 在Mac如何知道它是什么样的充电器? 本文探讨的MagSafe连接器内,并回答这些问题。 2006年由苹果公司推出的MagSafe接头十分方便,他靠磁力吸在Mac身上,插拔方便而且有人踢到电源线时会自动断开,而且不分反正。 ... 阅读全文
posted @ 2015-07-31 11:23 遥望星空 阅读(7997) 评论(1) 推荐(0) 编辑
摘要: 最近感悟越来愈多,女儿越来越大,头发越来越少,我知道,自己老了。30岁之后,时间仿佛开闸的河水一样滚滚而去,感觉自己浪费的时间太多。我们不得不承认,先知先觉的人会比我们领先10年甚至更多的身位。所以我们唯一能做的就是,奔跑和追赶。岁数大了之后,会变的唠叨,此言非虚,现在常常回想起自己走过的道路,一路... 阅读全文
posted @ 2015-07-30 18:55 遥望星空 阅读(468) 评论(0) 推荐(1) 编辑
摘要: 写这篇文档的原因有两个,一、身边使用Mac的朋友越来越多,经常会有人来咨询一些常见的使用问题,比如:“为什么把界面右上角的红色按钮叉掉,程序还没有关闭?”之类。而且我也不愿意看到很多人使用OSX时仅仅用到最基本的功能。让他们去Google吧,查完了回来还得问你,所以准备就我的个人经验写一个入门篇,这... 阅读全文
posted @ 2015-07-30 18:43 遥望星空 阅读(594) 评论(0) 推荐(0) 编辑
摘要: 新版OS X 10.10.4系统,命名为“Yosemite”(优胜美地),拥有全新的界面设计及一些功能更新,下面一起来了解一下。一.界面扁平化、进一步融入iOS功能首先,OS X 10.10 Yosemite最大变化来自于界面设计,全面向iOS 7的扁平化风格靠拢。可以看到,Dock栏和图标完全重新... 阅读全文
posted @ 2015-07-30 16:36 遥望星空 阅读(1336) 评论(0) 推荐(0) 编辑
摘要: 下载MACOSX 10.10.3/10.9镜像文件,下载地址http://www.chinamac.com/download/mac14032.html1.准备好你需要的大于等于6G以上的U盘或者移动硬盘或者分区。2.双击挂载懒人版镜像文件(必须操作此步骤,并等待验证,验证通过说明下载完整)3.打开... 阅读全文
posted @ 2015-07-30 16:35 遥望星空 阅读(2272) 评论(0) 推荐(0) 编辑
摘要: 我有些尴尬地拿着水杯,正对面坐着来访的王总,他是在别处打拼的人,这几年据说收获颇丰,见移动互联网如火如荼,自然也想着要进来干一场,尽管王总从事的行当也算跟IT沾边,但毕竟太长时间不接触技术,有些东西不太熟,总要咨询下我这个在一线开发混了十几年的老程序员,十几年的开发,有好几种可能性,不过这不是重点,... 阅读全文
posted @ 2015-07-30 11:33 遥望星空 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 今天使用Hibernate出个奇怪的错误,第一次碰到Remember that ordinal parameters are 1-based!原因是问题发生的原因是:hql语句里不需要参数,却添加了一个参数,删掉添加参数的语句就可以了!我的HQL语句:String hql="from Users a... 阅读全文
posted @ 2015-07-26 03:02 遥望星空 阅读(1627) 评论(0) 推荐(0) 编辑
摘要: As I was going through the various inheritance strategies in Hibernate, I came across the ‘class’ element’s attribute,polymorphism=”implicit|explicit”... 阅读全文
posted @ 2015-07-26 00:58 遥望星空 阅读(682) 评论(0) 推荐(0) 编辑
摘要: I love developing software on my MacBook Air! I got the latest version with the maximum possible specifications (i7, 8GB internal mem, 512GBSSD disk) ... 阅读全文
posted @ 2015-07-24 10:58 遥望星空 阅读(394) 评论(0) 推荐(0) 编辑
摘要: 今天,我很高兴地向大家宣布:Visual Studio 2015 和 .Net 4.6 的正式版本现已提供下载! 自去年十一月我们提出了微软开发技术的愿景:让所有开发者,无论他在什么平台,开发哪种应用程序,都能运用 Visual Studio 和 .NET 技术大幅提升他们的生产力。这次发布是又一... 阅读全文
posted @ 2015-07-23 14:18 遥望星空 阅读(14610) 评论(4) 推荐(3) 编辑
摘要: 刚刚体验了一把VS 2015,后来因为部分sdk和工具下载太慢,还是最终决定卸载。顺道了解了下xamarin studio。个人感觉Xamarin完全也是一个鸡肋,没必要过多的时间在xamarin上面。 为什么手xamarin是一个鸡肋? 1、xamarin并没有把android和ios等平台的机制... 阅读全文
posted @ 2015-07-23 14:14 遥望星空 阅读(1921) 评论(3) 推荐(0) 编辑
摘要: am in a need to intercept all of the html that will be sent to the browser and replace some tags that are there. this will need to be done globally an... 阅读全文
posted @ 2015-07-22 13:09 遥望星空 阅读(282) 评论(0) 推荐(0) 编辑
摘要: Asp.net MVC Request Life CycleWhile programming with Asp.net MVC, you should be aware of the life of an Asp.net MVC request from birth to death. In th... 阅读全文
posted @ 2015-07-22 11:22 遥望星空 阅读(424) 评论(0) 推荐(0) 编辑
摘要: 装上itunes登陆itunes store时遂发现"无法完成您的itunes store的请求,发生未知错误(-50)"跃入眼帘,卸载重装数次还是不见效果,难道是WIN7和itunes貌合神离?心有不甘,遂上网查询。为使遇到同样问题的朋友少走弯路,遂将方法心得转载如下,希望对大家有所帮助:方法一:... 阅读全文
posted @ 2015-07-22 00:44 遥望星空 阅读(575) 评论(0) 推荐(0) 编辑
摘要: 1Mac OS 9 一个普通的桌面操作系统 经过多个测试版本后,苹果终于正式公布OSX10.10Yosemite操作系统。苹果称这个第11版的OSX系统是自从2001年问世以来在视觉效果上变化最大的一次。那么事实真是如此么?下面我们就一起来回顾一下OSX系统的发展历史吧。苹果MacOSX系统十三年... 阅读全文
posted @ 2015-07-20 05:31 遥望星空 阅读(1254) 评论(0) 推荐(0) 编辑
摘要: There areseveralinstructionson how to connect to TFS Git from Xamarin Studio if you're using the Team Foundation Service.We have locally installed TFS... 阅读全文
posted @ 2015-07-15 16:43 遥望星空 阅读(447) 评论(0) 推荐(0) 编辑
摘要: iOS开发者的申请流程如果你是一个开发团队,在你打算掏腰包购买iOS开发者授权之前,最好先问一下你的同事,是否已经有人获得了开发许可,因为一个开发许可一年内最多可以授权给111个设备来开发测试。如果你没有授权许可可以借用,或者你打算最终在iTunes Store中以自己的名义发布你的应用,那么就准备... 阅读全文
posted @ 2015-07-14 16:59 遥望星空 阅读(566) 评论(0) 推荐(0) 编辑
摘要: Now that I have my Mac and app source code. I’m ready to start working on my first app. The next step is to sign up for the Apple Developer’s License.... 阅读全文
posted @ 2015-07-09 15:49 遥望星空 阅读(1441) 评论(0) 推荐(0) 编辑
摘要: From:https://developer.apple.com/support/D-U-N-S/The D-U-N-S Number is a unique nine-digit number that identifies business entities on a location-spec... 阅读全文
posted @ 2015-07-09 15:16 遥望星空 阅读(1206) 评论(0) 推荐(0) 编辑
摘要: 经过十天左右,成功完成苹果的企业账号的申请,比想象中的要快些,但从流程上来看,其实可以更快的。第一次嘛,原谅自己吧,哈哈。申请前需要确认的事情:Before applying, please ensure the following:1、你公司计划发布内部App(发布到AppStore的不能用企业账... 阅读全文
posted @ 2015-07-08 07:37 遥望星空 阅读(4568) 评论(1) 推荐(0) 编辑
摘要: 1.打开D-U-N-S官网http://fedgov.dnb.com/webform图一2.占击页面的“Click here to request your ......”(如图一红框所示)进入国家选择页面图二3.在图二中的下拉框中选择中国[ CHINA(PEOPLES REPUBLIC OF) ]... 阅读全文
posted @ 2015-07-07 22:26 遥望星空 阅读(3044) 评论(0) 推荐(0) 编辑
摘要: vs2013编译VC++源码,错误:error MSB8031: Building an MFC project for a non-Unicode character set is deprecated. You must change the project property to Unicod... 阅读全文
posted @ 2015-07-02 16:16 遥望星空 阅读(4745) 评论(0) 推荐(1) 编辑
摘要: 问题: vs2013编译c++代码,错误 15 error LNK1104: 无法打开文件“atlsd.lib” 解决: 在你电脑或者其他人电脑上搜索atlsd.lib,将其拷贝到D:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\atlmf 阅读全文
posted @ 2015-07-02 15:29 遥望星空 阅读(3443) 评论(0) 推荐(1) 编辑
摘要: VS2013多字节工程问题使用VS2013编译旧版VC++程序时,提示Building an MFC project for a non-Unicode character set is deprecated,微软提供了解决方案。一、错误信息[cpp]view plaincopyprint?1>--... 阅读全文
posted @ 2015-07-02 14:02 遥望星空 阅读(683) 评论(0) 推荐(0) 编辑
摘要: I've develop a test application in Xamarin Studio (Android with C#) and wanted to test it on my phone.The application worked just fine in the Device e... 阅读全文
posted @ 2015-06-27 11:13 遥望星空 阅读(288) 评论(0) 推荐(0) 编辑
摘要: Becuase monotouch compile to native code, so it has some limitation such as dynamic invoke is not allowed.But I have a lot class in .net, that I use t... 阅读全文
posted @ 2015-06-26 20:20 遥望星空 阅读(1134) 评论(0) 推荐(0) 编辑
摘要: Android调试时,出现快盘加载失败问题。调试输出如下:Fast dev didn't succeed, trying another location解决办法:将项目属性-》Android Options ->Use FastDeployment(debug mode onl)的勾勾去掉。 阅读全文
posted @ 2015-06-26 01:26 遥望星空 阅读(433) 评论(0) 推荐(0) 编辑
摘要: 第一次使用xarain下载Forms程序,提示一下错误.C:\Program Files (x86)\MSBuild\Xamarin\Android\Xamarin.Android.Common.targets(236,2): error XA5208: Download failed. Pleas... 阅读全文
posted @ 2015-06-26 00:48 遥望星空 阅读(943) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 28 下一页