Skip to main content

Posts

Showing posts from July, 2018

How to fix Kindle wrong time left in chapter book

The most of kindle reader use the time left in chapter or time left in book options provided at left bottom of the page to estimate completing the book or the current chapter. But sometimes it was not  accurate and displaying 5 min left in chapter instead of 30 min left in chapter. To fix this issue just type ;ReadingTimeReset at search field and enter. Kindly refer the photo for the same.

Git

Git is  free and open source  Distributed Version Control System (DVCS).  Git was created by Linux Torvalds in 2005 for the development of Linux Kernel,  with other kernel developers contributing to its initial development. Its current maintainer since 2005 is Junio Hamano. Git is responsible for keeping track of changes to content usually source code files.  It is designed to handle everything from small to very large projects with speed and efficiency.  It provides mechanisms for sharing that content with others.  It helps software developers to work simultaneously and maintaining history of every version.  This post will help to on board Git from basics to professional level. Centralized Version Control System vs Distributed Version Control System Centralized Version Control System uses a central server to store all files and enables team collaborations. It works on a single repository to which users can directly access a...