Saturday, November 2, 2013

Stat 2.1x Course: Introduction to Statistics: Descriptive Statistics

Hi Guys, I am now taking a course on Stat 2.1x: Introduction to Statistics: Descriptive Statistics.  Just completed the week 1 and truly speaking it looks very interesting to me.  Loving the way Prof. Ani Adhikari is teaching. Explaining the concepts so clearly  and interestingly.. I am already feeling excited that within 5 weeks from today I will learn many  new...

Saturday, September 21, 2013

Implementation of "Triangular Number Sequence" with Scala

Triangular Number Sequence is 1, 3, 6, 10, 15. This is very basic mathematical concept. This sequence is getting generated from a pattern of dots which form a Triangle. To know more about Triangular Number Sequence, please check this page => Triangular Number Sequence At this page only I saw one very good example of how we can use this sequence in solving problems. One problem...

Friday, September 20, 2013

Coursera Functional Programming Principles in Scala Course by Martin Odersky

Hurray!!! I was waiting for this course Functional Programming Principles in Scala Course by Martin Odersky since long time. It started now and it is really helping me to think differently. It is creating a habit inside me - "Can I do this in better way?". After spending 9 hours (sometime 10 hours) in office, I still manage to check Scala every day, ok sorry almost every day. Just completed...

Tuesday, September 10, 2013

Saturday, August 17, 2013

Java Persistency API 2.0 (JPA): Hibernate JPA Metamodel Generator With Eclipse and Maven

One of the key features introduced in JPA 2.0 is the Criteria API, which brings a unique capability to the Java language: a way to develop queries that a Java compiler can verify for correctness at compile time. The Criteria API also includes mechanisms for building queries dynamically at run time. In...

Thursday, August 15, 2013

Integrate Maven with Eclipse

While developing applications with Eclipse, if you have to move from Eclipse to Command Prompt, then after sometime you will feel irritated. That is why it is good to integrate Maven with Eclipse. Here I will share my experience how I Integrated Maven with Eclipse. Hope it will help you guys: Tools Needed: 1. Eclipse. 2. Maven 1. Installing Eclipse: You can go to Eclipse's website and download...

Wednesday, August 14, 2013

How to Install and Configure Maven on Windows

Maven is a build automation tool used primarily for Java projects. Maven serves a similar purpose to the Apache Ant tool, but it is based on different concepts and works in a different manner. I don't want to get into details about Maven here. Let's focus :-) I...