- 浏览: 28284 次
- 性别:
- 来自: 武汉
最近访客 更多访客>>
文章列表
Kernel & Hardware Services package build
根据symbian文档翻译+总结:
http://developer.symbian.org/wiki/index.php/Kernel_&_Hardware_Services_Quick_Start
Kernel&Hardware Service package为其他packages在操作系统中做build提供了基础,它提供了其他packages所需要的内核,文件服务器,设备驱动框架,以及用户库,其中内核主要负责进程时间片分配,同步,内存管理,还有一些软件基本规范(software ...
咪叽我开始symbian的学习。
symbian开发分两种,一个是应用开发(Application Developer),一个是产品/平台开发(Product Developer):
http://developer.symbian.org/wiki/index.php/What_are_the_Kits%3F#Product_Development_Kit_.28PDK.29
基于应用开发,你需要下载S ...
<?phpfunction absolute_url($page='index.php'){
$url='http://'.$_SERVER['HTTP_HOST'].dirname($_SERVER['PHP_SELF']); //将http://及主机名称赋予URL,dirname()函数添加了当前目录的名称$url=rtrim($url,'/\\'); //从URL结尾删除可能添加的斜杠(/)和反斜杠(\\)$url.='/'.$page; //添加特定的页面到URLreturn $url;}
?>
- 2009-08-08 11:21
- 浏览 1707
- 评论(0)
1. 从www.apachefriends.org 上下载XAMPP for Windows的最新版本,我下的是XAMPP Windows 1.7.1 Installer.
2.双击安装,直接装在默认目录c:\xampp 下.
3.安装过程中,XAMPP Option:将SERVICE SELECTION下面的Install Apache as service 和Install MySQL as service 选上。
4. ...
- 2009-07-25 17:42
- 浏览 2781
- 评论(0)
http://wmywind.spaces.live.com/blog/cns!D6A297DE83245B7F!487.entry
很有用,果然数据库里乱码消失了。。。
- 2009-07-17 14:22
- 浏览 1907
- 评论(0)
http://xxjcom.blog.51cto.com/259691/48462
- 2009-07-16 17:45
- 浏览 897
- 评论(0)
在windows下进行PHP开发所需要的环境包括MySQL数据库,Apache服务器和PHP
MySql数据库:http://www.mysql.com/downloads/mirrors.html
包名类似于: mysql-essential-5.0.25-win32.zip
Apache服务器: http://httpd.apache.org/download.cgi
包名类似于:apache_2 ...
- 2009-07-15 18:58
- 浏览 1569
- 评论(0)
http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html
- 2009-06-03 23:57
- 浏览 710
- 评论(0)
http://blog.bandao.cn/archive/39296/blogs-352664.aspx
- 2009-06-03 15:33
- 浏览 1740
- 评论(0)
会议预定系统中一般要选会议召开日期,会议开始时间和会议结束时间,会议召开日期不能小于当前日期,会议开始时间不能大于或等于会议结束时间。
1. time.jsp:前台显示
<%@ page language="java" pageEncoding="GB2312"%>
<html>
<head>
<title>SetTime</title>
</head>
<script language="javascript" typ ...
- 2009-04-20 17:24
- 浏览 3545
- 评论(1)
搭环境所需软件:
apache-tomcat-5.5.27.zip
eclipse-SDK-3.2.2-win32.zip
MyEclipseEnterpriseWorkbenchInstaller_5.0.1GA_E3.2.exe
jdk-1_5_0_04-windows-i586-p.exe
mysql-connector-java-5.1.6.zip
mysql-5.0.18-win32
MySQL-Front_Setup.exe
配置和连接MySQL数据库
将mysq ...
- 2009-04-15 16:16
- 浏览 1133
- 评论(1)
配置环境:OS: RHEL4 with kernel 2.6.9
需要的文件:apache-tomcat-6.0.18.tar.gzjdk-6u12-linux-i586.bin
jakarta-tomcat-connectors-1.2.15-src.tar.gz
推荐两个很好用的工具:1. putty.exe: 在windows上远程登录Linux的工具。
2. WinSCP.exe: 直接将windows上的文件夹拖到Linux系统中。
一、安装配置jdk及tomcat 1、安装jdk及tomcat
...
- 2009-04-10 14:53
- 浏览 1509
- 评论(1)
第七课:通过数组和循环记录信息
http://www.bookofjavascript.com/Websites/AntWeb/antweb.html 最底部例子
1. javascript的内置数组:http://www.cnblogs.com/shanqian/archive/2009/03/11/1408415.html
每个数组都是基于网站的创建者编写的HTML代码而构建的,对于Image数组来说,网页的第一张图像名为images[0],第二张图像名为images[1] ………………
将网页中第一副图像替换成happy.gif: window.document.images[0 ...
- 2009-04-09 10:06
- 浏览 1024
- 评论(0)
第六课:通过表单发送和接受信息
1.小例子:两个文本框的值相乘,结果出现在第三个文本框中:
<html><head><title>A Very Simple Calculator</title><script type = "text/javascript">function multiplyTheFields(){ var number_one = window.document.the_form.field_one.value; var number_two = window.documen ...
- 2009-04-08 22:49
- 浏览 830
- 评论(0)