| Su | Mo | Tu | We | Th | Fr | Sa |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | ||||
| 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 | 16 | 17 |
| 18 | 19 | 20 | 21 | 22 | 23 | 24 |
| 25 | 26 | 27 | 28 | 29 | 30 | 31 |
Misc
Golden Java Development (ICONIX + EA+ JIRA + Confluence + FishEye + Clover + Crucible + Bamboo + CheckStyle + PMD + MyEclipse...
Software development process - ICONIX
Project issue tracking - JIRA
Project knowledge base - Confluence
Version control - Subversion
Version control monitor - FishEye
Code review - Crucible
Coding standard - CheckStyle
Code analysis - PMD
IDE - MyEclipse
Build - Ant
Continuous build server - Bamboo
UML/Requirements - Sparx EA
hell... there is more... junit, webtest... oooohhhhh
Missing Send to OneNote Printer? Try these
Getting ScribeFire and Drupal work together
Thu, 04/19/2007 - 18:53 — Richard Laffers
Want to use the ScribeFire (a.k.a. Performancing) Firefox extension for publishing from your desktop to your Drupal based blog? Read here how to set it up in 5 steps.
IE 6, IE 7, and Firefox DIV problem
Did you realize that the DIV usages in IE 6 and Firefox 1 are broken in IE 7 and Firefox 2? Such as the overflow problem and DIV overlapping each other.
To fix this, take out certain width and height declarations and put min-width, max-width, etc. instead.
Besides, to make overflow:auto work in IE7, put position:relative
npkcrypt 服务启动失败
Downgrading Office 2007
Manually delete a windows service
You can use the command line tool "sc" to delete a service (as well as a whole bunch of other things, like set it to manual/auto, stop/start it, etc).
C:>sc delete
DESCRIPTION:
Deletes a service entry from the registry.
If the service is running, or another process has an
open handle to the service, the service is simply marked
for deletion.
USAGE:
sc delete [service name]
"An unexpected error occurred" when opening network connections properties in windows
Error Message:
An unexpected error occurred.
Translation:
This message may appear when opening the properties of a network connection in the Network Connections folder. It’s possible that Registry settings for the network connection may be damaged.
Solution:
Click Start, Run, and type regsvr32 %systemroot%\system32\netshell.dll. Click OK and try again to open the properties for the affected network connection. If it still doesn’t work, click Start, Run, type regsvr32 %systemroot%\system32\ole32.dll, click OK, and then restart the computer and try to open the properties for the network connection.
Clear Saved Windows Network Passwords
rundll32.exe keymgr.dll, KRShowKeyMgr
Trap F1 Key or any Keys in both Firefox and IE
There are various ways to trap keys in Firefox and IE. Apparently Firefox and IE have different ways of trapping the F1 key and prevent the default application help.
After quite a bit of research, I came up with the following code that will work both in Firefox and IE. The following example uses Yahoo's event library, however, you can code in original DOM easily:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>Untitled Document</title>
<script type="text/javascript" src="build/yahoo/yahoo.js" ></script>
<script type="text/javascript" src="build/event/event.js" ></script>
<script language="javascript" type="text/javascript">
//var oElement = document.getElementById("body1");
if (!YAHOO.util.Event.addListener(document, "keydown", fnCallback)) alert("failed");
document.onhelp = new Function("return false;"); // disable default help in IE
function fnCallback(evt) {
if ( evt == null )
evt = event;
if ( evt.keyCode == 112 ) //F1
{
alert("la"); // put your action here! IMPORTANT: must come before evt.preventDefault()!
evt.preventDefault(); // disable default help in Firefox
return false;
}
}
</script>
</head>
<body id="body1">
</body>
</html>

Recent comments