From here.
Notes of Installing Ubuntu 14.04.1 AMD64 on Virtualbox
Vim Tips
An error has occurred in Atlassian Confluence
I got the following error page when using Atlassian Confluence version 5.5.6, which tells me several facts:
Confluence is using Struts, String and Hibernate based on Java;
Tomcat is used;
The Java frameworks are really complex from the point of call stack view. This is the longest Java call stack(356) I have even seen.
How to unintall firefox desktop apps on Ubuntu
How to check a file has Windows CRLF ending
Install Wireshark on Ubuntu
Groovy closure gets MissingMethodException when accessing private methods in super class
I encounter the following problem today when using Groovy closure with class inheritance involved:
The base class “BaseClass” has a protected method “doA”, in which it has a method invocation which takes a closure as argument. In that closure, a private method “doB” of “BaseClass” is used. This class works fine;
Now a subclass of “BaseClass” is created as “SubClass”, it overrides “doA”. After some operations, it invokes “doA” in “BaseClass” as well. But at this moment, an “MissingMethodException” is thrown which complains “doB” cannot be found.
A problem of GStringImpl, Groovy or Java?
How to merge upstream changes in Git
This is a note about how to merge the diverged changes from an upstream branch(such as “master”) to your working branch(such as “f1”).