- 浏览: 38086 次
最新评论
文章列表
1,运行例子
参考 http://docs.jboss.org/jbpm/v5.1/userguide/ 第三章的 Installer 完成环境的搭建和例子运行:
可以自己先通过迅雷下好对应的jboss和eclipse,并放到lib下,加速过程。自带的下载非常慢。
2,JBPM 目标
Executable business processes bridge the gap between business users and developers as they are higher-level and use domain-specific concepts that ...
注意: httpwatch需要license .
http://www.cnblogs.com/mayingbao/archive/2007/11/30/978530.html
感想:
1,作业的打分机制:++, +, √+, √,√-, -, -- 0.
挺有意思,给学生一个很好的空间。
2,关于零基础的问题:别人可能养成了不好的习惯,需要先破再学;你直接学反而更快。
网上看道这篇文章,
Understanding Linux CPU Load - when should you be worried?
感觉还不错,翻译和摘录了关键的信息:
对于单核的机器而言,3条原则(多核类推)
1,load小于0.7的时候,系统很正常;只有大于0.7的时候,需要关注下。The "Need to Look into it" Rule of Thumb: 0.70 If your load average is staying above > 0.70, it's time to investigate before things ge ...
小键盘区,num lock有反应。enter有反应,其他的, 按小键盘数字键,不能输入数字,而是操作鼠标的方向,像是游戏里八维的方向键? 不记得从什么时候才变成这样的?怎么改过来?按下 shift + alt 和 NumLock 就好了亲身体验 有效
netty 源码执行
mvn clean install
报jar找不到。
后来发现时 http://repo2.maven.org/maven2这个根本连不上,伟大的GFW
解决方法:
使用公司的网络即可。
VisualSVN Server
Windows下的SVN服务器工具,非常方便,集成http。
可以参考下面的文档,不过不看也能用,非常傻瓜式的。
http://www.jb51.net/article/17365.htm
mvn archetype:create -DgroupId=com.mike -DartifactId=picgetter -DpackageName=org.mike
感觉有必要系统学习下maven.
需要对数据库中的批量数据进行操作,所以写了下面的SQL:
1,循环;
2,字符串拼接;'[nokia]'||v_LoopCounter
declare
v_LoopCounter Binary_Integer:=227;
BEGIN
loop
UPDATE CTU_AVATAR_RULE SET status = 'disabled',gmt_modified = sysdate WHERE name = '[nokia]'||v_LoopCounter;
v_LoopCounter:= v_LoopCounter+1;
exit when v_LoopCounter=2 ...
URL: http://www.shocr.com/user-is-not-in-the-sudoers-file/
Linux默认是没有将用户添加到sudoers列表中的,需要root手动将账户添加到sudoers列表中,才能让普通账户执行sudo命令。
root 账户键入visudo即可进入sudo配置,这个命令要比vim /etc/sudoers要好很多,因为使用visudo进行sudo配置,将会得到很多提示.
键入visudo后,在编辑器下键入 /root 寻找root,找到第三个root的那一行
root ALL=(ALL) ALL
按yyp键复制并 ...
无用中查看svn log时,发现有一个文件每次都会被提交,但是确信没对这个文件的内容有修改。
用svn diff查看了下,发现原来是mergeinfo信息被修改了。
google了下发现有这个讨论:
http://stackoverflow.com/questions/767418/remove-unnecessary-svnmergeinfo-properties
解决办法:
svn propdel svn:mergeinfo -R
svn revert .
svn ci -m "Removed mergeinfo"
1, 确定python 的版本,django要求python2.4。 ubuntu默认已经装了比较高的版本
python --version
2,按照下面的文档,现在并解压,并执行setup
https://www.djangoproject.com/download/
3, 测试django
https://docs.djangoproject.com/en/1.3/intro/install/
进入python交互模式后:
>>> import django
>>> print django.get_version()
安装的文档:
http://httpd.apache.org/docs/2.2/install.html
./configure --prefix=/sw/pkg/apache
用--prefix指定安装的路径
Q: apache2 启动: (13)Permission denied: make_sock: could not bind to address 0.0.0.0:80
sudo ./apachectl -k start。 原因是端口号小于1024的应该用root启动
Q: apache2: Could not reliably determine the server's ...