- 博客(19)
- 收藏
- 关注
原创 如何配置linux服务器
http://www.365master.com/manage/server/4/20080328/31346.shtml 教您在Ubuntu Linux上架设Web服务器来源: 作者: 发布时间:2008-03-28 Ubuntu Linux是在Debian的基础上开发出来的,Ubuntu系统能够良好地运行在Intel x86、PowerPC和AMD64位处理器等
2008-05-22 15:42:00
690
原创 UTF8 与 UCS
UTF-8 and Unicode FAQby Markus Kuhn 中国LINUX论坛翻译小组 xLoneStar[译] 2000年2月这篇文章说明了在 POSIX 系统 (Linux,Unix) 上使用 Unicode/UTF-8 所需要的信息. 在将来不远的几年里, Unicode 已经很接近于取代 ASCII 与 Latin-1 编码的位置了. 它不仅允许你处理处理事实上存在
2008-05-22 15:29:00
1102
原创 apt-get在maemo下的应用配置
1 如何配置maemo平台下(scratchbox 下)的 apt-get sourcelist 修改/etc/apt/sources.list deb http://catalogue.tableteer.nokia.com/certified/ mistral user deb http://catalogue.tableteer.nokia.com/non-certifie
2008-05-19 14:40:00
870
原创 开源Mozilla plugin 开发
l主要从mozilla http://lxr.mozilla.org/mozilla1.8/source/modules/plugin/tools/sdk/samples/处的例子分析lPlugin organizer ¡basic/ - Aug 12 2005 ¡ common/ - Aug 12 2005 --基本源代码 ¡ include/ - Aug 12
2008-05-16 14:55:00
914
原创 一篇不错的gstream的component开发代码
http://publicsvn.songbirdnest.com/browser/trunk/components/mediacore/playback/gstreamer/src/sbGStreamerSimple.cpp?rev=2484 <!----> Developer Center Add-ons Community Suppo
2008-05-09 15:27:00
3249
原创 XUL study
From: http://www.cat-snow.com/post/137.html 一、XUL简介XUL是“XML 化的用户界面语言(XML User Interface Language)”的缩写,跟XML一样是一种与平台无关性的语言,是用来描述用户界面的语言,现在被广泛用于Mozilla平台。Mozilla本身的界面就是用XUL进行描述的。1.1 XUL相关技术XUL与以
2008-03-26 15:59:00
1034
原创 Linux kill a process
xdbusinfo=`ps ax | grep -v grep | grep dbus-daemon`serverid=` echo $xdbusinfo | awk { print $1 } `kill -9 $serverid 1>/dev/null 2>/dev/null
2008-03-20 17:08:00
953
原创 How to compile C++ with GCC
In the midst of TS/Hurricane Gaston, I find this. If you compile gcc t.cc, it does not find the standard C++ library stdc++. If you compile gcc -lstdc++ t.cc, it works fine. If you compile g++ t.cc, i
2008-01-08 16:09:00
670
原创 关于dbus C/S架构中数据类型的误区
在使用dbus-glib的过程proxy和stub函数时,如果需要返回bool型等数据在stub端的回调函数中的参数类型要使用gboolean,如果使用bool会导致不同平台之间数据类型长度的问题。在X86 下不会出问题,但在arm下返回的数据可能永远为0。因此,凡是需要返回bool型的数据,其stub端的回调函数的参数应为gboolean 同样的问题,如需要返回char*, 最好使
2007-12-22 17:17:00
914
原创 glib库数组GArray介绍(转)
作者tag:linux/unix 优快云 推荐tag:c++ 数组 garray array 上一篇: glib库队列GQueue介绍 | 下一篇: glib库双向链表GList介绍function StorePage(){d=document;t=d.selection?(d.selection.type!=None?d.selection.createRange().
2007-12-19 10:25:00
3652
原创 xpcom -callback usage
From: http://blog.xiaoduo.info/?cat=6 XPCOM: Javascript function callMozilla 1 Comment »Sometimes we need to call javascript function form a c++ xpcom. The following is a method for this.
2007-11-09 14:57:00
979
原创 Java开发环境的配置
转:JAVA初学者请进1、java 2 SDK 的版本分类:J2ME:(Java 2, Micro Edition)一种以广泛的消费性产品为目的的高度优化的Java运行环境,包括讯呼机、移动电话、可视电话、数字机顶盒等...它是致力于消费产品和嵌入式设备的开发人员的最佳选择。J2SE:(Java 2, Standard Edition)是SUN公司针对桌面开发以及低端商务计算解决方案而开
2007-10-17 08:39:00
749
原创 嵌入式编译开发工具Scons
http://www.scons.org/wiki/AdvancedBuildExamplehttp://www.scons.org/wiki/SconsProcessOverview
2007-09-01 22:42:00
916
原创 D-BUS binding tool usage
转发:http://www.emilmont.net/doku.php?id=c:d-bus D-BUSD-Bus is a message bus system, a simple way for applications to talk to one another. In addition to interprocess communication, D-Bus helps co
2007-08-30 09:32:00
2430
原创 Gtk+的裁剪
Gtk+的裁剪Posted by: roboter in Linux 我们使用了GTK+的新版本 2.10.9,编译出来的大小为20M,而且不是debug版本的,体积很是庞大,在嵌入式环境中尤为突出,因此需要进行裁剪。IBM网站上的资料说是可以裁剪到1M,很是吓人,20倍!让我们来试试。首先第一步, 把其中的调试信息去掉看看。使用如下命令,strip –strip-unneeded
2007-08-27 09:58:00
987
原创 多个View与Doc的关系
多个View与Doc的关系Posted by: roboter in 架构, C++ 现在的系统框架中,设计了多个view,每个view可能都需要访问doc数据,doc的数据会比较多,不可能把所有数据都放在一个doc类中,可能会有很多doc小类,分别实现不同的数据处理,如短消息数据类,Call数据类等等。有一些view可能会需要处理两个以上的doc数据类,而有一些doc数据类可能会被多
2007-08-27 09:47:00
1488
原创 Archive for the Linux Category --Dbus study
Archive for the Linux Category来自: http://www.robotercoding.com/blog/?cat=3 « Previous EntriesAug 20 2007 d-bus的封装Posted by: roboter in 架构, Linux d-bus系统相当庞大,源代码有100多文件,大小差不
2007-08-27 09:27:00
8505
1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人