GT's Blog
Code snippets, technical articles, tips on computing and programming...
Pages
(Move to ...)
Type in Nepali Unicode Romanized - Convert Roman Nepali to Unicode Tool
▼
Deploying .war file to Apache Tomcat Server : Working way
›
Here i am going to describe the [MANUAL]working way to deploy your .war(web application archive) file to the Apache Tomcat Server. Suppose ...
1 comment:
hibernate show sql & parameter to console
›
You need to configure it 2 places : 1) Configuration in log4j logger : add following lines in - log4j.properties file : log4j . logg...
java escape html string - code
›
1) StringEscapeUtils from Apache Commons Lang : import static org . apache . commons . lang . StringEscapeUtils . escapeHtml ; // ...
Selection sort C C++ source code
›
Selection sort C C++ source code //selection sort #include <iostream.h> void selectionSort(int *array,int length)//selection sort fun...
Java iterate through map, hashmap - working source code
›
Iterating through Map in Java - working efficient source code Map<String, Object> map = ...; The solution uses map.keySet(), map....
Text Prompted Remote Speaker Authentication : Joint Speech and Speaker Recognition/Verification System :: Major Project ::: Introduction
›
Biometrics is, in the simplest definition, something you are. It is a physical characteristic unique to each individual such as fingerprint,...
10 comments:
java calculate method run time
›
long startTime = System . currentTimeMillis (); doReallyLongThing (); // call your method here long endTime = System . currentTimeMi...
SQL basics- complete reference guide - part8 SQL System Commands
›
Part8: SQL System Commands Reference guide TOPIC TEXT SYNTAX Example ARRAY_GET Returns one element of an array. ARRAY_GET(arrayExpres...
SQL basics- complete reference guide - part7 - Date Time Functions
›
Part7: SQL Date Time Functions Reference TOPIC TEXT SYNTAX Example CURRENT_DATE Returns the current date. { CURRENT_DATE [ () ] | CUR...
Java Capture/save image from swing Component eg : JFrame JPanel ..
›
Capture image from any swing Component and save to file. Capture : BufferedImage image = new BufferedImage(component.getWidth(), ...
‹
›
Home
View web version