- We went in underprepared, unpracticed and did badly, to not even land in the top 14, but then when we saw the teams around us we came to know that the overall level of the participants in this contest is coverable. Say a four-five months of practice at Topcoder can see an average programmar through.
- Surprisingly, the teams were as prepared as we were as many of them did not know the rules and the working. So if we had comeprepared, not really giving up all the time for TGMC, maybe we might have landed somewhere.
- The questions as in the main event had a few standard ones and a few tricky ones. But the main point was, even the world finalist team that won the contest did not need to do the tricky questions and indeed the standard ones done quickly enough saw them through.
- Previous world champ sites and all do scare a lot but for Indians planning forward, there is nothing to be scared, yes the contest will be tough but the main point is that, the teams won't be two three years of practice ahead of you, at max two months. So it is indeed coverable.
Long time of no posts. It has been a busy december. Have lots to talk but do not know about the time to write enough stuff. Lets see how this year fares..... after a seccuessful 08, for both of us. I wish all readers:
try {
con = DriverManager.getConnection("jdbc:odbc:dsn", "system", "hr");
cs=con.prepareCall("{call newteacherid(?,?,?)}");
cs.setString(1,teacherid.getText());
cs.setString(2,teacherid.getText());
cs.setInt(3,1);
cs.execute();
System.out.println("dfasfgasrg");
}
catch (SQLException ex) {
JOptionPane.showMessageDialog(null,"Invalid teacher ID","Error",JOptionPane.ERROR_MESSAGE );
Logger.getLogger(Administrator.class.getName()).log(Level.SEVERE, null, ex);
}
import java.awt.*;
class ScreenRes {
public static void main(String args[]) {
new ScreenRes().doit();
}
public void doit() {
Frame frame = new Frame();
GraphicsDevice device;
device =
GraphicsEnvironment.
getLocalGraphicsEnvironment().
getDefaultScreenDevice();
if ( device.isFullScreenSupported() ) {
device.setFullScreenWindow(frame);
if (device.isDisplayChangeSupported()) {
device.setDisplayMode(
new DisplayMode( 0,0,
8, // bitDepth - 8 bits 256 colors
DisplayMode.REFRESH_RATE_UNKNOWN ));
}
else {
System.err.println("Change display mode not supported");
}
}
else {
System.err.println("Full screen not supported");
}
}
}


