- 浏览: 59861 次
- 性别:
- 来自: 苏州
最新评论
-
yangsheng:
请问你这个方法不是每个页面都要加吗?
制作浏览器地址栏图标标题栏图片
文章列表
http://www.cocoachina.com/gamedev/misc/2013/0227/5728.html
这篇文章的内容由ThoughtBot在github上官方主页提供,指导你如何在github上进行代码审查和如果让别人审查自己的代码。
针对所有人的审查 •接受这样的事实:很多编程上的主张 ...
一个名为“Something Inc“的公司会比一个叫做“Mou Ren”的个人开发者更容易得到用户。
一个好的官方网站会比一个新浪微博作为主页的个人更加容易得到客户。
一个有12个软件的开发者会比一个只有单个软件的开发者更容易得到用户。
一个在App Store上有5年历史的开发者会比一个新加入App Store大军的人更加容易得到用户。
拜拜,个人开发者的时代。这个时代已经过去。新的时代正在到来。
http://www.cocoachina.com/gamedev/misc/2013/0227/5730.html
互联网数据中心相关概念
- 博客分类:
- 网摘
1, IDC
互联网数据中心(Internet Data Center)简称IDC,就是电信部门利用已有的互联网通信线路
、带宽资源,建立标准化的电信专业级机房环境,为企业、政府提供服务器托管、租用以及相关增值等方面的全方位服务。
2,
PV(访问量):
即Page View, 即页面浏览量或点击量,用户每次刷新即被计算一次。 UV(独立访客):
即Unique Visitor,访问您网站的一台电脑客户端为一个访客。00:00-24:00内相同的客户端只被计算一次。IP(独立IP):
即Internet Protocol,指独立IP数。00:00-24:00内相同IP地 ...
Google Market 要想注册为Developer还比较麻烦
1. Android Market 上已有的App, 必须在手机上才能View/Search 所有的App.
http://www.android.com/market/
For a comprehensive, up-to-date list of the thousands of titles that are
available, you will need to view Android Market on a handset.
后来又发现一个第三方的网站, 提供了Android App的 Most Po ...
[转]常用UML建模工具
- 博客分类:
- Design
常用UML建模工具
UML不算是个新名词,但是实际中还是用得很少(可能是因为都是做小项目的原因吧,大项目就用得多了).
UML是个好东西,但是过分的依赖于UML也不是一件好事,因为有时候它会把简单的东西复杂化.即使是代码的优良 ...
SNS,全称Social Networking Services,即社会性网络服务,专指旨在帮助人们建立社会性网络的互联网应用服务。
http://baike.baidu.com/view/152851.htm
3G标准:它们分别是WCDMA(欧洲版)、CDMA2000(美国版)和TD-SCDMA(中国版)。
http://baike.baidu.com/view/11232.htm
android权限大全
e.g. <uses-permission android:name="android.permission.INTERNET" />
访问登记属性
android.permission.ACCESS_CHECKIN_PROPERTIES ,读取或写入登记check-in数据库属性表的权限
获取错略位置
android.permission.ACCESS_COARSE_LOCATION,通过WiFi或移动基站的方式获取用户错略的经纬度信息,定位精度大概误差在30~1500米
获取 ...
Intent的几种用法
下面列出几种Intent的用法显示网页:
1.Uri uri = Uri.parse("http://www.google.com");
2.Intent it = new Intent(Intent.ACTION_VIEW,uri);
3.startActivity(it);
Or
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(URL_FB));
startActivity(intent);显示地图:
1.Uri uri ...
术语和概念
屏幕尺寸
屏幕的物理尺寸,以屏幕的对角线长度作为依据(比如
2.8寸,
3.5寸)。
简而言之,
Android把所有的屏幕尺寸简化为三大类:大,正常,和小。
程序可以针对这三种尺寸的屏幕提供三种不同的布局方案,然后系统会负责把你的布局方案以合适的方式渲染到对应的屏幕上,这个过程是不需要程序员用代码来干预的。
屏幕长宽比
屏幕的物理长度与物理宽度的比例。程序可以为制定长宽比的屏幕提供制定的素材,只需要用系统提供的资源分类符
long和
notlong。
分辨率
屏幕上拥有的像素的总数 ...
chapter 2.3
A few objects are defined in the Android SDK that every developer needs
to be familiar with. The most important ones are activities, intents,
services
, and content providers.
Activities
An activity is a user interface screen
. Applications can define one or
more activities t ...
ADT
Android Developer Tools (Eclipse plug-in)
AVD
Android Emulator Device
DDMS
Android ships with a debugging tool called the Dalvik Debug Monitor Server (DDMS)
http://developer.android.com/guide/developing/debugging/ddms.html
Android Emulator
The Android SDK includes a mobile device e ...
http://apps.hi.baidu.com/share/detail/1937413
1.Install JDK 1.5 or 1.6
2.Install Eclipse
3.Install ADT to Eclipse, then Help->Software Updates->Available Software->Install, input "https://dl-ssl.google.com/android/eclipse"
4.Restart Eclipse, then Window->Preference ...
Why should I use MAMP? Isn't everything already installed in OS X?
At the moment, when using OS X, only Apache 1.3.x with PHP 4.3.2 is
pre-installed. PHP has to be activated by changing the configuration
files. The Apache/PHP versions provided by Apple are not always
up-to-date, and the Apa ...
A sanity test or sanity check is a basic test to quickly evaluate whether a claim or the result of a calculation can possibly be true. The point of a sanity test is to rule out certain classes of obviously false results, not to catch every possible error. In arithmetic, for example, when multiplying ...