- 浏览: 52780 次
- 性别:
- 来自: 厦门
最新评论
-
cscs31:
很有用的函数!!
dojo and ajax -
cscs31:
这个函数很有用!!!
dojo and ajax -
cscs31:
Lz能加上一些注解和例子就更好了:)
Dojo 与style相关的函数整理
文章列表
自PHP5.0开始,PHP时区默认使用UTC,所以获取系统时间时,时间比中国时间少8个小时。
解决办法:
1.在PHP.ini文件中修改设置。
[Date]
; Defines the default timezone used by the date functions
date.timezone = Asia/Shanghai
2.在PHP程序中运行时设置。
<?php
date_default_timezone_set("Asia/Shanghai");
?>
3.时区是UTC情况下,在使用时间时多加8*3600秒获取 ...
假设wamp安装在D:\dev\wamp5.3.13\
启用重定向
LoadModule rewrite_module modules/mod_rewrite.so
启用虚拟主机
Include conf/extra/httpd-vhosts.conf
虚拟主机设置
<VirtualHost *:80>
ServerName wptest
DocumentRoot E:/workspace/wordpress3.4.1/
<Directory "E:/workspace/wordpress3.4.1/" ...
引用:http://aofengblog.blog.163.com/blog/static/631702120117283414706/
Xdebug设置
先安装wamp for php 5.4到d:/dev
打开 D:\dev\wamp\bin\apache\Apache#\bin\php.ini,在末尾看到
只要把xdebug.remote_enable = off
改 on
就可以了
; XDEBUG Extension
zend_extension = "D:/dev/wamp5.3.13/bin/php/php5.3.13/ze ...
U盘创建ubuntu安装盘
- 博客分类:
- ubuntu
以ubuntu-10.04.3-desktop-i386
为例
下载并安装Universal USB Installer,运行
Step 1:Select a linux Distribution .. 选择相应版本
Step 2:Browse 选择下载过来的iso文件
Step 3:选中U盘
Create
如何创建iso光盘镜像
$cp /dev/cdrom /path/to/file.iso
挂载iso镜像
$sudo mount -o loop -t iso9660
/usr/local/tooldisk/mydisk3.iso /mnt/iso
卸载iso镜像
$sudo umount /mnt/iso
以安装ubuntu-10.10-server-amd64.iso为例
需要的软件:
USBstarter-setup.exe
(http://u.115.com/file/f594d63aa3)
ubuntu-10.10-server-amd64.iso
(或者其他版本)
initrd.gz
(http://archive.ubuntu.com/ubuntu/dists/maverick/main/installer-amd64/current/images/hd-media/initrd.gz)
vmlinuz
(http://archive.ubu ...
IED
eclipse
apache+mysql+php
wamp
mysql client
HeidiSQL
FTP client
FileZilla Client
firefox插件
delicious, firebug, FoxyProxy, FormSaver, CookieMonster, Live HTTP headers
如何列出目录下的文件.
TOMCAT_HOME/conf/web.xml
<servlet>
<servlet-name>default</servlet-name>
<servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class>
<init-param>
<param-name>debug</param-name>
...
- 2008-11-18 14:19
- 浏览 866
- 评论(0)
function Point(x, y){
this.x = x
this.y = y
this.f = function(){}
}
var p1 = Point(1, 2) //undefined, 因为Point()无返回值
var p2 = new Point(3, 4) //object, 拥有x, x, f属性
//////////////////////////////////////////////////////////////////
function ff(){return 1}
var f1 = new f() ...
- 2008-10-01 11:57
- 浏览 1006
- 评论(0)
不解的问题是: null 和 undefined 有何区别
function fun1(p1){
//在这个function中,p1已经存在
alert(p1==null); //如果fun1(), 这两个都会是true
alert(p1==undefined);
}
//底下两句会抛出RefferenceError
alert(w==null);
alert(w==undefined);
//使用Ext 来测试 null或undefined, 不过仍然会抛出
RefferenceError
Ext.isEmpty(w ...
- 2008-09-25 10:04
- 浏览 1194
- 评论(0)
#path in windows
a='d:/dev/cygwin'
b = os.path.normpath(a) #'d:\\dev\\cygwin'
#decide file mode
statinfo = os.stat(fullpath)
if statinfo.st_mode&stat.S_IEXEC:
print 'executable'
else:
print 'not executable'
- 2008-09-22 21:03
- 浏览 937
- 评论(0)
# -*- coding: utf8 -*-
import time
#时间表示
# 1.time tuple: (year, month, date, hour, mn, sec...)
# 2.time string: Sat Jun 06 16:33:20 1998
# 3.time seconds since Epoch
print time.asctime() #time tuple -> time string
print time.ctime(time.time()) #time seconds -> time string
pri ...
- 2008-09-15 13:05
- 浏览 1049
- 评论(0)
# -*- coding: utf-8 -*- 这行到底什么作用???
#中文字符保存到文件,读取,搜索
f = open('out2.txt', 'w')
f.write('你好吗?')
f.close()
#文件可正常显示中文。
#读取, print 到eclipse cosole
f = open('out2.txt')
s = f.read()
f.close()
print s #浣犲ソ鍚楋紵. type(s)==<type str>
print s.decode('utf-8') # 你好吗?
print ...
- 2008-09-05 11:36
- 浏览 908
- 评论(0)
两种assign方式
<#assign a=1>
<#assign b="hello, ${dataModel.user}">
<#asssign c>
<h1>Greeting message. ${b}</h1>
</#asssign>
可以在<#include "another.ftl">外定义
<#assign greeting= "hello world">
-----------another.ftl- ...
- 2008-09-02 12:22
- 浏览 1041
- 评论(0)
cfg.setClassForTemplateLoading(Test.
class
,
"/org/xxx/templates"
);
设定从包
org.xxx.templates
中加载模板
org.xxx.util.FreemarkerUtil.java
org.xxx.templates.temp.ftl //模板放在org/xxx/templates/包下
cfg.setDirectoryForTemplateLoading(dir).
从某文件目录加载模板。
cfg
.setServletContext ...
- 2008-08-22 17:19
- 浏览 1816
- 评论(0)