Sunday, March 1, 2015

Apple Watch to Have 'Power Reserve' Mode, Fake Samsung Casing Used to Maintain Secrecy




Technobiru :















The New York Times is offering a few more details about the Apple Watch ahead of Apple's 'Spring Forward' event on March 9th.
















The watch, code-named Gizmo, was apparently a difficult engineering challenge. Apple experimented with advanced health sensors nearly two years ago but decided to drop them from the device after they proved unreliable and cumbersome.
















While testing the device outside of Apple offices, engineers used a fake casing that was designed to make the Apple Watch resemble a Samsung watch. The people working on the watch were described as an 'all-star team' including the company's top designers and engineers. Top executives included Jonathan Ive, Jeff Williams, and Kevin Lynch.
















Apple has indicated that the Apple Watch battery will last a day and will need to be charged each night. However, the New York Times says there is a yet-to-be-announced feature called 'Power Reserve' that will run the watch on low energy but display only the time.
















The site also says that the watch is being released a bit later than Apple had hoped because of technology challenges. In addition, a few key employees jumped ship. For example, Nest Labs, recently acquired by Google, poached some engineers that were the very best on the watch team including Bryan James, Apple’s former director of iPod software, who became a VP for engineering at Nest in early 2014.
















Apple is widely expected to reveal more details about the Apple Watch at its March 9th special event. Please follow iClarified on Twitter , Facebook , Google+ , or RSS for updates.
















Read More














































Do I have to "deserialize" an ArrayList to retract the values?








I have a class that creates BOOK objects, with properties such as title, author, year ....








I am using NetBeans and was able to successfully code a method to "checkout" these books from the library in which case it is written to a MySQL database file.








There is another method which selects all the entries in the library database so you can view checked out books. This is done through a prepareStatement query and a ResultSet. This appears to be operating fine - I tested with various System.out.println() statements. The method returns an ArrayList of <Book> objects.








Back in my controller I want to send this list to a JSP page to print out on the web. Here is where it tends to get sticky. Again, I created arraylist and the entries are there (I can tell from the .size() attribute), but when I read the data out it doesn't make sense (I assume because the Book class implements serializable).








The questions - Do I have to deserialize this before sending it to my JSP page? How do you deserialize an array list?








Thanks in advance. Here is a bit of what I've done to test:












Java Code:











// ----------------- LIST OF CHECKED OUT BOOKS -----------------
private String manage(HttpServletRequest request,
HttpServletResponse response) {
//TODO: Implement code to display list of checked out books here.

ArrayList<Book> list = CheckoutDb.manage();

for (Book b : list) { // ----------------------------- TROUBLESHOOTING
b.getBookTitle();
b.getFirstName();
b.getLastName();
}
System.out.println("--------------------- " + checkedOutList.size()); // ------ TROUBLESHOOTING
request.setAttribute("checkedOutList", CheckoutDb.manage());

return "/checkedOutList.jsp";
}
















Apple Watch to Have 'Power Reserve' Mode, Fake Samsung Casing Used to Maintain Secrecy


Technobiru :







The New York Times is offering a few more details about the Apple Watch ahead of Apple's 'Spring Forward' event on March 9th.








The watch, code-named Gizmo, was apparently a difficult engineering challenge. Apple experimented with advanced health sensors nearly two years ago but decided to drop them from the device after they proved unreliable and cumbersome.








While testing the device outside of Apple offices, engineers used a fake casing that was designed to make the Apple Watch resemble a Samsung watch. The people working on the watch were described as an 'all-star team' including the company's top designers and engineers. Top executives included Jonathan Ive, Jeff Williams, and Kevin Lynch.








Apple has indicated that the Apple Watch battery will last a day and will need to be charged each night. However, the New York Times says there is a yet-to-be-announced feature called 'Power Reserve' that will run the watch on low energy but display only the time.








The site also says that the watch is being released a bit later than Apple had hoped because of technology challenges. In addition, a few key employees jumped ship. For example, Nest Labs, recently acquired by Google, poached some engineers that were the very best on the watch team including Bryan James, Apple’s former director of iPod software, who became a VP for engineering at Nest in early 2014.








Apple is widely expected to reveal more details about the Apple Watch at its March 9th special event. Please follow iClarified on Twitter , Facebook , Google+ , or RSS for updates.








Read More






















Do I have to "deserialize" an ArrayList to retract the values?




I have a class that creates BOOK objects, with properties such as title, author, year ....




I am using NetBeans and was able to successfully code a method to "checkout" these books from the library in which case it is written to a MySQL database file.




There is another method which selects all the entries in the library database so you can view checked out books. This is done through a prepareStatement query and a ResultSet. This appears to be operating fine - I tested with various System.out.println() statements. The method returns an ArrayList of <Book> objects.




Back in my controller I want to send this list to a JSP page to print out on the web. Here is where it tends to get sticky. Again, I created arraylist and the entries are there (I can tell from the .size() attribute), but when I read the data out it doesn't make sense (I assume because the Book class implements serializable).




The questions - Do I have to deserialize this before sending it to my JSP page? How do you deserialize an array list?




Thanks in advance. Here is a bit of what I've done to test:






Java Code:






// ----------------- LIST OF CHECKED OUT BOOKS -----------------
private String manage(HttpServletRequest request,
HttpServletResponse response) {
//TODO: Implement code to display list of checked out books here.

ArrayList<Book> list = CheckoutDb.manage();

for (Book b : list) { // ----------------------------- TROUBLESHOOTING
b.getBookTitle();
b.getFirstName();
b.getLastName();
}
System.out.println("--------------------- " + checkedOutList.size()); // ------ TROUBLESHOOTING
request.setAttribute("checkedOutList", CheckoutDb.manage());

return "/checkedOutList.jsp";
}







Apple Watch to Have 'Power Reserve' Mode, Fake Samsung Casing Used to Maintain Secrecy

Technobiru :



The New York Times is offering a few more details about the Apple Watch ahead of Apple's 'Spring Forward' event on March 9th.




The watch, code-named Gizmo, was apparently a difficult engineering challenge. Apple experimented with advanced health sensors nearly two years ago but decided to drop them from the device after they proved unreliable and cumbersome.




While testing the device outside of Apple offices, engineers used a fake casing that was designed to make the Apple Watch resemble a Samsung watch. The people working on the watch were described as an 'all-star team' including the company's top designers and engineers. Top executives included Jonathan Ive, Jeff Williams, and Kevin Lynch.




Apple has indicated that the Apple Watch battery will last a day and will need to be charged each night. However, the New York Times says there is a yet-to-be-announced feature called 'Power Reserve' that will run the watch on low energy but display only the time.




The site also says that the watch is being released a bit later than Apple had hoped because of technology challenges. In addition, a few key employees jumped ship. For example, Nest Labs, recently acquired by Google, poached some engineers that were the very best on the watch team including Bryan James, Apple’s former director of iPod software, who became a VP for engineering at Nest in early 2014.




Apple is widely expected to reveal more details about the Apple Watch at its March 9th special event. Please follow iClarified on Twitter , Facebook , Google+ , or RSS for updates.




Read More










Do I have to "deserialize" an ArrayList to retract the values?


I have a class that creates BOOK objects, with properties such as title, author, year ....


I am using NetBeans and was able to successfully code a method to "checkout" these books from the library in which case it is written to a MySQL database file.


There is another method which selects all the entries in the library database so you can view checked out books. This is done through a prepareStatement query and a ResultSet. This appears to be operating fine - I tested with various System.out.println() statements. The method returns an ArrayList of <Book> objects.


Back in my controller I want to send this list to a JSP page to print out on the web. Here is where it tends to get sticky. Again, I created arraylist and the entries are there (I can tell from the .size() attribute), but when I read the data out it doesn't make sense (I assume because the Book class implements serializable).


The questions - Do I have to deserialize this before sending it to my JSP page? How do you deserialize an array list?


Thanks in advance. Here is a bit of what I've done to test:



Java Code:



// ----------------- LIST OF CHECKED OUT BOOKS -----------------
private String manage(HttpServletRequest request,
HttpServletResponse response) {
//TODO: Implement code to display list of checked out books here.

ArrayList<Book> list = CheckoutDb.manage();

for (Book b : list) { // ----------------------------- TROUBLESHOOTING
b.getBookTitle();
b.getFirstName();
b.getLastName();
}
System.out.println("--------------------- " + checkedOutList.size()); // ------ TROUBLESHOOTING
request.setAttribute("checkedOutList", CheckoutDb.manage());

return "/checkedOutList.jsp";
}


Apple Watch to Have 'Power Reserve' Mode, Fake Samsung Casing Used to Maintain Secrecy

Technobiru :

The New York Times is offering a few more details about the Apple Watch ahead of Apple's 'Spring Forward' event on March 9th.


The watch, code-named Gizmo, was apparently a difficult engineering challenge. Apple experimented with advanced health sensors nearly two years ago but decided to drop them from the device after they proved unreliable and cumbersome.


While testing the device outside of Apple offices, engineers used a fake casing that was designed to make the Apple Watch resemble a Samsung watch. The people working on the watch were described as an 'all-star team' including the company's top designers and engineers. Top executives included Jonathan Ive, Jeff Williams, and Kevin Lynch.


Apple has indicated that the Apple Watch battery will last a day and will need to be charged each night. However, the New York Times says there is a yet-to-be-announced feature called 'Power Reserve' that will run the watch on low energy but display only the time.


The site also says that the watch is being released a bit later than Apple had hoped because of technology challenges. In addition, a few key employees jumped ship. For example, Nest Labs, recently acquired by Google, poached some engineers that were the very best on the watch team including Bryan James, Apple’s former director of iPod software, who became a VP for engineering at Nest in early 2014.


Apple is widely expected to reveal more details about the Apple Watch at its March 9th special event. Please follow iClarified on Twitter , Facebook , Google+ , or RSS for updates.


Read More