I want more out of Google!
See:7 Clever Google Tricks Worth Knowing
This blog belongs to Patrick Fust and contains links mostly concerned about java and security issues.
How continuous is your integration and what could your team be doing to improve it?
According to Berlingske is 1 kilobytes no longer 1024 bytes as we learned in school...
What is and how do I use Java's Reflection?
I have made a colorprofile for my monitor, but the printing of images look different!
A secure, memorable password is easy for you to remember, and hard for others to guess.
What do I send to that webservice, and what do the service return?
webproxy:8080) and tried starting up tcpmon with -Dhttp.proxyHost=webproxy -Dhttp.proxyPort=8080, but still it won't work...-Dhttp.proxyHost=localhost -Dhttp.proxyPort=8888 (Now we use tcpmon as proxy)| Port | 8888 |
| Server Name | Proxyserver (in my case webproxy) |
| Server Port | Proxyserverport (in my case 8080) |
I want to fire onChange method on an object programmatically in Javascript.value on an object you might expect that the onChange method is fired, but sorry... no firering...function newValueForObject {
var myObject = document.getElementById(nameOfObject);
myObject.value = 'a new value';
if (myObject.hasAttribute) { // Firefox
if(myObject.hasAttribute("onchange")){
myObject.onchange();
}
} else if (myObject.onchange) { // IE
var newEvt = document.createEventObject();
myObject.fireEvent("onchange", newEvt);
}
}
Please help me speed up my Windows startup time!
%userprofile%\Start Menu\Programs\Startup
%allusersprofile%\Start Menu\Programs\StartupOr in the registry:HKLM\Software\Microsoft\Windows\CurrentVersion\Run
HKCU\Software\Microsoft\Windows\CurrentVersion\Run
HKLM\Software\Microsoft\Windows\CurrentVersion\RunOnce
HKLM\Software\Microsoft\Windows\CurrentVersion\RunOnceEx
HKCU\Software\Microsoft\Windows\CurrentVersion\RunOnce
HKCU\Software\Microsoft\Windows\CurrentVersion\RunOnceEx
How should I choose an open source license?
I would like to see all the properties of a given object.
function popUpProperties(inobj) {
op = window.open();
op.document.open('text/plain');
for (objprop in inobj) {
op.document.write(objprop + ' => ' + inobj[objprop] + '\n');
}
op.document.close();
}
Ex.: popUpProperties(document.forms[0]);
The article discusses what kind of test that's needed in a project, and what the differences are between the different kind of tests.
Unit tests run fast. If they don't run fast, they aren't unit tests.
Enterprise-grade SOAs require a plan for addressing diverse security needs
The quick way to check how good a software team is.
Isn't it annoying you have to specify all the jar files needed to run a javaprogram?
SET CLASSPATH=jar1.jar;jar2.jar;jar3.jar... javac.exe -Djava.ext.dirs=usualextdir;anotherdir... java.exe -Djava.ext.dirs=usualextdir;anotherdir...