Wednesday, June 17, 2015

Do you have a digital marketing strategy ?

So you’ve opened up a new business that caters to a particular necessity that you feel confident everyone needs. You’ve done your due diligence with social media marketing: you have got plenty of likes on Facebook, instituted multiple links on the web, and tweet to your followers every day. Yet you wonder why your business has not grown yet. I mean you have done everything, right? You are reaching out to the digital world, but you are remiss at an actual digital marketing strategy.

Thursday, January 22, 2015

Use WhatsApp on the Web [ browser] officially.


On 21st of January,2015 whats app declared the use of whatsapp officially . below is the snippet from official whats app blog about the same.

The news came after the news that whats app is banning the users who use third party software's.

"Today, for the first time, millions of you will have the ability to use WhatsApp on your web browser. Our web client is simply an extension of your phone: the web browser mirrors conversations and messages from your

WhatsApp bans users for using third-party apps like Whats App +

Popular mobile messaging service WhatsApp is banning users who install and use WhatsApp Plus, a third-party Android app that offers access to the service along with some additional features.


WhatsApp is banning users for 24 hours and returning an error message informing them that they have violated its terms of service.

The messaging service has also posted the reason for the ban on its website's FAQ section. "WhatsApp Plus is an application that was not developed by WhatsApp, nor is it authorized by WhatsApp. The developers of WhatsApp Plus have no relationship to WhatsApp

Friday, November 21, 2014

Mozilla and Google 10 years ties split as Mozilla Joins Yahoo.

After long awaited decision of Mozilla foundation to leave google and make yahoo as thier default
search engine is now official as from this december mozilla will change from google.com to yahoo.com as thier default search engine.

The tie between google and mozilla were laid in the year 2005 when mozilla was launched, then in year 2008 google launched  Today's most used webs browser chrome.

Sunday, October 5, 2014

.bharat domain launched: AN BRILLIANT START

 The government has launched the .bharat domain name in devanagari script covering eight languages including Hindi, Konkani and Marathi.


With the launch, individuals of companies who are interested in owning a website with domain name in Hindi language would be able to book the name in Hindi script.

The name would have '.bharat' in Hindi script as its extension instead of commonly top level domains such as .com, .net or .in.


This is truly a Indian's pride and honour to have this domain name , This is the first domain name system which is fully IDN till date you are getting domain name in IDN and extension in english like योगा.com  but  in  .भारत you will get extension also in your native language like योगा.भारत (Devanagari Lipi- Hindi, Bodo(Boro), Dogri, Konkani, Maithili, Marathi, Nepali and Sindhi) Or યોગા.ભારત (in Gujarati). Currently  .भारत is available in seven Indian languages mainly in Devanagari (Hindi and seven others mentioned above), Bangla, Telgu, Gujarati, Urdu, Tamil and Gurumukhi (Punjabi) and later on other Indian languages will be added to this list.

BUILD YOUR WEBSITE FROM EAMZENITH ONLY AT 3500/- : CLICK HERE


For more info visit:

Windows 10 released : A comprehensive addition Of features of Windows 7 and 8


At a press event on Tuesday, Microsoft launched the next version of Windows: Not Windows One, not Windows 9, but Windows 10, which combines the reborn Start menu with Windows 8’s colorful live tiles and adjusts its behavior depending on how you’re using your device.                                                                                                                                It's an comprehensive merge of windows 7 and 8 which shall attract new buyers for the company. since it will focus on enterprise soloution than you can expect new market share for microsoft with whole new range of oppurtunities.

Thursday, August 22, 2013

Introduction to jsp:- All basic know-how of jsp

JavaServer Pages technology allows Web developers and designers to rapidly develop and easily maintain, information-rich, dynamic Web pages that leverage existing business systems. As part of the Java family, JSP technology enables rapid development of Web-based applications that are platform independent. JavaServer Pages technology separates the user interface from content generation enabling designers to change the overall page layout without altering the underlying dynamic content.(Sun)
  • Used to build dynamic web pages
  • Server side scripting language
  • Platform independent
  • Technologically more advanced than ASP
  • Text files that are a mix of HTML and Java code
  • Jsp stands for “Java server page”.
  • JSP are built by SUN Microsystem.
  • JSP enable the developers to directly insert java code into jsp file, this makes the development process very simple and its maintenance also becomes very easy.
  • JSP simply place JAVA inside the HTML pages means it’s an embedded of html tag and jsp’s own tag.
  • The extension of jsp page is ".jsp"
  • Java is known for its characteristic of "write once, run anywhere." and JSP page is a combination of java code into html file so we can say that the JSP pages are platform independent means .jsp pages can run in any platform.

Basic Lesson 1- Getting Familiar with your JSP server

If you do not have a JSP capable web-server or application server, the first step is to download one.  There are many such servers available, most of which can be downloaded for free evaluation and/or development.  Some of them are:
Blazix from Desiderata Software (1.5 Megabytes, JSP, Servlets and EJBs)
TomCat from Apache (Approx 6 Megabytes)
WebLogic from BEA Systems (Approx 40 Megabytes, JSP, Servlets and EJBs)
WebSphere from IBM (Approx 100 Megabytes, JSP, Servlets and EJBs)
To take the best advantage of this tutorial, it recommended that all the material should be tried out with a real server.

Basic lesson 2:-Your first JSP hello world program

JSP simply puts Java inside HTML pages.  You can take any existing HTML page and change its extension to ".jsp" instead of ".html".  In fact, this is the perfect exercise for your first JSP.
Take the HTML file you used in the previous exercise.  Change its extension from ".html" to ".jsp".  Now load the new file, with the ".jsp" extension, in your browser.
You will see the same output, but it will take longer!  But only the first time.  If you reload it again, it will load normally.

Basic lesson 3:-Adding dynamic content via expressions in jsp

As we saw in the previous section, any HTML file can be turned into a JSP file by changing its extension to .jsp.  Of course, what makes JSP useful is the ability to embed Java.  Put the following text in a file with .jsp extension (let us call it hello.jsp), place it in your JSP directory, and view it in a browser.
<HTML>
<BODY>
Hello!  The time is now <%= new java.util.Date() %>
</BODY>
</HTML>