Skip to content

Instantly share code, notes, and snippets.

View gkrishnan's full-sized avatar

Gopi Krishnan Nambiar gkrishnan

  • @MetaMind,Georgia Institute of Technology
  • San Francisco, CA
View GitHub Profile
@gkrishnan
gkrishnan / TwitterStatus.java
Created August 29, 2012 11:27
Servlet to get the status of a Twitter user
package com.intuit.txtweb.server.example.twitter;
import java.io.IOException;
import java.io.PrintWriter;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
@gkrishnan
gkrishnan / HelloTxtWebLocationServlet.java
Created August 28, 2012 18:48
A simple servlet which uses txtWeb's location API and extracts, prints it
package com.txtweb.examples.hellotxtweblocation;
import java.io.IOException;
import java.io.PrintWriter;
import java.net.URL;
import java.net.URLEncoder;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.servlet.http.HttpServlet;
@gkrishnan
gkrishnan / test.html
Created August 7, 2012 15:59 — forked from anonymous/test.html
test file
<html>
<body>
<p> hello txtWeb </p>
</body>
</html>