上一页 1 2 3 4 5 6 7 ··· 14 下一页

2013年8月11日

Nginx+FastCGI+C

摘要: http://flandycheng.blog.51cto.com/855176/858946http://www.cnblogs.com/xiaouisme/archive/2012/08/01/2618398.htmlhttp://www.myhack58.com/Article/60/63/2010/28568.htm 阅读全文

posted @ 2013-08-11 00:32 androidme 阅读(161) 评论(0) 推荐(0) 编辑

2013年8月10日

Tizen Sample Web Applications

摘要: https://developer.tizen.org/downloads/sample-web-applicationshttps://01.org/html5webapps/webapps 阅读全文

posted @ 2013-08-10 13:51 androidme 阅读(153) 评论(0) 推荐(0) 编辑

Linux下RPM软件包的安装及卸载

摘要: http://os.51cto.com/art/201001/177866.htm在 Linux 操作系统下,几乎所有的软件均通过RPM 进行安装、卸载及管理等操作。RPM 的全称为Redhat Package Manager ,是由Redhat 公司提出的,用于管理Linux 下软件包的软件。Linux 安装时,除了几个核心模块以外,其余几乎所有的模块均通过RPM 完成安装。RPM 有五种操作模式,分别为:安装、卸载、升级、查询和验证。RPM 安装操作命令:rpm -i 需要安装的包文件名举例如下:rpm -i example.rpm 安装 example.rpm 包;rpm -iv exa 阅读全文

posted @ 2013-08-10 13:19 androidme 阅读(253) 评论(0) 推荐(0) 编辑

2013年7月15日

libevent

摘要: http://libevent.org/libevent是一个事件触发的网络库,适用于windows、linux、bsd等多种平台,内部使用select、epoll、kqueue等系统调用管理事件机制。著名分布式缓存软件memcached也是libevent based,而且libevent在使用上可以做到跨平台,而且根据libevent官方网站上公布的数据统计,似乎也有着非凡的性能。 阅读全文

posted @ 2013-07-15 13:14 androidme 阅读(229) 评论(0) 推荐(0) 编辑

2013年6月27日

GTest 运行参数

摘要: http://www.cnblogs.com/coderzh/archive/2009/04/10/1432789.html 阅读全文

posted @ 2013-06-27 10:53 androidme 阅读(323) 评论(0) 推荐(0) 编辑

2013年6月7日

SLF4J

摘要: http://www.slf4j.org/The Simple Logging Facade for Java (SLF4J) serves as a simple facade or abstraction for various logging frameworks (e.g. java.util.logging, logback, log4j) allowing the end user to plug in the desired logging framework at deployment time. 阅读全文

posted @ 2013-06-07 09:38 androidme 阅读(110) 评论(0) 推荐(0) 编辑

2013年6月6日

Trove4j

摘要: http://trove.starlight-systems.com/The Trove library provides high speed regular and primitive collections for Java. 阅读全文

posted @ 2013-06-06 11:30 androidme 阅读(263) 评论(0) 推荐(0) 编辑

2013年5月25日

PowerPoint中换行时怎样使英文单词不分开

摘要: Ctrl+A全选或自行点选某段。在选取的文字上右击===〉段落==〉中文版式===〉取消[允许西文在单词中间换行]。 阅读全文

posted @ 2013-05-25 14:27 androidme 阅读(6710) 评论(0) 推荐(0) 编辑

2013年5月23日

TinyOS

摘要: http://www.tinyos.net/TinyOS is an open source, BSD-licensed operating system designed for low-power wireless devices, such as those used in sensor networks, ubiquitous computing, personal area networks, smart buildings, and smart meters. A worldwide community from academia and industry use, develop 阅读全文

posted @ 2013-05-23 14:39 androidme 阅读(231) 评论(0) 推荐(0) 编辑

2013年5月21日

OSGi for C/C++

摘要: http://blog.cppmicroservices.org/2012/03/29/osgi-and-c++/http://stackoverflow.com/questions/9249708/is-there-a-non-java-alternative-to-osgihttp://blog.csdn.net/chgaowei/article/details/4545211 阅读全文

posted @ 2013-05-21 13:02 androidme 阅读(337) 评论(0) 推荐(0) 编辑

2013年5月16日

Apache Thrift - 可伸缩的跨语言服务开发框架

摘要: http://www.ibm.com/developerworks/cn/java/j-lo-apachethrift/Apache Thrift 是 Facebook 实现的一种高效的、支持多种编程语言的远程服务调用的框架。本文将从 Java 开发人员角度详细介绍 Apache Thrift 的架构、开发和部署,并且针对不同的传输协议和服务类型给出相应的 Java 实例,同时详细介绍 Thrift 异步客户端的实现,最后提出使用 Thrift 需要注意的事项。目前流行的服务调用方式有很多种,例如基于 SOAP 消息格式的 Web Service,基于 JSON 消息格式的 RESTful 服 阅读全文

posted @ 2013-05-16 16:02 androidme 阅读(385) 评论(0) 推荐(0) 编辑

node.js入门

摘要: 由于跑到另一个城市,手头没电脑,dom framework不能如期发布,趁此学习一些新东西。这时期最迫切的需要是寻求一个超轻量的后端来架起我的框架,于是触爪伸向传说中的Server- Side Javascrpt。后端JS最出名无疑是Ryan Dahl的node.js,另一个是aptana IDE提供商搞出的jaxer。首先下载node.js,然后解压到E盘,改名为node,然后开始菜单输入cmd,用cd命令切换到nodejs的解压目录:第一个例子:hello world。在node目录下建立hello.js文件,然后在里面输入://var sys = require("sys&qu 阅读全文

posted @ 2013-05-16 15:58 androidme 阅读(203) 评论(0) 推荐(0) 编辑

2013年5月14日

[Tizen]某些目录下存放的东西

摘要: 1. /opt/usr/media存放Phone内存的多媒体文件,子目录包括:drwxrwxrwx 2 app app 4096 Apr 29 14:52 Cameradrwxrwxrwx 2 app app 4096 Apr 29 14:52 Downloadsdrwxrwxrwx 2 app app 4096 May 4 12:27 Imagesdrwxrwxrwx 2 app app 4096 May 4 12:27 Othersdrwxrwxrwx 3 app app 4096 May 4 12:27 Soundsdrwxrwxrwx 2 app app 4096 Apr 29 14: 阅读全文

posted @ 2013-05-14 11:02 androidme 阅读(298) 评论(0) 推荐(0) 编辑

[Tizen]如何在sdb shell中启动一个app

摘要: launch_app appid比如:launch_app 8r4r5ddzzn.Messages 阅读全文

posted @ 2013-05-14 10:12 androidme 阅读(329) 评论(0) 推荐(0) 编辑

HTML5 presentations

摘要: http://marakana.com/s/tags/html5 阅读全文

posted @ 2013-05-14 10:04 androidme 阅读(111) 评论(0) 推荐(0) 编辑

Tutorial: Creating an HTML5 app from a native iOS* project with Intel® HTML5 App Porter Tool – BETA

摘要: http://software.intel.com/en-us/articles/tutorial-creating-an-html5-app-from-a-native-ios-project-with-intel-html5-app-porter-toolIntroductionThe main goal of this tutorial is to help you use the Intel® HTML5 App Porter Tool – BETA to port a native iOS* app to HTML5. The Intel® HTML5 App P 阅读全文

posted @ 2013-05-14 10:02 androidme 阅读(520) 评论(0) 推荐(0) 编辑

OpenMobile's Application Compatibility Layer (ACL)

摘要: http://openmobileww.com/products.phpOpenMobile's Application Compatibility Layer (ACL)™ has the power to transform your platform of choice into a vibrant ecosystem with access to 500,000+ Apps. ACL has been designed to run on mobile operating systems such as Tizen, MeeGo, Bada, Windows, Linux, a 阅读全文

posted @ 2013-05-14 10:01 androidme 阅读(681) 评论(0) 推荐(0) 编辑

2013年5月13日

JavaScript严谨模式(Strict Mode)提升开发效率和质量

摘要: 随着WebApp突飞猛进的发展,Javascript写的WebApp规模越来月庞大,比如典型的代表产品腾讯WebQQ、HTML5游戏等等,Javascript越来越需要大量的开发人员多多人协作开发。同时HTML5、CSS3等新技术和NodeJs项目的高速发展,这几年JavaScript语言借着各种新API陆续被运用到从移动设备到服务器的多个”新领域”中。但 JavaScript语言自身由于ECMAScript第四版被放弃而一直没有多少改进。和借HTML5之名过度宣传的各种新API相比,语法层面通过严 格模式(Strict Mode)进行的改进几乎可以用不为人知来形容。学习了解严格模式之后,就算 阅读全文

posted @ 2013-05-13 18:29 androidme 阅读(276) 评论(0) 推荐(0) 编辑

2013年5月11日

Tizen NPPlugin开发

摘要: Compiling The npruntime Sample Plugin in Visual Studiohttps://developer.mozilla.org/en-US/docs/Compiling_The_npruntime_Sample_Plugin_in_Visual_Studiohttp://mxr.mozilla.org/seamonkey/source/modules/plugin/samples/npruntime/【原创】我的Firefox插件开发之旅(5)——编译和测试第一个Plugin例子:npruntimehttp://www.cppblog.com/epubc 阅读全文

posted @ 2013-05-11 16:32 androidme 阅读(403) 评论(0) 推荐(0) 编辑

Tizen IDE支持创建的工程类型

摘要: Tizen Web Project Template Tizen Basic Blank Application Tizen Web UI Framework Single Page Application Multi Page Application Master Detail Application Navigation Application jQuery Mobile Single Page Application Multi Page Application Master Detail Application Navigation Application Tizen Web UI B 阅读全文

posted @ 2013-05-11 14:50 androidme 阅读(220) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 14 下一页

导航