| Author |
Message |
|
|
KPMRS is a website rank monitoring SEO tool for free. It tracks your website positions for keywords phrases for a specific URL on Google, Yahoo, Bing and provides a nice report of your site's rankings over time
http://www.kpmrs.com/
|
 |
|
|
Check your web popularity, rankings and more
http://www.urlmetrix.com/
igs up all possible social media mentions about your site on Twitter, Friend Feed, Youtube, Myspace, Flickr, Yahoo Answers, Digg, Delicious, Furl and Reddit
http://sitemention.com/
Help you find the frequency of mentions abut a particular keyword on social media sites like Digg, Twitter, Flickr, Youtube etc, and make comparison charts, giving you idea about what content is popular on each site.
http://sitevolume.com/
|
 |
|
|
|
http://en.pageboss.com/
|
 |
|
|
The funded has posted a term sheet for first round .
Thanks to tech crunch for news
http://www.techcrunch.com/2009/08/23/the-funded-publishes-ideal-first-round-term-sheet/
|
 |
|
|
This is a good website to help you in the selection of the domain names
https://domize.com/
|
 |
|
|
Google recently upgraded their Insights for Search tool to include predicted keyword search volumes as well as interactive maps of how keyword search volume changes over time
Read it here
Google Keyword Predictions
|
 |
|
|
SEOMOz blog posted a very useful article on importance of canonical url.
I am not using it yet but will start using it as the benefits are obvious.
You can read the details here
http://www.seomoz.org/blog/canonical-url-tag-the-most-important-advancement-in-seo-practices-since-sitemaps
|
 |
|
|
There are some other keyword tools which can also be helpful
Wordtracker Free keyword tool
|
 |
|
|
Neil Patel is well knwo blogger and an successful entrepreneur . He had published a very useful post for first time entrepreneur's
http://www.quicksprout.com/2009/05/10/the-internet-entrepreneurs-handbook-%E2%80%93-54-resources-for-first-time-entrepreneurs/
You can find read Neil's blog here http://www.quicksprout.com
|
 |
|
|
Look what the world is searching for.
Will give you an idea of most searched terms. Explore global search or region wise.
http://www.google.com/insights/search/#
|
 |
|
|
WAT blog has published an excellent article on VC's perspective of Indian startup space. Ritesh Banglani from IDG Ventures India shares his views
http://www.watblog.com/2009/06/10/venture-capital-beliefs-views-on-indian-internet-space-must-read-for-online-startups/
|
 |
|
|
Morphues Venture Partners in India have launched a program similar to Ycombinator and have launched 10 portfolio companies.
http://www.watblog.com/2009/08/17/morpheus-venture-partners-announces-10-new-portfolio-companies/
|
 |
|
|
Use this tool to explore keywords for your site.
https://adwords.google.com/select/KeywordToolExternal
|
 |
|
|
Hi All,
Following link has a good Hibernate tutorial using Eclipse.
http://www.skill-guru.com/blog/2009/08/05/first-hibernate-tutorial-%e2%80%93get-hands-on-experience/
|
 |
|
|
Simple JSP/Servlet Tutorials for Beginners
The prerequisites for the JSP are:
HTML. : You should be able to use and put tags together HTML pages.
Java: You should be able to program in Java. Basic syntax and logic
To create and run a jsp page ,we need -
• Some editor like editplus/notepad or eclipse
• JSPs are server side components so we need a web server to run the component.eg- tomcat,sun webserver or application server weblogic,jboss etc
Steps to create and run a jsp page
Once you have a JSP capable web-server or application server, you need to know the following information about it:
1. How to create a JSP file
2. Where to place the files on the server
3. How to access the files from your browser (with an http: prefix, not as file: )
1- simples JSP page cud be a html page saved with .jsp extension, such as
<HTML>
<BODY>
Hello, world
</BODY>
</HTML>
As soon as we save a file with Test.jsp extension it requires a server to run it.
(Considering that Tomcat setup is already completed in our last setup tutorial.)
2- Put all ur JSP inside
C:\apache-tomcat-6.0.16\apache-tomcat-6.0.16\webapps\PNBIIT_Projects\Test.jsp
Note: steps may be different for each web-server, you would need to see the web-server documentation to find out how this is done.
3- Start the server –
Click on the start button of tomcat on eclipse toolbar. OR Open manually from tomcat\bin\start.bat
4- Open a browser ,check for tomcat home page and then type http://localhost:8080/PNBIIT_Projects/Test.jsp ,u will see the hello page without any error.
Life cycle of JSP Page:
How the above application is compiled and running on server is basic lifecycle of the JSP page.
Test.jsp ->generated servlet class file .java for JSP page (See details from http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/JSPIntro4.html) -> compilation of servlet and generation of .class file -> interpreted by server -> result on browser
Adding dynamic content via expressions
The above jsp file is not having any feature of JSP ,that’s a true html code.
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 java code line 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>
Notice that each time you reload the page in the browser, it comes up with the current time.
The character sequences <%= and %> enclose Java expressions, which are evaluated at run time.
This is what makes it possible to use JSP to generate dyamic HTML pages that change in response to user actions or vary from user to user.
ASSIGNMENT:0
Write a JSP to output the values returned by System.getProperty for various system properties such as java.version, java.home, os.name, user.name, user.home, user.dir etc.
SERVLETS
Servlets are modules of Java code that run in a server application (hence the name "Servlets", similar to "Applets" on the client side) to answer client requests.
Writing the first servlet code
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class HelloServlet extends HttpServlet
{
protected void doGet(HttpServletRequest req,
HttpServletResponse res)
throws ServletException, IOException
{
res.setContentType("text/html");
PrintWriter out = res.getWriter();
out.println("<HTML><HEAD><TITLE>Hello Client!</TITLE>"+
"</HEAD><BODY>Hello !</BODY></HTML>");
out.close();
}
public String getServletInfo()
{
return "Hello by etattva,US";
}
}
Create and run your own Servlet
• Save the above file with .java (Hello.java) anywhere.compile it and
• Move the resulting .class file to TOMCAT/webapps/examples/WEB-INF/classes.
• (Instead of using the %TOMCAT_HOME%/webapps/examples/WEB-INF/classes directory, we could have created an entirely new web app. That would have required adding web.xml file inside the web-apps. Had we done that, we would have had to restart Tomcat. To restart Tomcat, call shutdown and then startup again in the Command Prompt window in which we had originally started Tomcat.)
• In a brower, access, http://localhost:8080/examples/servlet/HelloWorld. Your servlet will run.
|
 |
|
|