Galaxy Note 10.1 VS the new iPad [iPad 3]
Are you thinking of getting a new tablet & you are stuck between the two devices?
I personally haven't bought any tablet since the first iPad, Simply because I have been watching the tablets evolve for the past 3-4 years & non of them were able to get me convinced to replace the first iPad.
But this is different, I am referring to the new Samsung Galaxy Note 10.1, this is the door to the future, an advanced tablet with real Multi-Tasking power. ( watch the video above & you'll know what I am talking about)
Below is a comparison table between ( Samsung Galaxy Note10.1 V.S the new iPad [iPad3]):
[avia_table]
| Galaxy Note 10.1 | new iPad | |
| Display | 10.1"WXGA | 9.7" Retina |
| Processor | 1.4GHz Quad-Core | 1GHz Dual-Core (A5X) |
| Memory | 2GB RAM | 1GB RAM |
| microSD Support | Yes | No |
| Front Camera | 1.9MP (720p HD Recording) | VGA |
| Back Camera | 5MP w/LED Flash 720p HD Recording |
5MP AF 1080 Full HD Recording |
| Additional Features | TouchWiz, Hubs, AllShare Cast, WiFi Ch. Bonding, Dropbox, Smart Stay | Voice Dictation /iMovie/ iPhoto |
| Digital Pen Writing | S Pen Embedded Adobe Photoshop Touch |
[table_icon minus] |
| Multi Screen | Yes | No |
[/avia_table]
[quote style="boxed" ]I'd give credit to the new iPad for its 1080 Full HD recording & the Retina display but the rest would go for the favour of Samsung Galaxy note 10.1[/quote]
APN settings for VIVA Bahrain - mobile internet/data
[us_btn text="Follow me on instagram" size="18px" align="left" target="_blank" icon="fa fa-instagram" color="red" style="outlined" link="url:http%3A%2F%2Finstagram.com%2Factionscripter"]
GPRS, MMS & WAP Settings for VIVA Bahrain:
APN/GPRS:
Name : VIVAGPRS APN : viva.bh Proxy : Ignore Port : Ignore User name : Password : Ignore from [Server] to [MMS port] . MCC : MNC : Authentication type : PAP APN type : Internet
APN/MMS:
Name : VIVAMMS APN : vivawap.bh Proxy : Ignore Port : Ignore User name : Password : Server : Ignore MMSC : http://mms.viva.com.bh:38090 MMS proxy : 172.18.142.36 MMS port : 8080 MCC : MNC : Authentication type : PAP APN type : MMS
APN/WAP:?
Name : VIVAWAP APN : vivawap.bh Proxy : 172.18.142.36 Port : 8080 User name : Password : Ignore from [Server] to [MMS port] . MCC : MNC : Authentication type : PAP APN type : Internet
VIVA APN Settings
Google maps application with actionscript 3 for android ( AIR )
What are we building:
-
Download the source code here Download
What is required?
- Install google maps api for flash ( Emanuele Feronato tutorial )
- Flash IDE ( Ability to compile & export apk for android ) Im currently using flash CS5
- AS3 knowledge ( duh )
once you install google maps api for flash, navigate to the components and drag out a GoogleMapsLibrary component to the library.
Under the document class enter Main ( the external AS3 file ) which we'll be having the code in.
Save the Fla file and in the same directory create an AS file and save it as Main.as, Copy & Paste the following code in Main.as :
package {
//Flash imports
import flash.display.MovieClip;
import flash.sensors.Geolocation;
import flash.events.GeolocationEvent;
import flash.geom.Point;
import flash.events.Event;
import flash.display.Stage;
import flash.display.StageAlign;
import flash.display.StageScaleMode;
import flash.text.TextField;
import flash.text.TextFormat;
//Google maps imports
import com.google.maps.LatLng;
import com.google.maps.Map;
import com.google.maps.MapEvent;
import com.google.maps.MapType;
import com.google.maps.controls.ZoomControl;
import com.google.maps.controls.MapTypeControl;
import com.google.maps.overlays.Marker;
import com.google.maps.overlays.MarkerOptions;
import com.google.maps.MapMouseEvent;
import com.google.maps.InfoWindowOptions;
public class Main extends MovieClip {
//declare map
public var map:Map;
//declare geilocation
private var myLoc:Geolocation;
//declare marker
private var marker:Marker;
private var myText:TextField;
public var format:TextFormat;
public function Main() {
// constructor code
super();
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
addEventListener(Event.ADDED_TO_STAGE, init);
}//main ends
private function init(e:Event):void
{
removeEventListener(Event.ADDED_TO_STAGE, init);
map = new Map();
map.key = "ABQIAAAAYE0bGtlAc2aNHkbZAX8d5xTtk0dF-T8JMCdCfbxeilM7kTvGfhSLRtD2VK3FR9ecXk7jWpMWxZuZvw";
map.sensor = "false";
map.url = "http://zainalsc.juliet.cloudns.io";
map.setSize(new Point (stage.stageWidth, stage.stageHeight));
addChildAt( map, 0 ) ;
map.addEventListener(MapEvent.MAP_READY, onMapReady);
txtField();
}//init ends
private function onMapReady(e:MapEvent):void
{
map.addControl (new ZoomControl() );
map.addControl (new MapTypeControl() );
map.setCenter( new LatLng( 26.116602, 50.482178), 14, MapType.SATELLITE_MAP_TYPE);
if(Geolocation.isSupported) {
myLoc = new Geolocation();
myLoc.addEventListener(GeolocationEvent.UPDATE, onGeoUpdate);
myLoc.setRequestedUpdateInterval(100);
}
}//onMapReady Ends
private function onGeoUpdate(e:GeolocationEvent):void
{
map.setCenter( new LatLng( e.latitude, e.longitude), 18, MapType.SATELLITE_MAP_TYPE);
setMarker( new LatLng(e.latitude, e.longitude));
}//onGeoUpdate ends
private function txtField():void
{
format = new TextFormat();
format.size = 20;
format.align = "center"
format.font = "Verdana"
format.color = 0xffffff;
myText = new TextField();
myText.width = stage.stageWidth
myText.height = 40;
myText.background = true;
myText.backgroundColor = 0x000000;
myText.y= 0;
myText.text = "initializing GMAPS";
addChild(myText);
myText.setTextFormat(format);
}//txtField
private function setMarker(p:LatLng):void
{
if (marker){
marker.setLatLng(p);
}else {
marker = new Marker(p);
map.addOverlay(marker);
marker.addEventListener(MapMouseEvent.CLICK, showInfo);
}//if else ends
myText.htmlText = p.toString();
myText.setTextFormat(format);
}//setMarker Ends
private function showInfo(e:MapMouseEvent):void
{
var markerContent:String = marker.getLatLng().toString();
marker.openInfoWindow( new InfoWindowOptions({contentHTML: markerContent}));
}//showinfo ends
}//class ends
}//package ends
dont forget to set application permissions:?AIR for Android settings > Permissions & tick:
- Internet
- Access fine location
Samsung galaxy tab
This is your opportunity to be amongst the first in Bahrain to own the new?Samsung Galaxy Tab. The 7-inch tablet is portable yet powerful. Enjoy rich connections to all the entertainment and information you want with:
- 7-inch multi-touch screen
- Mobile video chat
- Web browsing with flash
- Android 2.2
Exclusively offered to you by VIVA with:
- 3 months free subscription on VIVA postpaid10, and
- 3 GB free data every month
For only?BD300.
Powered by Android Operating System 2.2, the Samsung GALAXY brings together all of Samsung's leading innovations to provide users with more capabilities while on the move. Consumers are able to experience PC-like web-browsing and enjoy all forms of multimedia content on the perfectly sized 7-inch display, wherever they go. Users will be able to continuously communicate via e-mail, voice and video call, SMS/MMS or social network with the optimized user interface.
For more information call 124 or visit any VIVA Store.
*Offer limited whilst stocks last
Source: VIVA


