Skip to main content

Posts

Showing posts from March, 2014

iOS 7.1 update starts rolling out

Yes. Its indeed a good news for Apple fans. iOS 7.1 update is now out. I have iPad Mini 2 (Retina Display) and I am now on the latest version.When I searched for software updates from settings menu, I got the below list of features/bug fixes, CarPlay iOS experience designed for the car Simply connect your iPhone to a CarPlay enabled vehicle Supports Phone, Music, Maps, Messages, and 3rd-party audio apps Control with Siri and the car's touchscreen, knobs, and buttons Siri  Manually control when Siri listens by holding down the home button while you speak and releasing it when you're done as an alternative to letting Siri automatically notice when you stop talking  New, more natural sounding male and female voices for Mandarin Chinese, UK English, Australian English, and Japanese iTunes Radio Search field above Featured Stations to easily create stations based on your favorite artist or song Buy albums with the tap of a button from Now Playing ...

Pratyaksha Hindi – The launch of the online e-Weekly

Most of you are already aware that Dattaguru Publications is publishing the magazine Krupasindhu in 4 languages, viz. Marathi, Hindi Gujarati and English. Now, Dattaguru Publications will now be publishing PRATYAKSHA as a e-weekly through arrangement with Lotus Publications Pvt. Ltd.  All the Shraddhavaans are aware that the Dainik Pratyaksha is now in its ninth year. This newspaper is published primarily in Marathi, and as a ‘non-political daily’, it not only provides news but, more importantly, educates the reader.  There has been a continuous flood of requests from Shraddhavaans from other parts of the country and abroad for making PRATYAKSHA available. It is in response to this very request Samirsinh Dattopadhye , in his address during the 2013 Aadiveshan, announced that very soon there will be Pratyaksha as an e-weekly in Hindi. You will be very happy to know that the inaugural issue of the e-weekly in Hindi will be publ...

Spring Data JPA + JSF + Maven + MySQL using Eclipse IDE - Simple Example to start with

I am in the process of learning Spring Data JPA and was trying a lot to use it with a JSF Web Application created as a Maven project through Eclipse . I was facing issues and ultimately getting Null Pointer Exceptions at many places. After searching the internet for a long time, still I could not find a simple example which will explain the use of two frameworks together i.e. Spring Data JPA and JSF .  But, one of my friends (Kunal Laud) helped me to overcome the issues. I thought of sharing the application here as a blog post. The example taken here is of Employee Management. 1) Create a database table first. Below is the query which I used, CREATE TABLE `Employee` (   `empid` int(11) NOT NULL AUTO_INCREMENT,   `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,   `address` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,   `age` int(3) DEFAULT NULL,   `salary` int(10) DEFAULT NULL,   PRIMARY KEY (`empid`) ) ENGINE=InnoDB ...