java
-
heroku cheat sheet quick start
#note requires java 8. add the ppa repo for oracle and install this if you dont have it already. check your local with: java -version #create auth token for subsequent commands heroku login #from within a local git cloned app… Continue reading
-
javac invalid target release maven ant intellij netbeans eclipse
You may see the following error when running maven or ant command or from intellij: javac: invalid target release: 1.8 This occurs because you are running a build target for a version of java that you do not have set… Continue reading
-
How to Create a new Java Applet in Netbeans
First create a new project. Make sure you select “Java Application” not Desktop Application or other types. On the left hand of the screen you should see “Source Packages” and your project name in lower case underneath. If you don’t… Continue reading
-
Android Launch Browser from App to handle external URLs
Upon googling for this one, I found some good relevant links on stack overflow as well as the android webview documentation, but no singular solution that tied everything together. First, I created a custom WebViewClient class. Note that this is… Continue reading