May 30, 2008

HTTP sniffing

Sometimes you may wonder what happens between a web server and your browser. These are some useful tools to keep an eye on the traffic.

Free ones:
Fiddler(IE specific)
Firebug(not truly a http sniffer but is useful)

Commercial ones:
Httpwatch
Wireshark



May 29, 2008

CouchSurfing

Recently a good friend mentioned about it, seems interesting...


CouchSurfing is a worldwide network for making connections between travelers and the local communities they visit.



May 27, 2008

ORA-03115: Unsupported network datatype or representation

While duelling with Java sql and preparedstatement I got this error.

This was due to using the query both in initiating prepared statement and while executing it.
The solution is to omit the query parameter from executeQuery

Connection conn = DriverManager.getConnection ("jdbc:oracle:thin:@localhost:1521:xe", "Birrah", "String sqlQuery = "SELECT x, y, z VIEWgup where dt > ?";
PreparedStatement ptmt = conn.prepareStatement(sqlQuery);
ptmt.setDate(1, new java.sql.Date(sonTarih.getMillis()));
ResultSet rset = ptmt.executeQuery (sqlQuery);
//this executequery statement above should be called woth no parameters.

May 25, 2008

Torrent search?

Cubit is a system that provides fully decentralized
approximate keyword search capabilities to Azureus as a standard
plugin. Approximate search means that you can use Cubit to find a movie,
song or artist even if you don't know which spelling variation is used in
the title or in her name.
It gives you what you mean instead of what you asked for exactly, and
returns the best results in the network in only a few seconds.

Synergy is a great software for sharing a single a single mouse and keyboard across multiple computers.


http://www.cs.cornell.edu/~bwong/cubit/

May 17, 2008

Sharing a single mouse and keyboard across multiple computers

Synergy is a great software for sharing a single a single mouse and keyboard across multiple computers.

The configuration is a bit tricky though.

http://synergy2.sourceforge.net/