Skip to main content

Posts

Showing posts with the label phone

BBM MOD STILE I PHONE UNTUK ANDROID UPDATE TERBARU

BBM termasuk salah satu sosial Media Idaman sampai saat ini Popularitas BBM hampir setara dengan Facebook semenjak di keluarkan BBM untuk android Pengguna BBM semakin Hari semakin Meningkat Penggunanya.walau saat ini begitu banyak aplikasi sosial media yang beredar tapi BBM masih jadi kebutuhan Pokok untuk pengguna Sosial Media tak terkecuali saya pribadi ,tapi sempat gak selama menggunakan BBM kadang merasa Bosan dengan tampilan yang begitu2 saja dan juga fitur yang standar yang dikeluarkan dari pihak resmi BBM . mungkin banyak dari kalian pengen untuk menambah Fitur dari BBM itu sendiri dan juga mungkin pengen untuk menganti stile ataupun warna ataupun tampilan dari BBM .tapi tak sedikit pula dari mereka yang tidak mengetahui bagaimana caranya untuk melakukan itu semua ,pada kesempatan kali ini saya akan berbagi BBM TERBARU UNTUK ANDROID DENGAN TAMPILAN SEPERTI BBM PUNYA I PHONE dengan Fitur yang gak kalah dengan BBM i Phone . Sedikit Review Fitur Fitur BBM STILE IPHONE  BBM Ver...

BBC to Le Monde Ubuntu Phone Press Round Up

The BBC was among several well-known press outlets to cover the Ubuntu Phone showing during Mobile World Congress 2015. The veteran British broadcaster published a two minute video  on Canonical�s pitch at MWC on the technology section of its news website. In the clip  auntie�s  resident technology reporter Rory Cellan-Jones gives the Meizu MX4 Ubuntu Edition a quick paw before asking Canonical CEO Jane Silber if Ubuntu has a chance of going mainstream in a mobile world dominated by apps, Android and other emerging alternatives. Silber � who, incidentally is one of the nicest people you could ever meet � walks Cellan-Jones through the key proposition of the Ubuntu Phone concept (i.e., Scopes) and explains the advantages the technology brings. BBC: �Hands-on with an Ubuntu phone at MWC� Other Recent Ubuntu Phone Coverage The BBC wasn�t the only well-known news outlet to stop by the Canonical stand in Barcelona during the three-d...

Battery Status of your Visitor’s Mobile Phone

When someone visits your website, you can easily retrieve information about the charge level of their mobile or laptop�s battery through the Battery Status API. Here the source code: <!DOCTYPE html> <html> <head> <title>Battery Status API Example</title> <script> window.onload = function () { function updateBatteryStatus(battery) { document.querySelector(#charging).textContent = battery.charging ? charging : not charging; document.querySelector(#level).textContent = battery.level; document.querySelector(#dischargingTime).textContent = battery.dischargingTime / 60; } navigator.getBattery().then(function(battery) { // Update the battery status initially when the promise resolves ... updateBatteryStatus(battery); // .. and for any subsequent updates. battery.onchargingchange = function () { updateBatteryStatus(battery); }; battery.onlevelchange = function () { updateBatteryStatus(battery); }; battery.ondischargingtimechange = funct...