上传googleengine时出现如下错误:
ERROR appcfg.py:1070 An unexpected error occurred. Aborting.
Error 403: --- begin server output ---
You do not have permission to modify this app.
--- end server output ---
解决办法:
设置app.yaml 的 application 为GAE对应的applicaton就可以了
tags: googleengine 错误 GAE
2008年07月08日 | Posted in 一般技术 | No Comments
今天全国默哀 网站首页都要变成灰色
给大家一个简单的解决办法 在首页的body中加上
style="FILTER: alphaopacity=80 gray"
大家也可以在自己的blog中定制css 使自己的blog也变成灰色的
暂时放下首页,一会撤下,大家一起来默哀!
这个就是怎么把网页变成灰色了,大家都来设置默哀网页吧。
tags: 设置默哀网页 全国默哀 变成灰色 把网页变成灰色 默哀
2008年05月19日 | Posted in 一般技术 | No Comments
今天,无聊进入C盘目录看看,发现了这个.rnd文件,里边都是些乱乱的字符。莫名奇妙,上网搜索了一下,原来有太多的人和我一样,都有c盘.rnd文件。
可这个.rnd文件是什么来的呢?
问:我的C盘下有个.rnd文件,不知道是什么,有什么用?
答: 可以放心的去删除,没什么用了,它是你安装别的程序时产生的临时文件。
有人说:随机文件,装过 vmware 的系统也有这种文件产生
也有人说:安装nvidia驱动生成的,在C:,和其他文件夹格格不入,我也不知道有什么用途。
更有人说:PuTTy 随机种子文件,登录 ssh 时会用到。
.rnd是什么文件?这个我也拿不准,但是不是病毒就好了。才1K多的身形,里边都...[查看详细内容]
tags: rnd文件 c盘.rnd文件 .rnd文件是什么 .rnd是什么文件
2008年04月08日 | Posted in 一般技术 | No Comments
The AROS Research Operating System is a lightweight, efficient and flexible desktop operating system, designed to help you make the most of your computer. It's an independent, portable and free project, aiming at being compatible with AmigaOS 3.1 at the API level (like Wine, unlike UAE), while impro...[查看详细内容]
tags: AROS操作系统 AROS 桌面操作系统
2008年04月02日 | Posted in 一般技术 | No Comments
记录一下,javascript去除左右两边空格的一个函数:
trim:去除两边空格 lTrim:去除左空格 rTrim: 去除右空格
String.prototype.trim= function()
{
return this.replace(/(^\s*)|(\s*$)/g, "");
}
String.prototype.lTrim= function()
{
return this.replace(/(^\s*)/g, "");
}
String.prototype.rTrim= function()
{
return this.replace(/(\s*$)/g, "");
} ...[查看详细内容]
tags: javascript去除空格 javascript去除左右两边空格 javascript 去除左右两边空格
2008年03月30日 | Posted in 一般技术 | No Comments