milosev.com
  • Home
    • List all categories
    • Sitemap
  • Downloads
    • WebSphere
    • Hitachi902
    • Hospital
    • Kryptonite
    • OCR
    • APK
  • About me
    • Gallery
      • Italy2022
      • Côte d'Azur 2024
    • Curriculum vitae
      • Resume
      • Lebenslauf
    • Social networks
      • Facebook
      • Twitter
      • LinkedIn
      • Xing
      • GitHub
      • Google Maps
      • Sports tracker
    • Adventures planning
  1. You are here:  
  2. Home

Manually installing factory image on Nexus 5

Details
Written by: Stanko Milosev
Category: Android
Published: 24 May 2015
Last Updated: 24 May 2015
Hits: 5487

You can use Nexus Root Toolkit, but I would rather do it manually.

I am using steps from this web site.

First download appropriate image from here. Extract it. Then download latest Android SDK, in my case it was this one. If you don't have it installed already then download Java, and install it of course.

After you finished installing Android SDK leave check box Start SDK manager checked like on picture I am not sure if we need this part, since in folder:

%APPDATA%\Local\Android\android-sdk\platform-tools

AppData is hidden folder...

in my case I couldn't find adb. Anyhow, I've left the check box checked, and was waiting for couple of hours (washed dishes, eating,...):

That will open new window Android SDK manager, just click install packages:

Add %APPDATA%\Local\Android\android-sdk\platform-tools to path in Environment Variables.

Open command prompt in a folder where you previously extracted the image, (in my case that was something like: E:\hammerhead-lmy48b) and execute:

flash-all.bat

and wait until files are not written to the device.

After signing in, to avoid automatic installation of applications in Get your apps & data, from restore from this backup choose setup as new device:

uncheck check box to Backup your phone's app:

My list of best applications

Details
Written by: Stanko Milosev
Category: Android
Published: 15 May 2012
Last Updated: 15 May 2012
Hits: 5736

WebKey
Google Drive
My tracks
Link2SD
Viber
Meebo

Stucked at HBOOT

Details
Written by: Stanko Milosev
Category: Android
Published: 14 May 2012
Last Updated: 14 May 2012
Hits: 5420

Yesterday I was playing with Link2SD and I tried to move one system file to SD card, after that I was stucked at hboot.

PG76IMG_Marvel_HTC_Europe_1.66.401.1_Radio_47.10g.35.3032H_7.49.36.01M_release_209754_signed.zip, from here.

I have unzipped the file, and manually updated ROM, using commands from command prompt:

fastboot flash boot boot.img

fastboot flash dzdata dzdata.img

fastboot flash partition partition.img

fastboot flash radio radio.img

fastboot flash recovery recovery.img

fastboot flash system system.img

As it is described here.

You will need files:

fastboot.exe

AdbWinApi.dll

adb.exe

One more example of responsive design

Details
Written by: Stanko Milosev
Category: CSS
Published: 04 June 2019
Last Updated: 09 November 2021
Hits: 3318
Here I already gave one example of responsive table. Now I needed to display thumbnails on the right side for bigger screens (desktops) and for smaller screens (mobiles) to display them under the map. So here is my example:
@media only screen and (max-width: 480px),
(min-device-width: 768px) and (max-device-width: 1024px) {
	#map-canvas {
		position: relative;
		width: 100%; 
		height: 50%; 
		float: left;
	}

	#thumbnails {
		width: 100%; 
		height: 50%; 
		float: left; 
		overflow: auto;
	}
}

@media only screen and 
(min-device-width: 768px)  {
	#map-canvas {
		position: relative;
		width: 50%; 
		height: 100%; 
		float: left;
	}

	#thumbnails {
		width: 50%; 
		height: 100%; 
		float: left; 
		overflow: auto;
	}	
}
  1. pointer-events: none
  2. Understanding vertical-align
  3. Selectors again
  4. Simple drop down menu

Subcategories

C#

Azure

ASP.NET

JavaScript

Software Development Philosophy

MS SQL

IBM WebSphere MQ

MySQL

Joomla

Delphi

PHP

Windows

Life

Lazarus

Downloads

Android

CSS

Chrome

HTML

Linux

Eclipse

Page 153 of 168

  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157