Messages

melissa:2YJaA7 http://google.com sdf http://google.com http://google.com sdfgwq

melissa:YhmI00 http://google.com sdf http://google.com http://google.com sdfgwq

melissa:N5ppGb http://google.com sdf http://google.com http://google.com sdfgwq

Oyuduaod:comment6

Fgmaebwo:comment2

User Name:

Content:

Tags:

gae(3)    css(3)    日志(3)    python(3)    svn(3)    weblogic(2)    ie(2)    ftp(2)    c++(2)    原则(2)    bugfree(2)    jira(2)    turbolinux(2)    tinyMCE(1)    南京(1)    static_dir(1)    django(1)   

 

 Categories:   All    管理 (27)    GAE (7)    杂谈 (14)    网站 (7)    Python (6)    Java (8)    c++ (1)    生活 (8)    我的儿子 (4)    Database (4)    骗局 (2)    source code (1)

GAE sdk 1.1.9 problem with django helper(appengine_django)

2009-04-16 03:55:35   Category:Python   Comments:0   Reference:1   Tags:

The django helper could not find the app.yaml when I updated the gae sdk to 1.1.9 and djano version is 0.96. We need add the content into the app.yaml file to enable uploadding the app.yaml into the development envirment :

skip_files:
- ^(.*/)?app\.yml
- ^(.*/)?index\.yaml
- ^(.*/)?index\.yml
- ^(.*/)?#.*#
- ^(.*/)?.*~
- ^(.*/)?.*\.py[co]
- ^(.*/)?.*/RCS/.*
- ^(.*/)?\..*

Then django/core/management could not find the django.get_version function. We need modify the __init__.py in django directory:

VERSION = (0, 96.2, None)
def get_version():
    return Version


It works fine.

TrackBack URL:http://jum.appspot.com/feeds/trackBack/16643/

Sencond day of oracle knowledge

2009-03-16 08:26:45   Category:Database   Comments:0   Reference:2   Tags:

Process structures:
system monitor, process monitor, database writer( no free buffers, too many dirty buffers, three-second timeout, a checkpoint will write into disk), log writer, checkpoint process( full checkpoint, incremental checkpoint), manageability monitor, memory manager, the archiver, recoverer process.

TrackBack URL:http://jum.appspot.com/feeds/trackBack/11642/

First day of oracle knowledge

2009-03-11 09:09:00   Category:Database   Comments:0   Reference:0   Tags:

1.Java, SQL and PL/SQL can be executed in the oracle server.
2.There are data file, redo log file and control file on the server.
3.1Multiple instances open one database in RAC(Real Application Cluster).
  3.2Streams is a tool of data synchronization between two databases or more.
  3.3 Data Guard is used to synchronize data between a primary database and a standby database.
4.An oracle instance consists of a block of SGA and some blocks of PGA. SGA contains buffer cache, log buffer(this is nearly real time, it must be written into disk when users commit), shared pool(include:library cache, data dictionary cache,PL/SQL area, result cache).

TrackBack URL:http://jum.appspot.com/feeds/trackBack/12642/

在winxp上安装Oracle 11g

2009-03-11 02:12:32   Category:管理   Comments:0   Reference:0   Tags:

从oracle下载了11g的安装程序,执行setup,安装到86%的时候提示msvcrtd.dll找不到,到http://www.zhaodll.com/dll/download.asp?softid=469&downid=2&id=467下载了一个放在windows/system32/,点击确定就继续安装了。

TrackBack URL:http://jum.appspot.com/feeds/trackBack/11641/

Install svn on turbolinux whith rpm package

2009-03-09 08:03:36   Category:管理   Comments:0   Reference:0   Tags: svn , turbolinux , rpm

  I installed the rpm version on my turbolinux and it work fine. Three files are needed:
    http://www.open.collab.net/nonav/downloads/subversion/gpg-key/RPM-GPG-KEY-csvn.asc
    http://downloads-guests.open.collab.net/files/documents/61/1375/CollabNetSubversion-client-1.5.5-1.i386.rpm
    http://downloads-guests.open.collab.net/files/documents/61/1376/CollabNetSubversion-server-1.5.5-1.i386.rpm
First, import the GPG key.
     sudo rpm --import /path/to/RPM-GPG-KEY-csvn.asc
Second, install the client.
     sudo rpm -ivh /path/to/client.rpm
Third, install the server.
     sudo rpm -ivh /path/to/server.rpm
Fourth, configure the path. add the following line to /etc/profile:
     PATH=/opt/CollabNet_Subversion/bin:$PATH
Fifth, configure the server and start the service.
    sudo Configure-CollabNet-Subversion
  The subversion server will be started automatically when the OS is started, because the collabnet_subversion is put in the /etc/rc.d/init.d/.

TrackBack URL:http://jum.appspot.com/feeds/trackBack/9644/

Modify the service port in Xampp

2009-03-05 07:52:41   Category:管理   Comments:0   Reference:1   Tags: xampp , port , bugfree

I wanted to install a bugfree on a turbolinux. The Xampp was downloaded from http://www.apachefriends.org/en/xampp-linux.html and extracted into /opt/lampp/. I found that the service port is used by other application when I executed the command :/opt/lampp/lampp start. So I had to modify the ports to another valid ports.

First, I opened the /opt/lampp/lampp file(It checked the ports of apache) to modify the http port and ssl port.
Second, modified the http port in /opt/lampp/etc/http.conf("Listen 80" and "ServerName localhost").
Third, modified the ssl port in /opt/lampp/etc/extra/http-ssl.conf("Listen 443" and "ServerName www.example.com:443").
Then we can start our server: /opt/lampp/lampp start.

TrackBack URL:http://jum.appspot.com/feeds/trackBack/10641/

Inatall svn on turbolinux with souce code

2009-03-05 07:22:13   Category:管理   Comments:2   Reference:0   Tags: turbolinux , svn

  1. Download the source code from http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=9755&expandFolder=9755&folderID=10269
  2. Uncompress the tar file.
  3. tar xvzf Subversion-1.5.5.tar.gz
  4. Go into the directory.
  5. cd Subversion-1.5.5
  6. Configure the path and enviroment.

  7. ./configure --prefix=/opt/subversion
    make
    make install
  8. Create the repository.

  9. cd /opt/subversion/bin
    svnadmin create /tmp/project1
  10. Configure the repository(It is same with install svn server in my computer).

  11. Start the svn server.
  12. svnserve -d -r /tmp/project1

 

TrackBack URL:http://jum.appspot.com/feeds/trackBack/9641/

小宝宝一岁十个月了

2009-02-27 14:35:40   Category:我的儿子   Comments:0   Reference:0   Tags: 话筒 , 没有花香

小宝宝一岁十个月了,每天拿着一个手电筒当话筒唱“没有花香,没有树高,我是一棵无人知道的小草。。。。。。“,宛然是一个超级歌星!

TrackBack URL:http://jum.appspot.com/feeds/trackBack/8648/

install svn server in my computer

2009-02-27 09:10:30   Category:管理   Comments:0   Reference:0   Tags: version , svn

I installed a svn server on my computer. It occured problem when I use different version server software and client software. For example we can not see the log messages. So we need get a svn server software and a appropriate version client software. I use svn server of version 1.5.5  and client of version 1.5.8. It work.
  The install of svn server is very simple on my winxp.
1. Get the svn server on http://www.open.collab.net/servlets/OCNDirector?id=CSVN1.5.5WINS.
2. Install it.
3. Create a repository:
    svnadmin create d:\svn\project1
3. Modify the \conf\svnserve.conf
    anon-access = none
    auth-access = write
    password-db = ../../passwd
    authz-db = ../../authz
4. Modify passwd
    harry = harryssecret
    sally = sallyssecret
5. Modify authz

    [/foo/bar]      #this path definition is used on all projects
    harry = rw
    &joe = r
    * =

    [project1:/baz/fuz]   #this path definition is used on project1
    @harry_and_sally = rw
    * = r
6. Start the server:
    svnserve -d -r d:\svn\
If you create some repositories in d:\svn\, they can be accessed.

TrackBack URL:http://jum.appspot.com/feeds/trackBack/8641/

project management software

2009-02-12 08:03:29   Category:管理   Comments:0   Reference:0   Tags: jira , project management , teamwork

Teamwork is a commercial production. It support to import project information from microsoft project file.
Achievo is a open source project software. It does not support microsoft project file. It can not show the tree structure of all tasks and gantt chart. I feel that it is not easy to make a plan.
XPlanner is a open source project management software developed in java. It does not support microsoft project file. It can not show the tree structure of all tasks and gantt chart. And the statistics function  is not enough for a project manager.
JIRA is a commercial production. But the workload statistics is based on the quantity of tasks. This is not very exact.
Projectivity is  open source project management and document management platform. It can show the tree structure of all tasks and gantt chart. This  is very useful, though it does not support microsoft project file. I am trying to use it.

TrackBack URL:http://jum.appspot.com/feeds/trackBack/4643/