Friday, September 30, 2016

SPD Upgrade Tool Flash Tool Latest Version Free Download

SPD Upgrade Tool Flash Tool Latest Version Free Download


SPD upgrade tool (SpreadTrum flash tool) latest version full setup windows installer free download directly from here today. SPD upgrade tool application allows you to flash .PAC firmware on any android device and feature phone device. To start download SPD upgrate tool new version directly from this page, Follow the download link which is provided at the bottom of this page. Before downloading lets have look about its cool features.

SPD Upgrade Tool (Flash Tool) Latest Version Free Download


Cool Features Of SPD Upgrade Tool:

  • Simple interface.
  • It allows you to flash PAC firmware.
  • It also allows you to flash PSC firmware.
  • Add multiple languages.
  • Configure the LCD.
  • More
Download Here

Go to link download

Read more »

HTC Desire 816 Official stock Roms Always updated Flash File Free Download Here

HTC Desire 816 Official stock Roms Always updated Flash File Free Download Here


HTC Desire 816 Official stock Roms (Always updated)



HTC Desire 816 Official stock Roms

Kitkat

HTC Desire 816 A5_UL

cidnum: HTC__001 cidnum: HTC__102

cidnum: HTC__203 cidnum: HTC__E11

cidnum: HTC__405 cidnum: HTC__Y13

cidnum: HTC__304 cidnum: HTC__A07

cidnum: HTC__032 cidnum: HTC__J15

cidnum: HTC__016 cidnum: HTC__M27

cidnum: HTC__K18 cidnum: HTC__A48

cidnum: HTC__002

0P9CIMG_A5_UL_K44_DESIRE_SENSE60_HTC_Europe_1.60.4 01.1_Radio_1.101.1102.17.0506_10.20.4149.00L_relea se_403284_combined_signed.zip

HTC Desire 816 A5_DWG

cidnum: HTC__38

A5_DWG_K44_DESIRE_SENSE60_hTC_Asia_India_1.61.720. 1_Radio_1.31.50.1103-1.31.50.1103_NV_India.zip

cidnum: HTC__621 modelid: 0P9C21000?

0P9CIMG_A5_UL_K44_DESIRE_SENSE60_hTC_Asia_TW_1.54. 709.2_Radio_1.101.1102.17.0506_10.20.4149.00L_rele ase_388245_signed_2.zip

HTC Desire 816 A5_tl

0P9CIMG_A5_TL_K44_DESIRE_SENSE60_MR_HTCCN_CHS_CMCC _2.06.1403.3_Radio_1.101.1161.19.0813 signed.zip

HTC Desire 816 A5_DUG

0P9CIMG_A5_DUG_K442_DESIRE_SENSE60_MR_HTCCN_CHS_CU _2.06.1402.2.zip

0P9CIMG_A5_DUG_K44_SENSE55_HTCCN_CHS_CU_1.29.1402. 1.zip

HTC Desire 816 A5_CHL

RUU_A5_CHL_K44_DESIRE_SENSE60_Sprint_WWE_VM_1.50.6 52.3_Radio_1.46.40.0917_NV_SPCS_0.57_003_release_3 98306_signed_2.exe

HTC Desire 816 A5_DWGL

0P9CIMG_A5_DWGL_K44_DESIRE_SENSE60_HTCCN_CHS_CT_1. 58.1401.11_R_Radio_0.45.60.0807_10.45.60.0807_1_NV _CT_PRI0.78_001_release_388489_combined_signed_2_4 .zip

Lollipop

HTC Desire 816 A5_DUG

0P9CIMG_A5_DUG_L50_DESIRE_SENSE60_MR_hTC_Asia_HK_2 .34.708.1_Radio
1.13.3230.27.0303_combined_signed.zip

0P9CIMG_A5_DUG_L50_DESIRE_SENSE60_MR_HTC_Europe_2. 34.401.1_Radio_1.13.3230.27.0303_13.19.3230.00D_F_ release_426496_signed

HTC Desire 816 A5_UL

RUU_A5_UL_L50_DESIRE_SENSE60_MR_HTC_Europe_2.34.40 1.1_Radio_1.101.111011.20.0123_10.28.4149A.00L_rel ease_426445_signed_2_4.exe

0P9CIMG_A5_UL_L50_DESIRE_SENSE60_MR_HTC_Europe_2.3 4.401.2_Radio_1.101.111011.20.0123_10.28.4149A.00L
release_449710_combined_signed.zip

0P9CIMG_A5_UL_L50_DESIRE_SENSE60_MR_hTC_Asia_TW_2. 34.709.2_Radio_1.101.111011.20.0123_10.28.4149A.00 L_release_447147_signed.zip

HTC Desire 816 A5_DWG

0P9CIMG_A5_DWG_L50_DESIRE_SENSE60_MR_hTC_Asia_Indi a_2.34.720.1_Radio_1.31.50.0215 release_426788_signed.zip

HTC Desire 816 A5_CHL

RUU_A5_CHL_L50_DESIRE_SENSE60_MR_Sprint_WWE_VM_2.3 3.652.2_Radio_1.47.40.0224_NV_SPCS_0.57_003_releas e_428217_signed_2.exe

File Credits for: all the uploaders

__________________

Best Regards James

* Always Follow Forum Rules Here

* Use Only Thanks Button

* Use Search Button Before make a Thread


Go to link download

Read more »

Show all combinations of numbers from 1 to 9 that add up to 100 by adding subtracting and concatenating

Show all combinations of numbers from 1 to 9 that add up to 100 by adding subtracting and concatenating


So, this week I saw a blog post somewhere where the poster claimed that if you cant solve the mentioned 5 problems each in under and hour, you aint no programmer, dev or software engineer. So, I went in and read the problems. 1-4 were easy but number 5 got me a worrying a little. And expected, I failed to solve that in under 1 hour yesterday. But today morning I solved that in less than 30 minutes. But whatever, I cant call myself a programmer anymore :(
Heres my approach though, using recursion:
Each i (from 1 through 9) has 2 different ways of connecting to the sequence.
1. Add itself to the closest sum (1 + 23 + 4 + .......)
2. Or concatenate itself (1 + 234 + ......)
So if we either add an i to the sequence that has reached it or we concatenate. Examples: .......8 + 9
.......89
Now the part before 8 has the same behavior with 8
.......7 + 8
.......78
This goes all the way back to 1 and 2
1 + 2
12
So, the program works something like this
Each branch ultimately ends on the leftmost call.
Code:

#include <cstdio>
#include <iostream>
#include <sstream>

using namespace std;

string i2s(int i) {
stringstream op;
op << i;
return op.str();
}

int solveS(int i, int sum, string p) {

if (i >= 10) {
if (sum == 100) {
cout << p + " = " << sum << endl;
}
return 0;
}

int iSum = 0;
for (int j = i ; j<=9 ; j++) {
iSum = iSum * 10 + j;
if (i == 1) {
solveS(j+1, iSum, i2s(iSum));
} else {
solveS(j+1, sum+iSum, p + " + " + i2s(iSum));
solveS(j+1, sum-iSum, p + " - " + i2s(iSum));
}
}

return 0;
}

int main() {

//freopen("output.txt", "w+", stdout);

solveS(1, 0, "");

return 0;
}



Go to link download

Read more »

Tiga WNI Korban Tragedi Mina Diduga Tersesat

Tiga WNI Korban Tragedi Mina Diduga Tersesat


Tragedi Mina (foto: bbc)
JAKARTA - Penyelidikan terhadap korban dari tragedi Mina yang terjadi Kamis 24 September 2015 terus dilalukan Pemerintah Arab Saudi. Sebanyak tiga WNI menjadi korban dalam tragedi nahas itu.
Dirjen Perlindungan WNI Kementerian Luar Negeri, Lalu Muhammad Iqbal, mengatakan adanya jamaah haji asal Indonesia yang menjadi korban meninggal dunia diduga karena mereka tersesat atau tersasar.
"Seperti yang telah disampaikan, Jalan Aran 204 itu bukan merupaka tempat lempar jumrah bagi jamaah Indonesia," kata Iqbal kepada wartawan, Jakarta, Jumat (25/9/2015).
Menurutnya, banyak jamaah Indonesia yang tidak memahami lokasi kejadian menuju Mina. "Mungkin saja karena tersesat. Karena banyak dari jamaah kita yang enggak paham lokasi tersebut," ujar Iqbal.
Untuk itu, Iqbal pun mempercayakan penanganan tragedi Mina kepada Pemerintah Arab Saudi untuk melakukan investigasi lebih lanjut.
"Berikan kesempatan seluas-luasnya kepada mereka. Setidaknya untuk kasus ini kita berharap ada info lebih cepat dari Pemerintah Arab Saudi," imbuhnya.
Sebagai informasi, tiga WNI yang menjadi korban meninggal dunia dalam peristiwa tersebut di antaranya Hamid Atuwi asal Surabaya, Saiyah asal Batam, dan satu korban lagi yang masih dalam tahap identifikasi.
"Mereka tidak memakai identitas gelang di tangannya. Sehingga satu jenazah lagi perlu melewati proses identifikasi yang panjang," tutupnya.

Sumber : Okezone.com

Go to link download

Read more »

Heboh Dengan Bangganya Orang ini Menyembelih KUCING dan Memakannya

Heboh Dengan Bangganya Orang ini Menyembelih KUCING dan Memakannya




C.KEHIDUPAN-Tidak ada ayam, kucing pun jadi..." ditambah dengan 3 foto penyembelihan kucing di status facebooknya. Kucing adalah salah satu hewan kesayangan Nabi Muhammad SAW. Tidak sepantasnya kita diamkan bila ada yang melakukan pembunuhan sadis kepada binatang mungil dan manja, seperti kucing ini.

Apa yang sudah di lakukan "manusia" ini benar benar di luar dugaan. Membunuh kucing bersama rekannya dengan sadis dan di sebarkan melalui social media Facebook. Ini harus segera di laporkan dan jangan sampai perbuatan ini di contoh dan di jadikan menjadi sesuatu yang di perbolehkan. STOP PEMBUNUHAN KUCING! - KUCING BUKAN BAHAN MAKANAN!!!


Dari Ibnu Umar ra bahwa rasulullah saw bersabda, "Seorang wanita dimasukkan kedalam neraka karena seekor kucing yang dia ikat dan tidak diberikan makan bahkan tidak diperkenankan makan binatang-binatang kecil yang ada di lantai," (HR. Bukhari).


"Berbagi Itu Indah"

Go to link download

Read more »

Wiko Selfy 4G Stock Firmware Here

Wiko Selfy 4G Stock Firmware Here



Wiko_Selfy_4G_MT6735M_V07_5.1



Go to link download

Read more »

Wiko Sunset2 Stock Firmware

Wiko Sunset2 Stock Firmware



Wiko_Sunset_2_V8_4.4.2



Go to link download

Read more »

Inilah 3 Foto Sarden Yang Membuat Anda Stop Mau Makan Sarden Lagi !!

Inilah 3 Foto Sarden Yang Membuat Anda Stop Mau Makan Sarden Lagi !!



C. KEHIDUPAN -  Makanan Instan saat ini adalah makanan yang sangat banyak dipakai karena cara penyajiannya yang cepat dan dapat dijadikan makanan bagi mereka pekerja yang sering Terlambat yang dapat meminimalkan waktu sarapan mereka pada saat berangkat kerja.

Bagi kita kisah penemuan benda menjijikkan dalam sarden bukan perkara asing lagi.
dibawah ini adalah foto Sarden yang sangat menjijikan yang bermerk Botan.


Bagi kita kisah penemuan benda menjijikkan dalam sardin bukan perkara asing.
Malah beberapa tahun dulu tersebar kisah kononnya sebagian besar sardin mengandungi lendir siput babi dan cacing. dan kemudian senyap begitu saja dan tidak diragukan lagi kebersihan nya..
Bagaimana pun baru-baru ini isu sama kembali hangat diperbincangkan seorang pelanggan pernah menemukan bahan campuran yg panjang dan lembek seperti cacing dalam kaleng sarden yang baru dibuka.

Contoh

Contoh

Contoh
Harus diingat, makanan bersih dan halal amat penting terutama buat kesehatan tubuh kita.
Makan Sehat Itu adalah Makanan yang Halal nan Bersih




"Berbagi Itu Indah"

Go to link download

Read more »

How To Flash Samsung J7 SM J700H And Bypass Verify Google Account FRP Af

How To Flash Samsung J7 SM J700H And Bypass Verify Google Account FRP Af






Flash With Odin And Verify Google Account Bypass Latest Security 2016 Compleate Totrial


I will show you how to Flash And remove, disable or bypass Google account on Samsung Galaxy J7 J700H With Odin And OTG USB.

Also Use this method, if you get the message:"This device was reset. To continue, sign in with a Google Account that was previously synced on this device.

its also called "Factory Reset Protection FRP" and its different from "Samsung Reactivation Lock"


This method is 100% free and works with Odin And OTG cable! or usb

For this method you need a PC, internet connection, micro USB data cable,firmware for Galaxy J5, Older then Dec 2015 Odin software and OTG Usb.

First you must flash your J7 J700H with a firmware Older then Dec 2015 Besause "Android security level 2015-12-01" cant bypass the Google account without flashing Old Firmware.


How to flash:

Extract the firmware

Extract Odin

Open Odin v3.10.7

Reboot Phone in Download Mode (press and hold Home + Power + Volume Down buttons)

Connect phone and wait until you get conacted With Odin

Add the firmware file to AP / PDA

Make sure re-partition is NOT ticked

Click the start button,


LINKS:

Firmware:www.sammobile.com/firmwares

Odin: http://goo.gl/UXpLon

Bypass App Link: https://goo.gl/l1kuaA


Its Also Work On Devices with Android 5.1.1 latest Security 2016 inside:

Samsung Galaxy Grand Prime SM-G531H, SM-G531F, SM-G530FZ

Samsung Galaxy Core Prime VE SM-G361H

Samsung Galaxy J2 SM-J200F, SM-J200G, SM-J200GU, SM-J200H

Samsung Galaxy J3 SM-J320F

Samsung Galaxy J5 SM-J500F, SM-J500FN, SM-J500G, SM-J500H

Samsung Galaxy J7 SM-J700F, SM-J700H

Samsung Galaxy A8 SM-A800F

Samsung Galaxy S5 SM-G900F, SM-G900H, SM-G900FD

Samsung Galaxy S6 SM-G920F, SM-G920I, SM-G920T

Samsung Galaxy S6 EDGE SM-G925F, SM-G925I, SM-G925T

Samsung Galaxy S6 EDGE+ SM-G928F, SM-G928G, SM-G928I, G928G, G928T, SM-G928A

Samsung Galaxy Note 5 N920C, N920G, N920I, N920T

Many More



FOLLOW ME:

  



Go to link download

Read more »

Jebe Petty Dianggap Layak Bikin Album

Jebe Petty Dianggap Layak Bikin Album


Jebe & Petty Dianggap Layak Bikin Album
Jebe & Petty, duo peserta X Factor Indonesia 2015 yang dibimbing oleh vokalis Rossa dianggap sudah layak menembus industri musik tanah air.
Hal ini dikatakn Bebi Romeo. Mentor kategori Boys ini idak meragukan Jebe & Petty untuk berkecimpung dalam industri musik dengan membuat album.
"Sebenarnya bukan berbicara kompetisi saja, melainkan industri, ya kamu itu (sudah pantas). Kalau kata produser, kalian pasti bisa dijual," ujar Bebi.
Lain halnya dengan Bebi, Ahmad Dhani (43), yang menjadi mentor kategori Over Age menilai sebaliknya. Dhani menilai duo ini tak memuaskan dalam membawakan lagu "Paparazzi". Menurut Dhani, mereka sering fals alias sumbang dalam melantunkan lagu yang dipopulerkan oleh Lady Gaga tersebut.
"Saya enggak setuju dengan Afgan (vokalis Afgan Syahreza) karena malam ini tidak seperti biasanya. Enggak tahu ya, kayak banyak fals," kata Dhani dalam acara Grand Final X Factor Indonesia Season 2 atau 2015, di Ocean Eco Park, Taman Impian Jaya Ancol, Jakarta Utara, Jumat (4/9/2015) malam.
Dhani tak menjelaskan bagian-bagian yang sumbang itu. Hanya, ia tak setuju dengan sanjungan dari vokalis Afgan Syahreza, yang menjadi mentor kategori Girls. Menurut Afgan, suara dan penampilan Jebe & Petty seperti penyanyi profesional.
"Konsepnya saya suka, menunjang banget. Suara dan attitude-nya bagus," kata Afgan.
Sumber : tribunnews.com

Go to link download

Read more »

Instructions for installing the Mod was great for Google Nexus 7 after Root

Instructions for installing the Mod was great for Google Nexus 7 after Root


Few days ago we have tutorial root and install a ROM / mod for Google Nexus 7  and now I would like to introduce you to some of the mod as well as little tricks to customize this tablet just the way you more . First mod will be to help raise additional power menu . I will also talk to the manager flash enhanced sound ( DSP Manager ) for Google Nexus 7, the navigation bar is hidden when not needed , a Google Apps tweaked a transparent or black very nice jet . Finally, a tool interface tweaks and features of the system .
Instructions for installing the "Mod" was great for Google Nexus 7
Instructions for installing the "Mod" was great for Google Nexus 7

Read more »

Go to link download

Read more »

Tutorial How To Flash Motorola Using RSD Lite

Tutorial How To Flash Motorola Using RSD Lite


[Tutorial]How To Flash Motorola Using RSD Lite.









1.Download Latest Version Of RSD Lite From Here and install

2.Open RSD Lite then click Browse button(1) Select Flash File(2,xml)

 
ie;RSD Lite
rsd1 png 

3.Connect Your Handset via Fastboot Mode;RSD Lite Shows ID If connected
File properties shows file size,version..etc


rsd2
 4.Click Start Button
rsd3
5.Now Flashing Process Started; See RSD Lite Below Window For flashing progress

rsd4 
6.Handset automatically Restart After Flashing Process Complete

rsd6 
 

Go to link download

Read more »

Nokia Lumia 920 RM 821 Latest Flash File Free Download

Nokia Lumia 920 RM 821 Latest Flash File Free Download


Nokia lumia 920 latest updated flash file of firmware 2015 is now released and avail to download directly without waiting. If is completely free to download without paying. If your Nokia lumia 920 windows phone software not working properly or corrupted, so this flash file help you to solve your Nokia lumia 920.

Nokia Lumia 920 (RM-821) Latest Updated Flash File Free Download
Latest flsh files is a free platforms, which provides all mobiles flash files free. All flash files are compressed as a one zip file. You can easily download the file in slow connections. If you want to download Nokia lumia 920 flash file, click the provided download link, which is available at the end of the post.

Download Here

Go to link download

Read more »

Samsung Galaxy Note 4 African Firmware Update Download

Samsung Galaxy Note 4 African Firmware Update Download


Samsung Galaxy Note 4 African Firmware Update Download
Samsung Galaxy Note 4 African Update Firmwrae Download
Samsung Galaxy Note 4 African Countries SM-N910H SM-N910H NPL Nepal
Device Name : Samsung Galaxy Note 4 African Countries SM-N910H
Device Model : SM-N910H
Region Country : Nepal
Firmware Version : N910HXXU1BOC7
OS Name : Lollipop
OS Version : 5.0.1
Date Update : 2015-03-25
Region Code : NPL
Change List : 4549593


Download Mirror 1

Download Now

Download Mirror 2

Download Now

Go to link download

Read more »

Thursday, September 29, 2016

Wiko Ridge 4G Stock Firmware Here

Wiko Ridge 4G Stock Firmware Here



Wiko_Ridge_4G_V28_4.4.4



Go to link download

Read more »

Super Doctor MTK Box III Full Crack Setup With Driver Free Download

Super Doctor MTK Box III Full Crack Setup With Driver Free Download


Download super doctor box III latest update version V2.26 free download. Super doctor box is most useful tool to flash or unlock china mobiles. Super doctor box III allow you to unlock or flash your any china mobile phone model easily. This box solver your china mobile problem easily. This box is simple to use and you can easily solve your mobile phone problems thorough it.
Super Doctor Box III Full Setup Free Download
Super doctor box III latest vesion is realeased on the internet and ready to free download from its official download link. Super doctor box III full setup you can download from the given download link. You can easily download super doctor box III latest and updated setup from the given download link. If you want to install this amazing mobile tool on you pc then click the below download link to download this.  

Download super doctor box III latest update on you pc to enjoy its latest features at your on pc. Follow the download link to get super doctor box III full setup file now.

Download Super Doctor Box III Here
Download Super Doctor Box Driver

Go to link download

Read more »

Finding Cost effective Means for Unlimited Music Downloads for Ipod

Finding Cost effective Means for Unlimited Music Downloads for Ipod


Have you regularly clinging your time in locating the most appropriate total strain downloads for Ipod? There are most places where you can take the songs that you cite for your digital gadget. You can solve with the paid websites or from site that give you songs download probably for free. It is no tip how most Ipod users group to free sites. The bigger emanate however is, are these sites the most appropriate places to take glorious peculiarity music?

Finding Cost-effective Means for Unlimited Music Downloads for Ipod
Over the web, it is really easy to fix up the supposed free websites. These sites concede you to download total strain for Ipod at no price whatsoever. You usually need to entrance the site and crop by the living room of songs. Since all seems as well easy, people are fast tempted to go with these sites, but carrying to ask any critical questions beforehand.
There are some-more than a couple of downsides with this preference of removing free songs. Of course, free strain is regularly a acquire offer. However, you need to comprehend that with total iPod strain download, the credit of the websites is only as important, as well as the peculiarity of the files and software being offered.
One of the transparent disadvantages of free sites or the P2P downloading systems is that they do not suggest enough insurance from viruses and alternative antagonistic spyware that could be potentially damaging to your computer. Your accessible tool could be adversely influenced as well, once it becomes filled with controversial strain files. This free and total strain download for your iPod is essentially accompanied with serious drawbacks.
You need to assimilate that with free sites, you might be violating despotic rulings on copyrighted music. Music artists, composers and producers all work at time, effort, and income in creation these strain or songs. In your query for total Ipod songs, you should someway think again, prior to settling with these Peer to Peer websites.
Nonetheless, you can still get vast songs for your strain player from the right sources, at comparatively cheap costs. There are most authorised websites that need merely a one time set-up or membership fee, in sell for authorised and high peculiarity songs.
Your fright of removing your hardware putrescent with viruses can right away be put to rest. With these bona fide websites, you are positive of the most appropriate insurance and the tip peculiarity strain files for your excellent enjoyment.
If you think that you have no alternative preference in removing total Ipod songs than by P2P websites, think again. There are some-more than a couple of convincing and arguable websites that suggest you total strain downloads for Ipod in a cost-effective way.

Go to link download

Read more »

Nokia Mobiles Phone Security Codes Unlock Software Latest Version Free Download For All Nokia Phones

Nokia Mobiles Phone Security Codes Unlock Software Latest Version Free Download For All Nokia Phones


Nokia mobile phones unlocking software latest version direct download link is given at the end of the post. If you forgot your Nokia phone code, and want to reset this software is great choice for you. You can easily reset your Nokia phone code using this software,it is completely free to download without paying.
Nokia Mobiles Unlock Software Latest Version Free Download

If you want to download Nokia phone unlocking software new version for free, click the given download link at the end of the post. This download link is official download link for Nokia phone unlocking software. 

Download

Go to link download

Read more »

Wednesday, September 28, 2016

Official photos BlackBerry Porsche Design P9982 BlackBerry Z10 ultra luxury version priced around 2 000

Official photos BlackBerry Porsche Design P9982 BlackBerry Z10 ultra luxury version priced around 2 000


Official photos BlackBerry Porsche Design P'9982, BlackBerry Z10 ultra-luxury version, priced around $ 2,000
Official photos BlackBerry Porsche Design P'9982, BlackBerry Z10 ultra-luxury version, priced around $ 2,000
Pictures Porsche Design P'9982 BlackBerry smartphone ultra-luxury version of BlackBerry Z10 has recently appeared in Vietnam with impressive style. Also featured in the design, the BlackBerry Porsche Design
Read more »

Go to link download

Read more »

How To Infinity Chinese Miracle 2 SPD Spreadtrum v1 17 New Test and Repair features Solution Here

How To Infinity Chinese Miracle 2 SPD Spreadtrum v1 17 New Test and Repair features Solution Here


Infinity Chinese Miracle-2 SPD/Spreadtrum v1.17 - New Test and Repair features !


Infinity Chinese Miracle-2 SPD/Spreadtrum v1.17 - New Test and Repair features !

SPD SP Platform

- Flash Engine updated

Activated "Update NVM" option

*Update all found in firmware NVM images: Infinity SC and PAC

Activated "Erase Flash" option

*Erase whole NAND/eMMC flash during flashing

Some bugfixes and improvements

- Firmware Reading improved

New types supported

Brand-specific improvements

Improved NAND page detection

- Service operations improved

"Flash Erase" option activated.

*It will erase whole eMMC/NAND flash as well as security and calibration !

*After that operation complete reflashing required !

"Flash IC test" option released

*Allow make simple and fast eMMC R/O check and NAND ecc check

- Other

Some improvements and bugfixes at all

Connection stack revised

SVC mode connection revised

NVM operations revised

FP platform: flash dump files handling revised

- Info

All firmware read by CM2 is complete already and contain all required NVM items for repair after flash erase

Download link #1

Download link #2

Download link #3

New method to upload firmware files to support area - Flash Files Database - iosFileUploader

New method to download firmware files from support area - Flash Files Torrent system

Infinity-Box 11 (eleven) years (2005 - 2016) updates and support as nobody else - Infinity-Box - News

Unlock Codes (Huawei, SE, Motorola, Samsung etc.), iPhone Unlock, Software Activations - Infinity-Box Online Service

- Infinity-Box Dongle ready for delivery

- BB5 Easy Service Tool [BEST] Dongle

- CDMA-Tool Dongle (fast and easy unlock)


Go to link download

Read more »

Volcano Box New Update Setup V2 5 7 Free Download

Volcano Box New Update Setup V2 5 7 Free Download


Volcano Box
New Latest Setup v2.5.7 of Volcano Box for Mobile Repair-
Hello Friends,Today I will share with you Volcano Box new setup update version in this post,this flashing box is best of any china mobiles. In this setup new SPD CPU added ,and download is very easy , so you can download this setup of Volcano box v2.5.7 from this post.Below this link-



Volcano box v2.5.7 Free Download 
Volcano Box v2.9.2 Setup new update FREE Download
Volcano Box OLD Update Setup

Go to link download

Read more »

Free Winmax W3 Flash File Download Here 100 tested

Free Winmax W3 Flash File Download Here 100 tested


How to Flash File Download Here


Download Link 

All Mobile China Flash File Free  Download Here 100% Tested Now Free Full Read Creek full Spd 6531da support  

Go to link download

Read more »

Samsung E5 E5000 MT6572 Firmware 5 0

Samsung E5 E5000 MT6572 Firmware 5 0



 



Inital Boot Ok!
BB_CPU_PID : 6572
BB_CPU_NME : [MediaTek] MT6572_S00
BB_CPU_EXT : 0xCA01 , 0x8A00 , 0x0000
Processing BROM stage
Settings for BROM configured!
SecCfgVal : 0x00000000
BromVer   : 0x00FF
BLVersion : 0x0001
PreLoader : Active [ Boot with PL ]
BootLdrSS : NORMAL with SPRELOADER
Processing DA stage
DA Select done, will use MTK_AllInOne_DA_v5.1552.01.01
Sending and initialize DA ...
Running DA ver.4.2 on BBID : 0x88
NAND Flash : NOT INSTALLED
eMMC Flash : 110100303034474530016ADA9299729B
Initialize Memory ... 
DRAM already initialized by Preloader
eMMC FlashIC initialized
[eMMC] : FLASH_VEN : 0x11 , OEM : 0100
[eMMC] : FLASH_INF : [TOSHIBA] , 0EG40
[eMMC] : FLASH_CID : 110100303034474530016ADA9299729B
[eMMC] : FLASH_BRT : 0x00200000 , 0x00200000 , 0x00080000
[eMMC] : FLASH_LEN : 0x00000000EC000000
[eMMC] : FLASH_UCP : 3776 MiB [eMMC 4 GiB]
DEV RID    : BB8DA6AB6C533C544625908CDED25B81
INT RAM    : 0x00020000
EXT RAM    : 0x20000000
BOOT TYPE  : EMMC_FLASH_BOOT
SOC VERIFY : C1
Boot Ok!

[AP] : Initial info read Ok!

Brand     : alps
ProdName  : rtech72_we_72_kk
ProdModel : rtech72_we_72_kk
Device    : rtech72_we_72_kk
AndroidVer: 4.4.2
MTKxCPU   : MT6572
MTKxPRJ   : ALPS.KK1.MP6.V1
[Info] : BaseBand : MT6572_S00_MOLY_WR8_W1315_MD_WG_MP_V36_1_wg_n

Reading Flash Content now .
[Read Ok] : preloader_rtech72_we_72_kk.bin
[Read Ok] : MBR
[Read Ok] : EBR1
[Read Ok] : lk.bin
[Read Ok] : boot.img
[Read Ok] : recovery.img
[Read Ok] : secro.img
[Read Ok] : logo.bin
[Read Ok] : system.img
[Make Ok] : cache.img
[Make Ok] : userdata.img

[ScatCFG] : MT6572 / V1.1.1 / rtech72_we_72_kk / EMMC
Android Info saved
MAUI Meta DB saved
HWConfig Info saved
FW Size : 1064 MiB
Scatter saved to : 

MT6572__alps__rtech72_we_72_kk__rtech72_we_72_kk__4.4.2__ALPS.KK1.MP6.V1

Password: Gsm.Marhaba
FOLLOW ME:

  




Go to link download

Read more »

Tuesday, September 27, 2016

Ubuntu How to fix dependency problems

Ubuntu How to fix dependency problems


This is not a very generic method to solve dependency hells but in many obvious cases this is a very good one. It solved one of my problems with some components of "MySQL" being replaced / removed by some mysterious force. Ill pick the scenario here and try to draw a picture on the approach. The solution is based on the askUbuntu answer here [ http://askubuntu.com/questions/227978/problem-after-mysql-server-installation-i-cant-install-any-thing-in-ubuntu-12-04/228450#228450 ]

The problem: I was trying to access a web app that I was working on inside my localhost, but for some reason the mysql components were not functioning properly.
The server configuration: Apache2, PHP5, MySQL. The server was setup using Automatic virtual hosting method.
The packages used were installed using:

apt-get install ia32-libs-multiarch build-essential ncurses-term g++ mc lfm unrar firefox apache2 apache2-doc apache2-suexec git zsh vim aria2 awesome curl chromium-browser mpd ncmpcpp git conky pcregrep unagi mysql-server libapache2-mod-auth-mysql php5-mysql php5 php-pear php5-sqlite php5-curl php5-imap php5-intl php5-mysql phpmyadmin openssh-server php5-mcrypt

Its the full string from my server setup script, you can see the apache, php and mysql packages being used in the list.
How did I find the cause: I tried the package installation script again and it threw these errors

The following packages have unmet dependencies:
mysql-server : Depends: mysql-server-5.5 but it is not going to be installed
php5-curl : Depends: php5-common (= 5.4.9-4ubuntu2) but 5.4.9-4ubuntu2.1 is to be installed
php5-mysql : Depends: php5-common (= 5.4.9-4ubuntu2) but 5.4.9-4ubuntu2.1 is to be installed
E: Unable to correct problems, you have held broken packages.
Then I Googled the first line (mysql) and found the askUbuntu answer page.
This indicated the cause to be a recent addition of and external repo into my repo list.
How did I fix the problem : I first removed repos that were added by me from Synaptic > Other softwares. [ Open Synaptic and then untick repos from "Other software" tab
First I executed the commands

sudo apt-get -f remove mysql-server-core-5.5 mysql-server-5.5 mysql-server-5.5 mysql-server
sudo apt-get -f remove php5-curl
sudo apt-get -f remove php5-common
Then executed the installation commands again and the problem was fixed.

Go to link download

Read more »

Android Samsung Galaxy S Duos GT S7562 latest Firmware Official Download

Android Samsung Galaxy S Duos GT S7562 latest Firmware Official Download


Android Samsung galaxy S duos s7562 latest firmware update free download. Samsung galaxy s duos s7562 latest firmware update is released on its official website. Now you can download and install Samsung Galaxy S Duos s7562 latest firmware version directly from its official downloading links.

Samsung Galaxy S Duos S7562 latest Firmware Official Download
Samsung galaxy s duos s7562 latest firmware update is completely free to download without paying and fee. If you want to install latest firmware on you Samsung galaxy s duos s7562, Then you coming at the right place.

Click the given download link to get latest firmware flash file for your Samsung galaxy s duos s7562 for free. Latest firmware full download link is given at the bottom of the post. Click or follow the given link to get latest firmware setup exe for your Samaung galaxy s duos s7562.

If you want to download Android Samsung galaxy s duos s7562 latest firmware, then just one click on below link from your PC mouse. Your download will start automatically.

Click here to download

Go to link download

Read more »

Samsung Galaxy J7 SM J700H MT6582 Firmware 5 1 1 100 Tested

Samsung Galaxy J7 SM J700H MT6582 Firmware 5 1 1 100 Tested



[AP] : Initial info read Ok!

Brand     : samsung
ProdName  : Galaxy J7
ProdModel : SM-J700H
Device    : Galaxy J7
AndroidVer: 5.1.1
MTKxCPU   : MT6582
MTKxPRJ   : ALPS.L0.MP2.V1_GIONEE6582.WT.L_P30

SECURITY : 
IMEI_SW [1] : 352311072746766
IMEI_SW [2] : 352311072746766
BTMAC Addr  : B6E946658282
WiFi MAC    : 000822A96D75

MODEM : 
BaseBand  : MT6582_S00_MOLY_WR8_W1449_MD_WG_MP_V1_1_wg_n

EXTRA : 
LCD [0] : nt35590_hd720_dsi_cmd_auo
LCD Res : 1280x720
TOUCH [0] : GT9XX
CAM [0] : imx219_mipi_raw
CAM [1] : sp1628_yuv
CAM [2] : gc2755mipi_raw
MODEM : gionee6582_wt_l_hspa gionee6582_wt_l_tdd128hspa
LOCALE : en_US zh_CN zh_TW es_ES pt_BR ru_RU fr_FR de_DE tr_TR vi_VN ms_MY in_ID th_TH it_IT ar_EG hi_IN bn_IN ur_PK fa_IR pt_PT nl_NL el_GR hu_HU tl_PH ro_RO cs_CZ ko_KR km_KH iw_IL my_MM pl_PL es_US bg_BG hr_HR lv_LV lt_LT sk_SK uk_UA de_AT da_DK fi_FI nb_NO sv_SE en_GB hy_AM zh_HK et_EE ja_JP kk_KZ sr_RS sl_SI ca_ES xhdpi hdpi

Done!
Elapsed: 00:00:11
Reconnect Power/Cable!



Wait for phone...
Phone found! [ 6 ]
Sync...
Inital Boot Ok!
BB_CPU_PID : 6582
BB_CPU_NME : [MediaTek] MT6582_S00
BB_CPU_EXT : 0xCA01 , 0x8A00 , 0x0000
Processing BROM stage
Settings for BROM configured!
SecCfgVal : 0x00000000
BromVer   : 0x00FF
BLVersion : 0x0001
PreLoader : Active [ Boot with PL ]
BootLdrSS : NORMAL with SPRELOADER
Processing DA stage
DA Select done, will use MTK_AllInOne_DA_v5.1552.01.01
Sending and initialize DA ...
Running DA ver.4.2 on BBID : 0x87
NAND Flash : NOT INSTALLED
eMMC Flash : 90014A4834473164048600686FAF715D
Initialize Memory ... 
DRAM already initialized by Preloader
eMMC FlashIC initialized
[eMMC] : FLASH_VEN : 0x90 , OEM : 014A
[eMMC] : FLASH_INF : [HYNIX] , d1G4
[eMMC] : FLASH_CID : 90014A4834473164048600686FAF715D
[eMMC] : FLASH_BRT : 0x00200000 , 0x00200000 , 0x00200000
[eMMC] : FLASH_LEN : 0x00000000E7000000
[eMMC] : FLASH_UCP : 3696 MiB [eMMC 4 GiB]
DEV RID    : BB4FC321659D165B2F9F338654B79981
INT RAM    : 0x00020000
EXT RAM    : 0x40000000
BOOT TYPE  : EMMC_FLASH_BOOT
SOC VERIFY : C1
Boot Ok!

Reading Flash Content now ... 

Brand     : samsung
ProdName  : Galaxy J7
ProdModel : SM-J700H
Device    : Galaxy J7
AndroidVer: 5.1.1
MTKxCPU   : MT6582
MTKxPRJ   : ALPS.L0.MP2.V1_GIONEE6582.WT.L_P30

[Read Ok] : preloader_gionee6582_wt_l.bin
[Read Ok] : MBR
[Read Ok] : EBR1
[Read Ok] : lk.bin
[Read Ok] : boot.img
[Read Ok] : recovery.img
[Read Ok] : secro.img
[Read Ok] : logo.bin
[Read Ok] : system.img
[Make Ok] : cache.img
[Make Ok] : userdata.img

[ScatCFG] : MT6582 / V1.1.1 / gionee6582_wt_l / EMMC
Android Info saved
MAUI Meta DB saved
HWConfig Info saved
FW Size : 1453 MiB
Scatter saved to : C:UsersMarhaba LabDesktopJ7 5.1.1MT6582__samsung__SM-J700H__Galaxy_J7__5.1.1__ALPS.L0.MP2.V1_GIONEE6582.WT.L_P30

All done!

Download Here

Password: J700H.GSM.Marhaba



Support Me :

  



Go to link download

Read more »

Android SDK Tools Latest Version Free Download For Windows 7 8 Xp Vista

Android SDK Tools Latest Version Free Download For Windows 7 8 Xp Vista


Android Sdk Tools Full Installer Free Download For Windows 7,8,Xp,Vista (32 Bit/ 64 Bit)

Android Sdk tools latest version full installer free download for Mac, Linux & windows. This is latest setup installer for Android adk tool, and you can free download this latest version of Android adk tool from its official download link. Official download link for this tool is given at the end of below. If you want to install this latest update on your need operating systen. Then follow the provided downloading links. If you want to get more information about Android Sdk tool then visit its official website (https://developer.android.com/sdk/index.html). 


Android SDK Tools Latest Version Full Setup Installer Free Download For Mac, Linux & Windows 32 bit/64 bit



System Requirements

Windows:
  • Windows 7,8,Vista,2003 (32,64 Bit)
  • Recommended Ram 4GB, Minimum Ram 2GB
  • 400 Mb Hard Drive
  • 1280x800 Screen Resolution
Mac:
  • Mac OS X 10.8.5 or Higher
  • Recommended Ram 4GB, Minimum Ram 2Gb
  • 400 Mb Hard Drive SPace
  • 1280x800 Screen Resolution
Linux:
  • GNOME Or KDE Desktop
  • GNU C Library (Glibc) 2.15 or Later
  • Recommended Ram 4GB, Minimum Ram 2GB
  • 400 Mb Hard Drive SPace
  • 1280x800 Screen Resolution
If you want to download Android Sdk tools on your os, then select your need os and click te download link to start download now.

Download Android Sdk Tool For Windows
Download Android Sdk Tool For Mac
Download Android Sdk Tool For Linux

Go to link download

Read more »

HACKATH0N 2 5 Meet up of the Backbenchers

HACKATH0N 2 5 Meet up of the Backbenchers


Mark this day, an example of destiny. Only the backbenchers of the BD-LFS group met up today. Somehow the good boys didnt show up. Robin Bhai had leg pain due to dancing rehearsals. Kabir Bhai had set foot for the meet up only to find himself hurt in the leg and returning home. We almost thought today should be announced "Leg Injury Day" but didnt do so because Tapan bhai didnt show up without reporting any leg injury. All in all we just had one mentor #R!NE to lead us to the same level as the regular good guys.


We ended up doing the things that #Hackathon-2 had left us with. Me and RINE were not present in that due to personal issues. So, I just made the best use of this day to improve my knowledge and sync up with the rest of the group.

Initially we had problems regarding VM setup which was almost dragging us towards failure. But somehow, by the hand of God we recovered from that state after me, Rahid Bhai and Mamun Bhai managed to build the systems up. We ended up creating the LFS systems base camp for compilation and tool sets. It was fun and in between Rine was helping us understand the concepts that were in play with what we were doing.

We shared a lot about our experiences with different OS setups. I liked the way we shared knowledge about shells. Came to know about some of those from Mamun bhai.

Particularly, the venue this time was Sphinx Corporations. Shihan Bhais new software company. We had a great venue indeed since the sitting arrangements allowed us to really enjoy the mash up. The lunch was fun too since there was great gossip and knowledge sharing. All in all it was awesome, for the Backbenchers ;p

Participants:
1. Tafhim (Me)
2. Rine (Rine Toufique Anam)
3. Mamun bhai (Abdullah al Mamun)
4. Rahid bhai (Rahid Hasan)
5. Aman bhai (Md. Aman Ullah)

Topics covered:
1. Preparing LFS Partition
2. Setting up LFS usergroup and account
3. Compiled BinUtils (First phase)
4. Compiled GCC (First phase)

Issues:
1. VBox machine setup [20 GB Partition, 2 GB swap, 8 GB Host OS, 10 GB LFS Partition
2. Dependency resolving issue during G++, GAWK, BISON installation. Fixed by choosing an Australia based server. Even though using "Choose the best server" solved the slow download issue but it doesnt always choose a repo that can resolve all dependencies. We tried different repos and had zero dependency issues of packages using Australian servers.
3. In case of slow download speed of packages you should change your repo and choose a good one using Synaptic
4. We primarily came to a unified decision to arrange the next Hackathon atleast 1 and 1/2 months from today so that all of us can complete the LFS book before that.


Target of the next Hackathon (3): Start [B/C]LFS


Go to link download

Read more »