Can’t seem to disable Java Automatic Update

Actually this problem is due to the control panel requiring administrator privileges to allow the Java control panel to save your settings (it hasn’t been fixed for ages, thanks to Sun Microsystems). First, you need to find the Java Control Panel executable, in one of the following locations: C:\Program Files\Java\jre[version]\bin\javacpl.exe or C:\Program Files (x86)\Java\jre[version]\bin\javacpl.exe The … Read more

How to login into wordpress.com using HtmlUnit?

So it appears the wordpress.com website heavily uses Javascript in a way that is absolutly not compatible with lightweightness of HtmlUnit. Seems like I’ll have to replace my nice HtmlUnit code with usage of Selenium WebDriver, which I find sooo heavy (but which manipulates real browsers, that the developers of WordPress.com unfortunatly target).

No Main class found in NetBeans

Right click on your Project in the project explorer Click on properties Click on Run Make sure your Main Class is the one you want to be the entry point. (Make sure to use the fully qualified name i.e. mypackage.MyClass) Click OK. Run Project 🙂 If you just want to run the file, right click … Read more