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
▼
Create, configure maven project in eclipse - example tutorial
›
In this post, the followings are covered : Download and Install maven in windows: Add M2_REPO classpath variable in eclipse Generate Ja...
Reading contents of unix ext partitions from windows
›
How to read / browse / copy files from linux ext partitions from windows? Do you ever want to copy files from your unix ext partition from...
Most Popular English Movies
›
Here is the list of best and popular movies that I have watched. They are definitely good : inspiring and entertaining. A beautiful min...
1 comment:
Drawing Chess Game Board in Java - Source Code
›
Source code for Chess Game Board in Java : public class ChessGUI extends JFrame { private Board board; private ChessGUI() { ...
java read content of web page
›
The following example use easier method to read String from InputStream in Java . It uses java.util.Scanner. It will be easy/efficient to re...
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....
‹
›
Home
View web version