In a fight where Ray Robinson trying to regain his title from Gene Fullmer and Fullmer has never been knocked down in his life, Fullmer can take punishment than any middle weight and He is pressing forward and beating Sugar Ray again. All of a sudden a left hook, one punch, left hook from Sugar Ray Robinson, Fullmer down for the first time of his life. It was a picture perfect left hook.
Friday, March 6, 2015
The real "Sugar"
In a fight where Ray Robinson trying to regain his title from Gene Fullmer and Fullmer has never been knocked down in his life, Fullmer can take punishment than any middle weight and He is pressing forward and beating Sugar Ray again. All of a sudden a left hook, one punch, left hook from Sugar Ray Robinson, Fullmer down for the first time of his life. It was a picture perfect left hook.
Sunday, March 1, 2015
Finally on May 2nd in Las Vegas ( Manny Pacquiao Vs Floyd Mayweather Jr)
After 5 long years the contract has finally signed for the fight I was waiting for. This will be the greatest fight in current era after the Lennox Lewis Vs Vitali Klitschko in 2003.
It will be Manny Pacquiao's speed Vs Floyd Mayweather's defense.
Thursday, February 19, 2015
Text To Speech (TTS) - Application Download
TTS can be downloaded from the following URL:
https://drive.google.com/folderview?id=0B5QrDbrlWnZbOFhxa1BzUnZvRnc&usp=sharing
Prerequisite:
.NET Framework Version 4.5.1
https://drive.google.com/folderview?id=0B5QrDbrlWnZbOFhxa1BzUnZvRnc&usp=sharing
Prerequisite:
.NET Framework Version 4.5.1
Tuesday, February 10, 2015
Build Apache Kafka on Eclipse and Run Unit Tests
Earlier I tried to build Kafka by following the Developer Setup wiki link. But it was not successful due to several build error.
The same Developer Setup wiki has a link to Eclipse-Scala-Gradle-Git Developement Environment Setup page, by following the instruction on this page I was able to build and run Scala unit test without any problem.
The Following steps needs to be followed:
* I downloaded the latest "kafka-trunk.zip" from GitHub and extracted it.
* Edit /kafka/gradle.properties
Change to scalaVersion=2.11 from scalaVersion=2.10.4
Go to Eclipses > Help > Install New Software and install following plug-ins.
1 http://download.scala-ide.org/sdk/lithium/e44/scala211/stable/site
2 http://dist.springsource.com/release/TOOLS/update/e4.4/
(Above link details also available in Spring Tool Suite™ Downloads)
Import the Kafka Project
1 File > Import > Select Gradle Project.
2. In the next dialog, browse the Kafka project folder and Click "Build Model" button then it will start downloading necessary files and build the project. Once the build is completed, it will show all the Kafka projects.
3. Select All the projects and press Finish.
My Developer Environment Details:
Build Related Issues:
The same Developer Setup wiki has a link to Eclipse-Scala-Gradle-Git Developement Environment Setup page, by following the instruction on this page I was able to build and run Scala unit test without any problem.
The Following steps needs to be followed:
* I downloaded the latest "kafka-trunk.zip" from GitHub and extracted it.
* Edit /kafka/gradle.properties
Change to scalaVersion=2.11 from scalaVersion=2.10.4
Go to Eclipses > Help > Install New Software and install following plug-ins.
1 http://download.scala-ide.org/sdk/lithium/e44/scala211/stable/site
2 http://dist.springsource.com/release/TOOLS/update/e4.4/
(Above link details also available in Spring Tool Suite™ Downloads)
Import the Kafka Project
1 File > Import > Select Gradle Project.
2. In the next dialog, browse the Kafka project folder and Click "Build Model" button then it will start downloading necessary files and build the project. Once the build is completed, it will show all the Kafka projects.
3. Select All the projects and press Finish.
My Developer Environment Details:
- Ubuntu 14.04 LTS
- Java version "1.7.0_71"
- eclipse-jee-luna-SR1a-linux-gtk-x86_64
Build Related Issues:
- missing import util.parsing.json.JSON
- scalatest_2.10-1.9.1.jar of core build path is cross-compiled with an incompatible version of Scala (2.10.0)
Friday, February 6, 2015
Windows Azure Blob Search
Blob Indexing and Full Text Search across multiple Windows Azure Blob Storage account.
Wednesday, February 4, 2015
Build Apache Kafka
mahesh@hd-mahesh:~$ ./gradlew srcJar
Error: Could not find or load main class org.gradle.wrapper.GradleWrapperMain
mahesh@hd-mahesh:~$ ./gradlew jar
Error: Could not find or load main class org.gradle.wrapper.GradleWrapperMain
you will get above errors if straight away execute the "./gradlew srcJar" or "./gradlew jar".
Type the followng it will bootstrap and download the wrapper.
gradle wrap
./gradlew clean
A successful build output.
mahesh@hd-mahesh:~$ ./gradlew srcJar
Downloading https://services.gradle.org/distributions/gradle-2.2.1-bin.zip
Unzipping /home/mahesh/.gradle/wrapper/dists/gradle-2.2.1-bin/88n1whbyjvxg3s40jzz5ur27/gradle-2.2.1-bin.zip to /home/mahesh/.gradle/wrapper/dists/gradle-2.2.1-bin/88n1whbyjvxg3s40jzz5ur27
Set executable permissions for: /home/mahesh/.gradle/wrapper/dists/gradle-2.2.1-bin/88n1whbyjvxg3s40jzz5ur27/gradle-2.2.1/bin/gradle
To honour the JVM settings for this build a new JVM will be forked. Please consider using the daemon: http://gradle.org/docs/2.2.1/userguide/gradle_daemon.html.
Building project 'core' with Scala version 2.10.4
:clients:srcJar
:contrib:srcJar
:core:srcJar
:examples:srcJar
:contrib:hadoop-consumer:srcJar
:contrib:hadoop-producer:srcJar
BUILD SUCCESSFUL
Total time: 5 mins 3.677 secs
All the above information is available in following URI:
https://github.com/apache/kafka/tree/trunk
Error: Could not find or load main class org.gradle.wrapper.GradleWrapperMain
mahesh@hd-mahesh:~$ ./gradlew jar
Error: Could not find or load main class org.gradle.wrapper.GradleWrapperMain
you will get above errors if straight away execute the "./gradlew srcJar" or "./gradlew jar".
Type the followng it will bootstrap and download the wrapper.
gradle wrap
./gradlew clean
A successful build output.
mahesh@hd-mahesh:~$ ./gradlew srcJar
Downloading https://services.gradle.org/distributions/gradle-2.2.1-bin.zip
Unzipping /home/mahesh/.gradle/wrapper/dists/gradle-2.2.1-bin/88n1whbyjvxg3s40jzz5ur27/gradle-2.2.1-bin.zip to /home/mahesh/.gradle/wrapper/dists/gradle-2.2.1-bin/88n1whbyjvxg3s40jzz5ur27
Set executable permissions for: /home/mahesh/.gradle/wrapper/dists/gradle-2.2.1-bin/88n1whbyjvxg3s40jzz5ur27/gradle-2.2.1/bin/gradle
To honour the JVM settings for this build a new JVM will be forked. Please consider using the daemon: http://gradle.org/docs/2.2.1/userguide/gradle_daemon.html.
Building project 'core' with Scala version 2.10.4
:clients:srcJar
:contrib:srcJar
:core:srcJar
:examples:srcJar
:contrib:hadoop-consumer:srcJar
:contrib:hadoop-producer:srcJar
BUILD SUCCESSFUL
Total time: 5 mins 3.677 secs
All the above information is available in following URI:
https://github.com/apache/kafka/tree/trunk
Monday, February 2, 2015
Scala - Scalable Language
Expression Oriented Coding
Concise and Expressive
Concise and Expressive
- Scala will cut down your written code up to 60%.
- Most of the design patters are build into the language. This will allow you to focus on the problem itself.
- Scala compile into Java bite code
- Scalable
- Resilient
- Responsive
- Event Driven
Subscribe to:
Posts (Atom)



