8
COMPLETELY Remove Java From Systemview story

http://ubuntuforums.org – How can I completely remove Java from a UCE system? I need to completely remove it from a system for security reasons. Thanks! (Hardware)

9
Apache Tomcat 7.0.40 Officially Releasedview story

http://news.softpedia.com – Apache Tomcat, an open source software implementation of the Java Servlet and JavaServer Pages technologies, developed under the Java Community Process, is now at version 7.0.40.Highlights of Apache Tomcat 7.0.40:• Tomcat's internal copy of Commons FileUpload has been upgraded to version 1.3;• Protection has been added against the AsyncListener implementations that throw RuntimeException (IT news)

12
Google Releases Glass Mirror API Developer Guides And Details Best Practices, API Remains In Limited Previewview story

http://techcrunch.com – Earlier today, Google announced that it is about to ship its first Google Glass units and just in time for them to arrive, Google has now also posted the developer guidelines for its Glass Mirror API. Access to the API itself, it’s worth noting, is still in limited preview and only developers who have access to the Glass hardware will be able to work with the API. (IT news)

12
Image design : different patterns and how to use them with GIMP ?view story

http://ubuntuforums.org – I have created a well amount of different 8x8 pixel .png images, that i will use as a patterns when creating and designing different images, starting with photoes to my own small java games. I need to ask, as i am no way an pro with artistics designs, that, what about copyrights of different 8x8 pixel images, how freely i can use my own black & transparent images, as i surely know that someon (Hardware)

12
Java Applet Attack Wipes Out Bitcoin Accounts On Mt. Goxview story

http://techcrunch.com – The price of freedom, as they say, is eternal vigilance. A user called bitbully on the Bitcointalk Forums found himself 34 bitcoins poorer when he visited a site claiming to be a chat service connected with Mt. Gox, a popular bitcoin trading service. (IT news)

7
ListView Example with Simple Java Objects for Itemsview story

http://stackoverflow.com – I'm new to Android programming. I can get simple ListViews to work in which I use an ArrayList of strings. I want to take a step upward in complexity and have my ListView be composed of simple Java objects like this: class myItem { public String name; public Integer price; public Integer weight; } The ListView only needs to display the name in the above object. (HowTos)

7
Draw rubber band line with an ontoucheventview story

http://stackoverflow.com – Ok, I'm trying to make a program that utilizes a linedrawview. When the user starts a touch event(action DOWN), it gets the current x and y and stores them in variables. Then when the user drags their finger around, a line is drawn and animates in a rubber band way. Finally, when the user lets go (action UP), the line is created. (HowTos)

7
Error Receiving broadcast Intent ACTION_BATTERY_CHANGEDview story

http://stackoverflow.com – I am trying to get battery information through the use of a broadcast receiver and store it in a database. I'd prefer to get it only when I specifically want it, but I am willing to keep a database of just running records of it. (HowTos)

7
ActionBarSherlock with Google map and fragmentview story

http://stackoverflow.com – I am trying to compile this example: http://blog.xavirigau.com/?p=39#comment-1075 I am using: android-support-v4-googlemaps ActionBarSherlock-Plugin-Maps v.4.0 http://actionbarsherlock.com/ v.4.2 I have returned this error: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.xrigau.mapsfragments/com.xrigau.mapsfragments.MapswithfragmentsActivity}: java.lang.IllegalArgument (HowTos)

8
How can I find a file while in my java codeview story

http://stackoverflow.com – I am stuck on a how to robustly find a file path from my Java program. If I am using Linux, I can launch my program from my home folder, and then I can't say find my file at ./myProgram/myFile. Is there a good way to find my file no matter what directory my console is in? (HowTos)