|
Written by Sleepy Egg
|
|
Sunday, 03 July 2005 |
|
NVidia GeForce and TNT2 Driver:
Version: 77.72
Release Date: June 22, 2005
WHQL Certified
Windows 9x/ME - Download |
|
|
Written by Sleepy Egg
|
|
Sunday, 03 July 2005 |
|
NVidia GeForce and TNT2 Driver:
Version: 77.72
Release Date: June 22, 2005
WHQL Certified
Windows NT (SP6) - Download |
|
|
Written by Sleepy Egg
|
|
Sunday, 03 July 2005 |
|
NVidia GeForce and TNT2 Driver:
Version: 77.72
Release Date: June 22, 2005
WHQL Certified
Windows XP Media Center Edition 2004/2005 - Download |
|
|
Written by Sleepy Egg
|
|
Sunday, 03 July 2005 |
|
NVidia GeForce and TNT2 Driver:
Version: 77.72
Release Date: June 22, 2005
WHQL Certified
Windows XP/2000 - Download |
|
|
Written by Sleepy Egg
|
|
Thursday, 30 June 2005 |
|
For any issue or question about this website please send email to:
This e-mail address is being protected from spam bots, you need JavaScript enabled to view it
';
document.write( '' );
document.write( addy_text15914 );
document.write( '<\/a>' );
//-->\n This e-mail address is being protected from spam bots, you need JavaScript enabled to view it
|
|
|
Written by Sleepy Egg
|
|
Thursday, 30 June 2005 |
|
Click Defense Inc, a click fraud protection firm, filed the suit in California in the name of an unknown number of plaintiffs for an amount more than $5 million. The lawsuit was filed in US District Court against Google alleging breach of negligence, contract, unjust enrichment, and unfair business practices involving charges of click fraud. |
|
|
Written by Sleepy Egg
|
|
Tuesday, 28 June 2005 |
|
1. Create plug-in when u want to reuse your goals
2. Override a goal by creating goal with the same name.
3. Use IDE plug-in (example: Jbuilder-plugin) to generate IDE project files.
4. Use maven.xml to create goals (Not a tip [:))'> )
5. Use Mevenide to integrate Maven into IDEs.
6. ... no more. Will focus on Jelly and maven.xml next time. |
|
|
Written by Sleepy Egg
|
|
Tuesday, 28 June 2005 |
|
Will the hydrogen fuel cells, electric motors and alternative fuels be the future of personal transportation? Although major car makers are researching on these technologies, they stated that fuel cell powered motor vehicles will not be publicly used before the year of 2050. |
|
|
Written by Sleepy Egg
|
|
Monday, 27 June 2005 |
|
Software development is like building a component using other components. Managing dependencies between component become very important. Maven repository makes component management simple. The idea is that where is a list of remote components. Whenever you need any thing (dependent), Maven gets it from remote repository and place it in your local repository. When u are ready to release the component you are working on, just deploy it, Maven will upload it to the remote repository.
more one repository : http://maven.apache.org/using/repositories.html |
|
|
Written by Sleepy Egg
|
|
Monday, 27 June 2005 |
|
dbcp is an implementation of Java connection pooling. This uses the common-pooling API. You can implement a generice Database class to wrap both JDBC connection pooling using dbcp and datasource looking using JNDI. Once this is done, you don't have to care about how it gets the connection from.
example:
for connection pooling using dbcp :
http://cvs.apache.org/viewcvs.cgi/jakarta-commons/dbcp/doc/BasicDataSourceExample.java?rev=1.2&view=markup
BasicDataSource ds = new BasicDataSource();
ds.setDriverClassName("oracle.jdbc.driver.OracleDriver");
ds.setUsername("scott");
ds.setPassword("tiger");
ds.setUrl(connectURI);
return ds;
BasiceDataSource is a subclass of DataSource.
So doesn't matter if it is from JNDI lookup or from dbcp, cache it. The only method you need to implement is getConnection(), which get connection from the datasource. |
|
|
<< Start < Prev 151 152 153 154 155 Next > End >>
|
| Results 1521 - 1530 of 1548 |