Tuesday, December 27, 2005
Monday, December 26, 2005
at the end of 1st anniversary of tsunami
Sunday, December 25, 2005
Sunday, December 18, 2005
GPU Gems 2 CD
Friday, December 16, 2005
Thursday, December 15, 2005
IOL: Cloning pioneer 'admitted faking stem cells'
check: http://breakingnews.iol.ie/news/story.asp?j=71031608&p=7yx3y9yx and http://news.bbc.co.uk/2/hi/asia-pacific/4532128.stm
.... really makes me wonder how do we believe scientific results appearing in reputed journals like Science!!
its also painful to know that many are more interested in publicity than real science to help in prosperity of human society.
i hope every one of us have some positives to learn from such incidences, be candid in what we do and accept mistakes if done; before someone points a fingure at u :)
.... really makes me wonder how do we believe scientific results appearing in reputed journals like Science!!
its also painful to know that many are more interested in publicity than real science to help in prosperity of human society.
i hope every one of us have some positives to learn from such incidences, be candid in what we do and accept mistakes if done; before someone points a fingure at u :)
Friday, December 02, 2005
Sunday, November 06, 2005
GDS as a Version Control System
the caching ability of GDS (goodle desktop search) can be effectively used to a VCS, and this is what is exactly done by this plugin. no need for any expensive solutions!
9101 -- /News
... this is supposed to be the first ever HTML page created by Tim Berners-Lee 15 years ago, and the internet was born. Here is a lookback .... 15 years looks like it has been ages ;)
Friday, October 28, 2005
marking a link for me ;) on java2d: http://java.sun.com/developer/technicalArticles/GUI/java2d/java2dpart2.html
Tuesday, October 25, 2005
a simple jvm launcher
ever wanted to have more memory available with jvm, but didn't want to write platform dependent shell script or .bat files? here is a sampler, it spawns a new vm with more memory from the class file, which can be packed as a jar (you need jdk 1.5 for this code):
import javax.swing.*;
public class Hello {
public static void main(String [] args) {
if (args.length == 0) {
try {
System.out.println("I now have : " + Runtime.getRuntime().maxMemory());
Process p = new ProcessBuilder("java", "-Xmx256m", "Hello", "memory").start();
} catch(Exception e) {
e.printStackTrace();
}
} else {
JFrame f = new JFrame("Hi! I have more memory!: " + Runtime.getRuntime().maxMemory());
f.setVisible(true);
} // end if
}
}
Tuesday, October 18, 2005
know about the cyber laws of india
Check this site for a comprehensive info. on cyberlaws in india. ... we need the laws only if harm the society, otherwise what is their purpose? ;)
8086 Microprocessor Emulator with Integrated 8086 Assembler
8086 Microprocessor Emulator with Integrated 8086 Assembler ... a good tool to learn assembly ... w/o harming your machine!
Sunday, October 16, 2005
PyCite 1.0
is a small script written by me to convert citations to various Journal formats... wrote it because got really bugged up doing that manually!
You can get the code from: http://v-ganesh.tripod.com/mySoftwareNew.html
You can get the code from: http://v-ganesh.tripod.com/mySoftwareNew.html
Saturday, October 15, 2005
break: A Comparison of Solaris, Linux, and FreeBSD Kernels at OpenSolaris.org
A Comparison of Solaris, Linux, and FreeBSD Kernels at OpenSolaris.org: " and debugging tools are critical to get a correct understanding of system behavior. Yes, you can read the source code, but I maintain that you can easily misread the code. Having tools available to test your hypothesis about how the code works is invaluable. In this respect, I see Solaris with kmdb, mdb, and DTrace as a clear winner. I have been 'reverse engineering' Solaris for years. I find that I can usually answer a question by using the tools faster than I can answer the same question by reading source code. With Linux, I don't have as much choice for this. FreeBSD allows use of gdb on kernel crash dumps. gdb can set breakpoints, single step, and examine and modify data and "
Subscribe to:
Posts (Atom)