16
2010
UNIX / Linux Command Summary
access()Used to check the accessibility of files intAccess(pathname, access_mode)Char* pathname;int access-mode;The access modes are.04 read02 write01 execute (search)00 checks existence of a file & operatorexecute a command as a background process. bannerprints the specified string in large letters. Each argument may be upto 10 characters long. breakis used to break out of a loop. It does not exit from the program. CalProduces a calender of the current month as standard output. The month (1-12) and [...]
30
2009
sso Implementation in linux
Steps needs to follow to implement sso in our server (Linux)  : 1. Needs to download ntlm package for our corresponding server version. 2. Install or upload the ntlm.so file in apache module folder. 3. Needs to enable the ntlm module in apache configuration file for load the module. 4. Needs to add some few configuration for  ntlm (domain name,domain controller name and domain backup controller name) and also needs to set the authentication type [...]
23
2009
Best Practices – Javascript
1.use === instead of == 2. Avoid to use short-hand if(condition) variable = true Consider this : if(condition) { variable = true; } 3. Place scripts at the bottom of your page 4. Declare variables outside of the for statement 5. reduce globals 6. Comment your code. 7. Dont pass a String to “Setinterval” or “SetTimeOut” 8.Dont use the “with†statement 9.use {} instead of new object() 10. use [] instead of new Array() var [...]

An article by admin