Posts

Showing posts from August, 2015

RamCharan movie Titled as “Brucelee”

Image
Mega Power Star Ram Charan’s next movie is titled Bruce Lee directed by sreenuvaitla. The actor himself confirmed the title in his official Facebook page. He also posted “couple of posters of the movie announcing the title will be release soon.” The movie comes with a tagline ‘Fighter’. Ace writer Gopi Mohan said “ This film is a complete entertainer with good Family Angle, Action& Comedy.  Ram Charan plays a character similar to Gangleader. heroine Rakulpreet is an attraction. Arunvijay,KritiKharbanda, Nadiya, RaoRamesh, Sampath, Brahmanandam, Posani are playing key roles.” The shooting of the movie is going on at brisk pace. Bruce Lee is planned for October 16th release as Dussehra Special.

Ex-Apple CEO Sculley's new firm preps stylish budget phones for Asia

Image
Obi Worldphone co-founder and former Apple CEO, John Sculley and Ammunition design founder Robert Brunner has challenged other smartphone OEMs by creating a mid-level, inexpensive international smartphone that offers an exciting design at a lower price point. The smartphones named as Obi Worldphone SF1 and SJ1.5 are both priced at $199 and $129 respectively. The company is targeting buyers above 25 years old and in the emerging markets of Asia, Africa and Middle East.  Both of the phones are said to be made available by October. Although it pack usual components like Qualcomm, MediaTek processor, Sony cameras, Corning Gorilla Glass and Dolby sound, but what makes Obi Worldphones different is its design. Both the Obi SF1 and SJ1.5 also run a custom version of Android designed by the company itself. Obi Worldphone believes that the large companies like Apple and Samsung are so big that they tend to move slower. While on the other hand the Obi Worldphones is a new startup, so

SharePoint 2013 - Get list items using REST

Here I demonstrated how to fetch items of a SharePoint list using Rest. Example code for REST: //get the title of the site var siteUrl = _spPageContextInfo.webAbsoluteUrl; //Ajax call to get data $.ajax({ url: siteUrl + "/_api/web/lists/getbytitle('Give Title of List Name')/items" , method: "GET" , headers: { "Accept" : "application/json; odata=verbose" }, success: function (data) { var listitems = data.d.results; // listitems.forEach(function (entry) { // $('#message').text(listitems["FirstName"]); // }); }, error: function (data) { alert( "Error" ) } });