Google OS be from Next week?



Google awaiting Chrome OS be on Download from Next week.When first announcing the project back in July, Google had pledged to make its source code available before the end of the year. This rumor seems to be in line with those promises. However, without proper driver support the operating system will be useless to the average user. By the sound of it next week's release will most likely be just a collection of code meant for software developers to tinker with.

As earlier reported, Google's operating system is built on a Linux foundation and should be very Web-centric. Chrome OS applications will run right in the browser, and they'll be cross-compatible with other standards-compliant browsers on other platforms. Companies like Acer, Asus and HP are reportedly backing the project and may have netbooks running Chrome OS ready for customers in the second half of 2010.

Tags:-Chrome OS,Google OS,Chrome OS releases,Chrome OS features,source code
[Read More...]


AMD launches two new X86 Bulldozer, Bobcat Architectures



AMD has introduced new X86 Architectures , AMD Bulldozer and Bobcat Architectures Out.Bobcat is AMD's new mobile platform and Bulldozer is focused on servers, each branch away from traditional designs to cater to their specific markets. Bobcat, for instance, will feature extremely low power requirements, with thermal envelopes under a single watt.

Initially based on a 32nm process, the new Bulldozer chips will feature multiple sets of pipelines that share a single 128bit FPU, as well as L2 and L3 cache. It's speculated the CPU will be capable of executing a minimum of four instructions per cycle, and quite possibly double that. Unfortunately AMD has been very light on specific details, and were more interested in announcing timeframes than design specifics.

In 2011, Brazos platform will be introduced with dual-core Bobcat architecture based chips and "Ontario" APU (accelerated processing unit). This in true sense would Intel Atom competitor and it would be interesting to see whether AMD introduces at lower price points

Tags:-AMD,Processor,X86,X86 Architecture,Latest Processor,AMD Latest Processor,AMD Latest Launch,AMD Bulldozer and Bobcat Architectures,AMD Bulldozer and Bobcat Architectures features
[Read More...]


JVC SR-HD1500 and SR-HD1250 Blu-ray/HDD Recorder Decks




JVC announced the SR-HD1500 and SR-HD1250 Blu-ray / Hard Drive combo recorder decks at the CEDIA 2009. These are high performance professional combo decks with a built-in Blu-ray recorder and an internal hard disk drive for easy duplication and disc authoring without a PC.

These devices are not designed to record TV programs to hard drive or Blu-ray discs. Instead, JVC’s new recorders are used to record video from camcorder or other devices via USB, i.Link IEEE1394 or from SD/SDHC memoru cards. Composite and S-Video inputs provide interfaces for legacy analog devices as well. Unprotected DVD and Blu-ray discs can also be duplicate easily.

Using the SR-HD1500 and SR-HD1250, users can record and author professional BDMV (with menu) or BDAV discs. Advanced MPEG-2 and MPEG-4 (H.264) encoding provides support for HD and SD sources, and a built-in format converter can downconvert HD content for recording to a standard DVD.The units support BD-R or BD-RE (erasable) Blu-ray discs.

The JVC SR-HD1500 has 500GB drive, RS-232C terminal and support for .MOV files while SR-HD1250 has a 250GB hard drive and comes without the RS-232C and .MOV support. They are priced at $2550 and $1995 respectively and will be available in October 2009
[Read More...]


convert string date format to other



import java.util.*;
import java.text.*;
public class StringToDate {
public static void main(String[] args) {
try {
String str_date="10-Sep-2009";
DateFormat formatter,formatter2 ;
Date date ;
formatter = new SimpleDateFormat("dd-MMM-yyyy");
date = (Date)formatter.parse(str_date);

String formattedDate = formatter.format(date);
System.out.println("dd-MMM-yyyy date is ==>"+formattedDate);
Date date1 = formatter.parse(formattedDate);

formatter = new SimpleDateFormat("yyyy-MM-dd");
formattedDate = formatter.format(date1);
System.out.println("yyyy-mm-dd date is ==>"+formattedDate);
}
catch(Exception e)

{System.out.println("Exception :"+e); }

}
}
[Read More...]


 

Recent Comments

Popular Posts

Return to top of page Copyright © 2010 | Platinum Theme Converted into Blogger Template by HackTutors