Sunday, March 24, 2019

List of Devops conferences in 2019

DevOps is the combination of cultural philosophies, practices, and tools that increases an organization’s ability to deliver applications and services at high velocity: evolving and improving products at a faster pace than organizations using traditional software development and infrastructure management processes.
Source: Amazon Web Services

Here is the list of DevOps conferences going to be held in 2019.


Thursday, March 21, 2019

Tuesday, March 12, 2019

Friday, March 3, 2017

Sunday, April 12, 2015

Project: Q-Learning and A* Search Alogrithm

Project: Java Application to Visualize Q-Learning Method and A* Search Algorithm

Please,  understand the following algorithms in the below-mentioned links.
Q-Learning Method: 


A* Search Algorithm:


Project Files:
Youtube Link: https://www.youtube.com/watch?v=cixR7JGO-yY 

In this Project, I tried to visualize the Q-Learning and A* Search Algorithms as Java Application. Please read through the Read Me document mentioned in the above-mentioned location. Please download the Jar File at the above-mentioned location.

I have attached some of the images that correspond to this Project below:


Figure 1: Graphical User Interface to select the input values


Figure 2: Message shows to the user once the Map is generated


Figure 3: Viewing Map1 Structure.

Figure 4: Decision Box to select either Q-Learning or A* Planner

Figure 5:  Input Form for Q-Learning Algorithm


Figure 6: Q-Table and Path Traversal



Figure 7: Initial and Final locations as an input to the A* Search Algorithm

Figure 8: Path Traversal for A* Search Algorithm

Tuesday, March 31, 2015

Sunday, April 13, 2014

How to convert Java Date to Java SQL Date

Java uses java.util.Date to store the Date value. But it uses java.sql.Date to retrieve the Date from the MySQL or SQL Server.

This post explains on how to store date (java.util.Date) into the MySQL/SQL Server Date. 

java.util.Date javaDate = new java.util.Date();
java.text.SimpleDateFormat dateformat = new java.awt.SimpleDateFormat("YYYY-MM-DD HH:MM:SS");
String sqlTime = dateformat.format(javaDate);

Saturday, March 29, 2014

How to remove the safe update option in the MySQL

As we all know that MySQL by default doesnt allow the user to perform operations on the tables. This is also called as Error 1175. ( Error Code: 1175. You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column To disable safe mode, toggle the option in Preferences -> SQL Queries and reconnect.). The user needs to change the preferences before he start working on the updates. Please go through the following actions


  1. Go to Edit -> Preferences.
  2. Switch to 'SQL Queries' tab and uncheck the option ' "Safe Updates" '.
  3. Reconnect the server by using Query -> Reconnect to the server.
  4. Execute your query once you reconnect to the server.