Why are people leaving your site?
For instance, you can use Google Analytics for tracking where people clicked.
This blog belongs to Patrick Fust and contains links mostly concerned about java and security issues.
Why are people leaving your site?
At the command prompt, enter the following then reboot;
FSUTIL behavior set disablelastaccess 1
Those of us who read and write English need to take note of the American spelling of the BEHAVIOR parameter.
To turn timestamps back on, repeat the command but replace the 1 with 0.
The Eclipse Keytool I've made, has moved to http://keytool.sourceforge.net
Somethimes my Windows just restarts - why?
My Window is running slow -> Tweak it!
Windows automatically runs autorun.inf - I don't want that
Start - Run - regedit)HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\CdromAutorun. 0 (double-click on it).
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?