• Spring MVC configuration Tutorial

    While recently initiating a project using Spring MVC, we ware trying to discover some technical know how’s. We were doing that at random but one of my friend and college Abdullah Al Hasib made a skeleton project where almost all start-up issues are solved. He also made a documentation for us which further edited by Sheikh…

  • How to move transparent photoshop object to illustrator

    It’s been a problem to move photoshop transparent objects to illustrator. It’s because when you move the object to illustrator, it fills transparent portions with white color. So to avoid the problem just select your object to another transparent file in photoshop and save it as .psd file. Then simply just open it with illustrator.…

  • Change default username and/or password of phpMyAdmin in xampp

    If you want to change  default username and/or password of your xampp for any reason like my one(Using different mySql already installed in my machine ).  You simply do the following. 1. Open phpMyAdmin’s config file. In my case I’am using xampp-1.7.4 the config file named config.inc.php in ../xampp/phpMyAdmin/. 2. Check if $cfg[‘Servers’][$i][‘auth_type’] = ‘config’ if it’s not ‘config’…

  • Spring : Understanding Dependency Injection

  • Introduction to Spring Web MVC

    This document shows you how to construct a simple web MVC application using the Spring Framework. The application enables a user to enter her name in a text field, and upon clicking OK, the name is returned and displayed on a second page with a welcome greeting. The Spring Framework is a popular open source application framework that…

  • 9 Things That Motivate Employees More Than Money

    Don’t show ’em the money (even if you have it). Here are nine better ways to boost morale. The ability to motivate employees is one of the greatest skills an entrepreneur can possess. Two years ago, I realized I didn’t have this skill. So I hired a CEO who did. Josh had 12 years in…

  • S60 View Architecture with UI Design For Symbian OS

    Overview This example shows how to develop S60 UI applications similar to the native “Settings” application available on every S60 device. This application was chosen because it has different views and uses tabs and a main view to switch between them. The example is based on the S60 UI view architecture. The article discusses the…

  • Read a .txt file in Symbian

    If you want to read a file and display that on alert screen the following code snippet will do that for you. TBuf8<128> rcvr; TBuf<128> tDsply; RFs fSessionRd; User::LeaveIfError(fSessionRd.Connect()); RFile fileRd; TInt retRd=fileRd.Open(fSessionRd, _L(“C:\\testFile.txt”), EFileRead); if(!retRd){ fileRd.Read(rcvr); tDsply.Copy(rcvr); iEikonEnv->AlertWin(tDsply); }

  • How to write file in Symbian

    At first you have to include #include Which links against efsrv.lib Then try the code snippet

  • How does Google do a barrel roll?

    By now you’ve probably seen Google “do a barrel roll”. If you haven’t, head over to google.com and enter “Do a barrel roll”. What? You’re using IE? Ok, well then no tricks for you. I suggest Chrome. For the rest of us, Google’s page does a nice little in-place spin. When you saw it you…