Get in the zone with me for a good 15 minutes, maybe you’ll catch a few eclipse tricks and you’ll learn a little bit about how I think (and make mistakes along the way of fixing something on FrostWire)
Related Posts
How to use environment variables in your Eclipse project Run Configuration
Say you have some environment variables that you’d love to use as arguments of an executable in your project. 1. Go to “Run Configurations” 2. Click on the “Environment” tab. 3. Click the “Select” button. 4. A list with all of your environment variables will be shown. Choose the environment variables you need for this […]
svn: Can’t create tunnel: The system cannot find the file specified.
I was trying to checkout a project from a subversion repository using Eclipse’s Subversive, and I was having problems with a subversion url that starts with “svn+ssh://” This means all the transport has to be done using a “ssh” agent. Eclipse’s Subclipse plugin was giving me the error: svn: Can’t create tunnel: The system cannot […]
Java/Reflection notes: Invoking a static main() method from a dinamically loaded class.
Maybe for some wild reason, your Java application will need to execute a pre launcher that won’t know about the Main class it’s supposed to invoke until it’s being executed. For example, you have distributed your Java application but you used pack200 to compress your jars, and your new application launcher will unpack everything, but […]