Thursday, September 13, 2012

New in Apple for Today





Apple New 3D sensing Ear Phones



Design started with 3D ear scans.

Airflow comes in at the base of the bud


Port in the back tunes mid-range, port in the stem does bass









2GB shuffle $49. iPod Nano- 16GB $149, iPod Touch 16GB $199, 32GB for $249


new 7th generation ipods

              Apple Unveils Upcoming iPod touch

  • Camera on the back has a mic, flash. 5 megapixel w/backside illumination, hybrid IR filter, five-element lens, f/2.4 aperture, w/autofocus, and Sapphire crystal.
  • Supports AirPlay gaming via Apple TV. Virtual controllers, etc
  • Bluetooth 4.0 w/LE, 802.11 a/b/g/n, same as iPhone 5,works on Siri as well .
  • New device runs iPhoto for iOS.
  • Video specs: shoots 1080p video, front camera does FaceTime HD w/720p
  • Hidden button for a new feature called the "iPod Touch loop" Lets you attach a wrist strap to it.




5th generation model -- looks a whole lot like the old one from the front, except with the larger screen found on the iPhone 5. 6.1 mm thick, 88 grams. Thinnest and lightest iPod touch yet, Joswiak says.

Back is aluminum but not glossy.


Headphone jack is on the bottom left, also uses the new lightning connector







iPod Nano






  • iPod Touch has a longer screen
  • Can view photos, and widescreen video. Big claps for that later item.
  • Fitness and pedometer apps built in. Integrates with Nike+ out of the box, Joswiak says. Also Bluetooth.
  • Lightning connector plugs in on the bottom left side. 
  • 30 hours of music playback.



Wednesday, September 12, 2012

Whats new in iPhone 5

Here , are the features of new iPhone 5 launched on 12th september 12
  • HD video viewing in various setting like in train,car etc
  • iPhone 5 in back and white models,with tall screen and not wider this time 
 

  • Post to facebook via Siri
 

  • New app pulling games scores


 
 

  • Passbook ,virtual wallet ,most of the people will be having for the first time 

  • Map -Navigation in Landscape and Portrait view
 

 .
  • The video camera has better stabilization. And the front-facing camera is finally 720p. Small but important improvements.
  • Three microphones-one 2 front,one at bottom and last at back.New feature called "Wideband audio."



Front camera: Now FaceTime HD camera with 720p support, backside illuminated sensor, and FaceTime works over 3G with iOS 6.





28 megapixel panoramics





  • 1136 X 640 pixels
  • 16:9 aspect ratio
  • GPRS, EDGE, EV-DO, HSPA. Now: HDPA+, DC-HSPDA, and LTE.
  • 18 % thinner than iPhone 4gs
  • weigh only 112gms
  • New chip -A6, 2 times faster than older 
  • Performance improved then before
  • 1.9X for loading music apps with songs 
  • 1.7x for viewing a Keynote attachment.





  • New image signal processor in the A6 chip, does spatial noise reduction, with a "smart filter" something that produces better low-light performance and captures photos faster.
  • Touch sensors are now built into the display itself. 30% thinner as a result, also makes display less prone to glare.


  • A 2x faster CPU and 2x faster graphics.



  • Camera above-: dynamic low light mode







  • New photo feature: Panorama




  • Price-Same as before 





Sunday, March 18, 2012

Why to buy iPad3 ?

Alas ,after a long time ,Apple launches new iPad in the market a couple of days ago.With surprising features it includes the most desirable apps and facilities one can dreamt of .Its most promising features includes- 

  • iOS 5.1
  • Display 264 pixels per inch
  • Retina display
  • A5X quad core processor for gaming purpose 
  • Camera 5 MP 
  • 4G 73 Mbps LTE capability,
  • 21 Mbps HSPA+ 
  • 42Mbps DC-HSPA 
Prices around 499$ for 16GB,599$ for 32GB and 64GB @ 699$ 

Well these were the good features of our new ipad3 ,other than its cost in market .
Comparing it with old device, iPad 2 ,it seems superior . iPad 2 is 2nd generation tablet device .This one is faster than older version,making work suitable in any environment with 4G technology .This new iPad3 is 3rd generation tablet ,with enhancement in features like retina display,upgraded OS,better battery life,slim and light in weight etc make sit convinient to use  at all .

Thursday, March 1, 2012

Windows 8 Facts


Arrival of  Windows 8 
Few days ago Windows 8 was launched ,its consumer preview is now available to download all around the world.People are enjoying it indeed while some are accusing it for lacking some features  etc.Well,Seeing the positive side,its a major improvement in windows revolution.A new Campaign has started ,Microsoft has shown their bold attitude to those who says Microsoft technology is no more beneficial .Its an answer to those ones

Working in Windows 7 often gave a new experience rather windows xp works the most of the work we can do in windows 7 .Now another  its updated version,Windows 8 we all were waiting since long is in the market now .

As was said it would arrive in late feb this year so it comes on 29th Feb2012 .Although its most of the new features were exposed months ago,in September 13,2011.As said it will support ARM microprocessor in addition to x86 microprocessor.Well it comprises of following new features 

  • No Start button,instead a sliding panel based menu
  • Can be installed along with other Windows product or in Virtual machine
  • New UI tile based start menu,similar to windows phone OS
  • Support Microsoft Metro Design Language
  • Sign in using Hotmail id , integrated with Skype
  • New logo
  • RAM at least 1 GB recommended
  • Support Metro Style applications
  • Region Specific apps,while outside they show"this app is not available in your market" error
  • Multi touch screen is recommended
  • Secure boot restrict un authorized person form using the system
  • USB 3.0 support
  • New lock screen
  • 2 method of authentication-picture password and  PIN log in
  • Windows to go will let the window run from  USB 
  • Hybrid boot avail fast shut down 

Sunday, February 19, 2012

Java Programming-Vectors With NO Iterators Source Code

  Vectors Programming Source Code
package testFileHandling;
import java.util.*;

import javax.swing.text.html.HTMLDocument.Iterator;
public class DebugTheCode {

/**
* @param args
*/

public static void main(String[] args) {
// TODO Auto-generated method stub
//create an empty array
Vector<Integer> list= new Vector<Integer>(3,2);//vector with 3 elements and increment of 2

System.out.println("Vector Capacity"+list.capacity());
list.add(new Integer(1));
list.add(new Integer(2));
list.add(new Integer(3));
list.addElement(new Integer(4));
for(int x=0;x<4;x++)
{
System.out.println(list.get(x));
}
}

}