Skip to main content

Posts

Virtual Reality

The term "Virtual Reality"(Shortly called as VR) was first coined by an American computer scientist Jaron Lanier who founded VRL Research Inc in the 1980s to sell the first VR Goggles. Virtual Reality is an artificial environment that is created with software which creates a sensory experience of virtual presence in the simulated world. At present many industries started using VR as part of their applications. The VR was just fiction till the last decade, but today it becomes possible and affordable to everyone with the evolution and integration of the following technologies. 1. 360° Camera We need a special camera which can capture 360° or at-least 190° since we have a maximum of 190° horizontal Field of View(FOV) by both of our two eyes, we have approximately 120° FOV for binocular vision(seen by both eyes together) and 135° FOV for vertical range of the visual fields. There are many 360° cameras available on the market and it does not require much technical knowledge t
Recent posts

Athi Varadar

Athi Varadar 360 °  Photo Donar Pass View Free Darshan View

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  central server. Repository Management At Gi

How to use Google Code Prettify

This post is about how can we use Google Code Prettify to highlight the code which is displayed in my blog. Google Code Prettify is a simple lightweight embeddable java script library. Find the steps below for how to use Google Code Prettify. Step 1: Add run_prettify.js script and any one of skin styles(sunburt <script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js?autoload=true&skin=sunburst&lang=css" defer=""></script> Step 2: Use pre tag for representing our code as follows. The following is the example of html code highlighter. <pre class="prettyprint lang-html linenums"> list of statements </pre> List of Skin Styles Default Desert SunBurst Sons-Of-Obsidian Doxy List of built-in languages supported bsh, c, cc, cpp, cs, csh, cyc, cv, htm, html, java, js, m, mxml, perl, pl, pm, py, rb, sh, xhtml, xml and xsl List of additional language supported Apollo , Basic , C

Base 64 Encode & Decode

This post is about Base64 encoding and decoding. Base64 is a group of similar Binary-to-text encoding schemes that represent binary data in an ASCII string format by translating it into a radix-64 representation. The atob() and btoa() JavaScript methods, defined in the HTML5 draft specification, provide Base64 encoding and decoding functionality to web pages. Encode Decode GitHub Link: https://github.com/harishshan/Tools/blob/master/Base64EncodeDecode.html

JSON Viewer

This is a simple JSON viewer developed using JQuery. Find the JSON viewer blow and its source code at GitHub Link Options: Collapse nodes Keys with quotes Transform to HTML GitHub Link: https://github.com/harishshan/Tools/blob/master/JSONViewer.html