- 浏览: 56999 次
- 性别:
- 来自: 广州
-
最新评论
文章列表
特此声明,以下文章出自
http://jdee.sourceforge.net/jdedoc/html/jde-ug/jde-ug.html
http://dandelion-patch.mit.edu/afs/athena.mit.edu/contrib/xemacs/OldFiles/share/xemacs-packages/etc/jde/doc/html/jde-ug/jde-ug.html
JDEE User's Guide
Revised for JDEE 2.3.4
Copyright © 1997-2004 Paul Kinnucan ...
特此声明,以下文章出自
http://jdee.sourceforge.net/
Welcome to the home of the JDEE, an add-on software package that turns Emacs into a comprehensive system for creating, editing, debugging, and documenting Java applications. This site aims to provide you with complete information on downloading and in ...
var DomesticChinaDeal = function(){};
DomesticChinaDeal.prototype = {
test: function() {
alert("Hello World");
}
};
DomesticChinaDeal.prototype.constructor = DomesticChinaDeal;
var Factory = function(){};
Factory.prototype = {
getDeal : fun ...
1. two method to call another tab from one tab(^+^grails)
1.1 url= '<r2k:categoryUrl category="${cat}" retailerName="${retailer?.name?:''}"/>'
1.2 url="${r2k.categoryUrl(category:cat, retailerName:retailer?.name?:'')}"
2. use the global variable
<g:set ...
1. Multiple sorting
How Java? reference this
http://stackoverflow.com/questions/1421322/how-do-i-sort-a-list-with-multiple-sort-parameters
How Groovy? only one recursive + dynamic can instand the enum class(or switch statement).
class Clazz {
String name
String uid
String fi ...
--To check the free memory of the shared pool
SELECT * FROM v$sgastat WHERE NAME = 'free memory';
--To flush the shared pool
Alter system flush shared_pool;
Tuning
select * from v$sqlarea;
set autotrace traceonly explain
SQLPlus DBMS_XPLAN
EXPLAIN PLAN SET STATEMENT_ID = 'R ...
1. Keep the generated Java source for a JSP file
landing this path
/{your current project}/WebContent/WEB-INF/ibm-web-ext.xmi
change like this
<?xml version="1.0" encoding="UTF-8"?><webappext:WebAppExtension xmi:version="2.0" xmlns:xmi="http://w ...
http://www.ujiao.net/forum.php?mod=viewthread&tid=149126&extra=page%3D1&page=1&
Compare & Merage
http://www.imkevinyang.com/2010/03/%E8%AE%A9team-foundation-server-client%EF%BC%88tfs%EF%BC%89%E8%83%BD%E6%AF%94%E8%BE%83%E5%92%8C%E5%90%88%E5%B9%B6word%E6%96%87%E6%A1%A3.html
Pagination + Informix
INFORMIXDIR=/usr/informix
rowCount="your saved row count"
# safe the row count in a temp txt file
(
$INFORMIXDIR/bin/isql -s ??<<!EOF
set isolation to dirty read;
unload to '${rowCount}'
select count(*) from ?? where dt between date('08/08/2008') and dat ...
http://www.cnblogs.com/freshman0216/archive/2008/08/13/1267437.html
1st, http://huanyue.iteye.com/blog/483408
2nd, http://wunda.iteye.com/blog/655395
3rd, http://www.mkyong.com/struts/struts-spring-hibernate-integration-example/
Managed Delivery(MD)
AO(Application Outsouring)/SI
The preferred model for SI projects is Managed Delivery: Scope Driven Work Package
DS(Development Service)
EVALUATION CRITERIA | Execution Practices(Checklist Points)
SECTION 0 - PRECONDITIONS | Baselined Scope | Si(i to vi) ...
Code review
Optimization - Optimal Use of String Literals - Use string buffer for concatenation operations instead of strign literal - Avoid Variable Instantiation Inside Loops - Optimize Loop Exit Condition - sample:
Wrong Block While(Loop Exit Condition Through Method Call) { ...