
lalitbhatt.net
Lalit Mohan Chandra BhattLalit Mohan Chandra Bhatt. Subscribe to: Posts (Atom). View my complete profile. Picture Window theme. Powered by Blogger.
http://www.lalitbhatt.net/
Lalit Mohan Chandra Bhatt. Subscribe to: Posts (Atom). View my complete profile. Picture Window theme. Powered by Blogger.
http://www.lalitbhatt.net/
TODAY'S RATING
>1,000,000
Date Range
HIGHEST TRAFFIC ON
Saturday
LOAD TIME
1.2 seconds
16x16
PAGES IN
THIS WEBSITE
1
SSL
EXTERNAL LINKS
40
SITE IP
172.217.10.19
LOAD TIME
1.208 sec
SCORE
6.2
Lalit Mohan Chandra Bhatt | lalitbhatt.net Reviews
https://lalitbhatt.net
Lalit Mohan Chandra Bhatt. Subscribe to: Posts (Atom). View my complete profile. Picture Window theme. Powered by Blogger.
Just Musings
Tuesday, June 30, 2015. बारिश की बूंदे. बादलों के बीच बैठी हैं बारिश की बूंदे. इंतज़ार में बैठा हूँ, मैं. 160;आँखें मिचें. एक आस है, एक प्यास है. Sunday, June 28, 2015. The politics of India seems to be settled for a while with the election of Narendra Modi as the prime minister of India. Arvind Kejriwal also found his footing with a win over Delhi. Rahul Gandhi back on drawing board to reinvent itself. . Thursday, May 28, 2015. Crow and Chameleon fight. Tuesday, May 26, 2015. Monday, March 16, 2015.
Technology
Thursday, July 23, 2015. Cors Filter in Tomcat. CORS stands for Cross Origin Resource Sharing. This is a way to handle Cross domain requests. CORS as a concept is supported by W3C consortium. It is enabled on server side by putting Access-Control-* headers. The origin header is put by clients side browsers and by enabling CORS we can ask the server to honour the request. Tomcat supports CORS filter which can be enabled by hooking the filter in web.xml. A minimalist configuration is. Monday, June 1, 2015.
Lalit Mohan Chandra Bhatt: Welcome
https://www.lalitbhatt.net/2014/08/welcome.html
Lalit Mohan Chandra Bhatt. View my complete profile. Simple template. Template images by luoman.
TOTAL PAGES IN THIS WEBSITE
1
Technology: Hooking javascript function before navigating to a link
http://tech.lalitbhatt.net/2015/05/hooking-javascript-function-before.html
Friday, May 29, 2015. Hooking javascript function before navigating to a link. Links are very common navigation elements in a HTML page. As most of us know a link looks like. This will give us a link as follows and clicking on that will navigate to a new page. To achieve that, hook a javascript function on the link. A onclick="cleanupBeforeLogut()" Log out /a. The javascript function is as follows. Location.href = "http:/ lalitbhatt.net/logout" ;. Subscribe to: Post Comments (Atom).
Technology: Finding Latitude and Longitude of a location
http://tech.lalitbhatt.net/2015/06/finding-latitude-and-longitude-of.html
Monday, June 1, 2015. Finding Latitude and Longitude of a location. HTML5 supports geolocation which helps in finding current longitude and latitude. As this affects privacy, browser ask user if they want to allow the application to read the current location of user. The javascript code to get the current position is as follows:. Var success = function(position){. Var error = function(error){. Var option = {. Navigator.geolocation.getCurrentPosition(success,error,option);. View my complete profile. Encry...
Pune
http://musings.lalitbhatt.net/p/pune.html
Hill forts for Trekking in Pune. Movie Halls in Pune. Tourist Spots in Pune. Subscribe to: Posts (Atom). View my complete profile. Search Engine Optimization (SEO). Tourist Spots in Pune. Animal Farm by George Orwell. Pageviews difference in Blogger, Analytics and Adsense. Stock Maket Technical Indicators. काफ़िर नहीं हूँ. I am a Truck. Indian politics at crossroads. Rajan exit - Will it impact?
Technology: Cors Filter in Tomcat
http://tech.lalitbhatt.net/2015/07/cors-filter-in-tomcat.html
Thursday, July 23, 2015. Cors Filter in Tomcat. CORS stands for Cross Origin Resource Sharing. This is a way to handle Cross domain requests. CORS as a concept is supported by W3C consortium. It is enabled on server side by putting Access-Control-* headers. The origin header is put by clients side browsers and by enabling CORS we can ask the server to honour the request. Tomcat supports CORS filter which can be enabled by hooking the filter in web.xml. A minimalist configuration is. Java Simple Serial Co...
Technology: Big Data
http://tech.lalitbhatt.net/p/big-data.html
Map Reduce in simple terms. Version 2.3.0. SQL vs No SQL. Subscribe to: Posts (Atom). View my complete profile. Aspect Oriented Programming (AOP). Business Process Analysis (BPA). Cascading Style Sheet (CSS). Airflow - Beginners Tutorial. Encrypting and Decrypting using Public Private Key in Java. Object Relationship Mapping (ORM). Java Simple Serial Connector (jSSC). JAXB Generating Java Classes From XML. Hibernate Persistent Context and Session. Mapping Inheritance in Hibernate.
Technology: Finding address in a browser using reverse geocoding
http://tech.lalitbhatt.net/2015/06/finding-address-in-browser-using.html
Monday, June 1, 2015. Finding address in a browser using reverse geocoding. To find the address of a location, first you need to find our latitude and longitude. This can be done my following the blog about finding latitude and longitude. Once the latitude and longitude are in place, they can be passed to Google reverse geocoding api to find the details of the location. Please read the terms and conditions of Google geocoding api also. Var request = new XMLHttpRequest();. Var method = 'GET';. State = dat...
Technology: Bugs that should not be fixed
http://tech.lalitbhatt.net/2014/07/bugs-that-should-not-be-fixed.html
Friday, July 25, 2014. Bugs that should not be fixed. Of course, we want to fix everything. It's extremely difficult to justify sometimes why we should not be fixing some bugs. There is always an angle to more security, better usability, better look and feel, a new feature which could be a killer. The points I am mentioning are more valid near the release and hold less water in the beginning of release so take your judgement. Subscribe to: Post Comments (Atom). View my complete profile. Hibernate Persist...
Technology: Modeling Business Processes
http://tech.lalitbhatt.net/2014/08/modeling-business-processes.html
Thursday, August 14, 2014. Once the business processes are identified, the next step is to detail the business processes. The detailing of business processes helps in getting better insight into how the things work in the organization. The techniques of modeling employed can be used in understanding the current business processes and can also be used for depicting the changed/reengineered processes. Circle - Start/End of process. Rectangle - Step in a process. Rhombus - Decision points. Encrypting and De...
Technology: Invoking web services using Restlet
http://tech.lalitbhatt.net/2015/05/invoking-web-services-using-restlet.html
Sunday, May 3, 2015. Invoking web services using Restlet. Restslet is a good framework to invoke rest based web services. Let's see through a simple program how to write a client to invoke Rest based webservices. Name Restlet repository /name. Url http:/ maven.restlet.com /url. Restlet-version 2.3.1 /restlet-version. GroupId org.restlet.jse /groupId. ArtifactId org.restlet /artifactId. GroupId org.restlet.jse /groupId. ArtifactId org.restlet.ext.jackson /artifactId. Let's say the json request is. If (rep...
Technology: Object Relationship Mapping (ORM)
http://tech.lalitbhatt.net/2014/07/object-relationship-mapping-orm.html
Sunday, July 27, 2014. Object Relationship Mapping (ORM). To interact with the database, Standard Query Language(SQL) has emerged as the standard way. The SQL standards are controlled by ANSI. However there are still proprietary variations to it. SQL provides two types of mechanism:. Data Definition Language (DDL) : Provides ways to create and alter tables. Data Manipulation Language (DML) : Provides ways to manipulate and retrieve data. It includes inserting, updating and deleting data. The granularity ...
TOTAL LINKS TO THIS WEBSITE
40
Welcome to Lalit Berwa's Home Page
Welcome to Lalit Berwa's Home Page. Eliminate double meaning from our thoughts, emotions, intentions and vocabulary.
IIS7
Welcome lalitbhardwaj.com - Justhost.com
Web Hosting from Just Host. Design By Design Fusions.
lalitbhardwaj1
It seems we can’t find what you’re looking for. Perhaps searching can help. Create a free website or blog at WordPress.com. Create a free website or blog at WordPress.com.
Lalit Mohan Chandra Bhatt
Lalit Mohan Chandra Bhatt. Subscribe to: Posts (Atom). View my complete profile. Picture Window theme. Powered by Blogger.
Lalit Bhojwani
Saturday, January 16, 2016. Links to this post. Links to this post. Links to this post. Sunday, February 16, 2014. Great Quotes Written by Lalit Bhojwani. 1 “Long ago a man said that the earth is round but people laughed at him and declared him mental patient.Now we all know who were fool that time.” Lalit Bhojwani. 2 “A good sales person is not only one who can sell others products and services but one who can sell his strength at a good cost at any point of time.” Lalit Bhojwani. I know at least 1000 p...
lalitbhojwani1 | Inspirational Blog
April 14, 2011. ENTREPRENEURIAL VISION and SKILLS. It’s clear that all ENTREPRENEURS can SEE WHAT OTHERS CAN’T and they understand the difference between making a PLAN and EXECUTING it. There is a difference between large organiztions and startups. You know the big difference between large organizations and startups? Rather why large organizations fail to ‘be like’ startups? Kindly suggest What Do YOU DO to develop your ENTREPRENEURIAL VISION and SKILLS? Furthermore, kindly share your experiences. Books ...
Lalit's Blog
Sunday, 7 October 2012. How to Send a Message to Other Computers In Your Network with "net send" Command. How to Send a Message to Other Computers In Your Network with "net send" Command. Of the Messenger service to. And then start the Messenger service. To do this, follow these steps:. In the left pane, right-click My Computer. And then click Manage. In the Computer Management. Window, expand Services and Applications. In the left pane, and then click Services. In the right pane, double-click Messenger.