Proposed California law would mandate smartphone kill switch

Order your Mac Pro today, get it in February 2014

You won't be able to get your hands on Apple's high-end workstation for several weeks.



via PCWorld http://www.macworld.com/article/2082020/order-your-mac-pro-today-get-it-in-february-2014.html#tk.rss_all

IBM gets fast file transfers with Aspera acquisition

Embedded SIM spec ushers in new era for machine communications

The “Awww” factor: Turning old photos into new calendars

Eclipse: Convert String Concat to StringBuilder

Here is a simple yet effective trick for all Eclipse users. In Java we do lot of String concatenation using plain old “” + “”. It is easy but not too effective. StringBuilder is always preferred if you have too many strings to concate.


In below screencast, I convert concatenated strings to StringBuilder using eclipse Ctrl + 1 option.

eclipse-string-concatenate-stringbuilder


Move cursor on String “foo” and press Ctrl + 1. It opens a context menu. Select option Use “StringBuilder” for string concatenation



String foo = "This" + "is" + "Sparta";

System.out.println(foo);

Once done, the code will be converted to below:



StringBuilder stringBuilder = new StringBuilder();
stringBuilder.append("This");
stringBuilder.append("is");
stringBuilder.append("Sparta");
String foo = stringBuilder.toString();

System.out.println(foo);

Enjoy :)








via ViralPatel.net http://feedproxy.google.com/~r/viralpatelnet/~3/31caPuoFL5s/

Older Mac webcams can spy without activating warning light, researchers find

Windows 11 Insider Preview Build 29558.1000 Released to New Canary Channel

UPDATE: Windows 11 Insider Preview build 29558.1000 released to the new Canary channel. Windows Insiders on the refreshed Canary Channel wil...