সোমবার, ২০ জানুয়ারি, ২০১৪
বৃহস্পতিবার, ৯ জানুয়ারি, ২০১৪
How to get symphony as android debugger
http://www.hipatic.com/2012/08/chinese-android-debugging-how-to-use.html
মঙ্গলবার, ২৪ ডিসেম্বর, ২০১৩
git installation in centos
http://www.unixmen.com/how-to-install-latest-git-on-rhel-6-centos-6/
So you want to setup a GIT Repository for your developers on RHEL 6/CentOS 6, but notice Red Hat Enterprise
Linux 6 contains 1.7.1 in the repositories, which is well behind the current 1.8.3 that is available for GIT at http://git-scm.com.
Well no need to worry, it is easy enough to download and install the latest on a typical RHEL/CentOS installation.
First let’s download all the files that are required for GIT installation:
$ wget http://git-core.googlecode.com/files/git-1.8.3.4.tar.gz $ wget -O git-manpages-1.8.3.4.tar.gz http://code.google.com/p/git-core/downloads/detail?name=git-manpages-1.8.3.4.tar.gz&can=2&q=
Next, install all required libraries before building GIT:
$ sudo yum install zlib-devel perl-CPAN gettext
Now let’s untar and build and install GIT in the /usr directory:
$ tar xvfz git-1.8.3.4.tar.gz $ cd git-1.8.3.4 $ ./configure $ make $ sudo make prefix=/usr install $ git --version git version 1.8.3.4
That’s all you need and now you are ready to configure your repository for access and start developing!
Now if you want to update GIT you can do that using GIT itself:
$ git clone git://git.kernel.org/pub/scm/git/git.git
শনিবার, ১৬ নভেম্বর, ২০১৩
Advantage of @Repository stereotype in Spring
Advantage of @Repository stereotype in Spring
1. @Repository is also a @Component and thus you can use component scanning to automatically detect your @Repository annotated beans and register them in the ApplicationContext.
2. will get automatic exception translation not mere logging.
3. The exceptions for all persistence exceptions are converted to the consistent spring DataAccessException hierarchy so that you only need to handle 1 kind of exception even you use multiple strategies (often you mix hibernate/jpa with plain jdbc)
4. Need less configurable.
1. @Repository is also a @Component and thus you can use component scanning to automatically detect your @Repository annotated beans and register them in the ApplicationContext.
2. will get automatic exception translation not mere logging.
3. The exceptions for all persistence exceptions are converted to the consistent spring DataAccessException hierarchy so that you only need to handle 1 kind of exception even you use multiple strategies (often you mix hibernate/jpa with plain jdbc)
4. Need less configurable.
বুধবার, ৩১ জুলাই, ২০১৩
Replacement of jquery toggle
Use
var buttonLiveHelpClicks = true;
$("#buttonLiveHelp").click(function () {
if (buttonLiveHelpClicks) {
$("#buttonLiveHelp").hide();
buttonLiveHelpClicks = false;
} else {
$("#buttonLiveHelp").show();
buttonLiveHelpClicks = true;
}
});
instead of
$("#buttonLiveHelp").toggle();
সোমবার, ২২ এপ্রিল, ২০১৩
মঙ্গলবার, ৫ মার্চ, ২০১৩
এতে সদস্যতা:
মন্তব্যসমূহ (Atom)