Thursday, 8 June 2017

Buy iphone 7+ jet black ( 128GB) amazon














NETWORKTechnologyGSM / CDMA / HSPA / EVDO / LTE
LAUNCHAnnounced2016, September
StatusAvailable. Released 2016, September
BODYDimensions158.2 x 77.9 x 7.3 mm (6.23 x 3.07 x 0.29 in)
Weight188 g (6.63 oz)
SIMNano-SIM
- IP67 certified - dust and water resistant
- Water resistant up to 1 meter and 30 minutes
- Apple Pay (Visa, MasterCard, AMEX certified)
DISPLAYTypeLED-backlit IPS LCD, capacitive touchscreen, 16M colors
Size5.5 inches (~67.7% screen-to-body ratio)
Resolution1080 x 1920 pixels (~401 ppi pixel density)
MultitouchYes
ProtectionIon-strengthened glass, oleophobic coating
- Wide color gamut display
- 3D Touch display & home button
- Display Zoom
PLATFORMOSiOS 10.0.1, upgradable to iOS 10.3.2
ChipsetApple A10 Fusion
CPUQuad-core 2.34 GHz (2x Hurricane + 2x Zephyr)
GPUPowerVR Series7XT Plus (six-core graphics)
MEMORYCard slotNo
Internal32/128/256 GB, GB, 3 GB RAM
CAMERAPrimaryDual 12 MP, (28mm, f/1.8, OIS & 56mm, f/2.8), phase detection autofocus, 2x optical zoom, quad-LED (dual tone) flash, check quality
Features1/3" sensor size @ 28mm, 1/3.6" sensor size @ 56mm, geo-tagging, simultaneous 4K video and 8MP image recording, touch focus, face/smile detection, HDR (photo/panorama)
Video2160p@30fps, 1080p@30/60/120fps, 720p@240fps, check quality
Secondary7 MP, f/2.2, 32mm, 1080p@30fps, 720p@240fps, face detection, HDR, panorama
SOUNDAlert typesVibration, proprietary ringtones
LoudspeakerYes, with stereo speakers
3.5mm jackNo
- Active noise cancellation with dedicated mic
- Lightning to 3.5 mm headphone jack adapter incl.
COMMSWLANWi-Fi 802.11 a/b/g/n/ac, dual-band, hotspot
Bluetooth4.2, A2DP, LE
GPSYes, with A-GPS, GLONASS
NFCYes (Apple Pay only)
RadioNo
USB2.0, reversible connector
FEATURESSensorsFingerprint (front-mounted), accelerometer, gyro, proximity, compass, barometer
MessagingiMessage, SMS (threaded view), MMS, Email, Push Email
BrowserHTML5 (Safari)
JavaNo
- Siri natural language commands and dictation
- iCloud cloud service
- MP3/WAV/AAX+/AIFF/Apple Lossless player
- MP4/H.264 player
- Audio/video/photo editor
- Document editor
BATTERYNon-removable Li-Ion 2900 mAh battery (11.1 Wh)
Stand-byUp to 384 h (3G)
Talk timeUp to 21 h (3G)
Music playUp to 60 h
MISCColorsJet Black, Black, Silver, Gold, Rose Gold, Red
SAR1.19 W/kg (head)     1.19 W/kg (body)    
SAR EU1.24 W/kg (head)     1.00 W/kg (body)    
PriceAbout 900 EUR
TESTSPerformanceBasemark OS II 2.0: 3796
DisplayContrast ratio: 1398:1 (nominal), 3.588 (sunlight)
CameraPhoto / Video
LoudspeakerVoice 68dB / Noise 72dB / Ring 72dB
Audio qualityNoise -93.1dB / Crosstalk -80.5dB
Battery life

Friday, 28 October 2016

view your network information ( 100℅ working )

Before you change your IP address and related information, you’ll need to find the full name of the network for the interface you want to change. To do this, type the following command:
netsh interface ipv4 show config
icp_1
Scroll down until you see the interface you’re looking for. In our example, we’re going to modify the Wi-Fi interface, which on our machine is just named “Wi-Fi.” You’ll also see other default names that Windows assigns to interfaces, such as “Local Area Connection,” “Local Area Connection* 2,” and “Ethernet.” Just find the one you’re looking for and make note of the exact name. You can also copy and paste the name to Notepad and then back into Command Prompt later to make things easier.

Change Your IP Address, Subnet Mask, and Default Gateway

With the interface name in hand, you’re ready to change the IP Address, subnet mask, and gateway. To do this, you’ll issue a command using the following syntax:
netsh interface ipv4 set address name="YOUR INTERFACE NAME" static IP_ADDRESS SUBNET_MASK GATEWAY
So, for example, your command might look something like the following:
netsh interface ipv4 set address name="Wi-Fi" static 192.168.3.8 255.255.255.0 192.168.3.1
where the info is replaced by whatever you want to use. In our example, the command does the following:
  • Uses the interface name “Wi-Fi”
  • Sets the IP address to 192.168.3.1
  • Sets the subnet mask to 255.255.255.0
  • Sets the default gateway to 192.168.3.1
And if you’re using a static IP address but want to switch to using an IP address assigned automatically by a DHCP server–such as your router–you can use the following command instead:
netsh interface ip4 set address name=”YOUR INTERFACE NAME” source=dhcp

Change Your DNS Settings

You can also use the netsh command to change the DNS servers used by a network interface. Third-party DNS servers–like Google Public DNSand OpenDNS–can be faster and more reliable than the DNS servers provided by your ISP. Whatever your reason for changing your DNS server, you can do it either at the router so it affects all the devices that get their information from the router or at the individual device. If you want to change the DNS servers for just one PC, it’s easy to do with the netsh command.
You’ll need to use the command twice: once to set your primary DNS server and once to set your secondary, or backup, DNS server. To set your primary DNS server, use the following syntax:
netsh interface ipv4 set dns name="YOUR INTERFACE NAME" static DNS_SERVER
So, for example, your command might look something like the following (in which we set it to Google’s primary public DNS server, 8.8.8.8):
netsh interface ipv4 set dns name="Wi-Fi" static 8.8.8.8
To set your secondary DNS server, you’ll use a very similar command:
netsh interface ipv4 set dns name="YOUR INTERFACE NAME" static DNS_SERVER index=2
So, continuing our example, you might set your secondary DNS as the Google Public DNS secondary server, which is 8.8.4.4:
netsh interface ipv4 set dns name="Wi-Fi" static 8.8.4.4 index=2
And just like with the IP address, you can also change it so that the network interface grabs its DNS settings automatically from a DHCP server instead. Just use the following command:
netsh interface ipv4 set dnsservers name"YOUR INTERFACE NAME" source=dhcp
And there you have it. Whether you like typing at the command prompt better or just want to impress your coworkers, now you know all the command line magic you need for changing your IP address settings.