How to Pick Right Color for Web Development

10. February 2010
Choosing rights colors can be a very tedious task if you are not a professional web designer. Yet, being in web development, every other time or so we have to choose colors for our work and choosing right ones can make a huge difference in the overall impression of the work. To make life a bit easier, following color theory based articles can be u... [More]

Tips n Tricks

[Resolved] Cisvc.exe Takes High CPU Usage.

4. February 2010
Indexing Service ~ this service always has been a major resource hog. I NEVER recommend having this service enabled. Remove the function by the "Add / Remove Programs" icon in the control panel (Windows Setup Programs). It uses about 500 K to 2 MB in an idle state, not to mention the amount of memory and CPU resources it takes to INDEX the drives. ... [More]

Tips n Tricks

Google friend connect is not showing up when using firefox or chrome.. how to fix it?

10. January 2010
i was having same problem, and fixed it with this simple code which i added in Header.php file.   <script>window.JSON = { parse: function(st){  return st.evalJSON(); }, stringify: function(obj){  return Object.toJSON(obj); }};</script>

Tips n Tricks

How to add no follow rel for comments in wordpress ?

9. January 2010
You need to look at my code and edit your code accordingly, before that please read post carefully and create a backup of file functions.php 1.Open the functions.php file in ur current theme and put these code within php tags. What it will do: 1. Will add ‘no follow’ as rel in url , if comment contains any url. 2. Will ad ‘exter... [More]

Tips n Tricks

Wordpress Adding Welcome Note on home Page using is_home() Tag

9. January 2010
Some People want to have Welcome Note on home page, you need to use following code.   <?php if (is_home()) { // Main Page Top welcome Text echo " Add Your Welcome Note here"; // and now back to our regularly scheduled home page} ?>

Tips n Tricks

How to run Windows System File Checker ?

29. December 2009
System File Checker gives an administrator the ability to scan all protected files to verify their versions. If System File Checker discovers that a protected file has been overwritten, it retrieves the correct version of the file from the cache folder (%Systemroot%\System32\Dllcache) or the Windows installation source files, and th... [More]

Tips n Tricks

VBScript to Remotely Shutdown/Logoff/Reboot System

29. December 2009
Very important and Good Script for Network Administrators, it will simply asks you which system you want to Shutdown/Logoff/Reboot and what you want to do? Like it will ask you to choose an option from following: 1.       logoff 2.       FORCE logoff 3.     ... [More]

Tips n Tricks

VB Script to Create List of Files of any Folder.

27. December 2009
Yes, this is really good tool, as sometime you need this tool to give instructions to other person on code files, or you need to give list of files. This code is customized code and will ask you to browse folder, Once Folder selected it will create text file in that folder. Moreover you need to remove line filelist.txt from File "filelist.txt" ava... [More]

Tips n Tricks

ERROR 1335 The Cabinet file ‘Data1.cab’ is corrupt

2. November 2009
If you are facing this dreadful 1335 problem with your Windows Server 2008 or VISTA operation system during installation, try following: Start -> Run –> cmd Then type in: msiexec /unregister (press enter) msiexec /regserver (press enter) Now install that program again without firewall or virus programs turned on or runn... [More]

Tips n Tricks

Display Fancy Status Message using JQuery

23. October 2009
Recently in one of our projects, we needed to display fancy status alerts as shown below:   Instead of re-inventing the wheel, we leveraged very nicely written article from west-wind. Sharing its link below for others to benefit as well.   How to show fancy status messages using JQuery

Tips n Tricks

How to embed PDF files and PowerPoint presentations in a web page

10. September 2009
There is an undocumented feature in Google Docs that lets you embed PDF files and PowerPoint presentations in a web page. The files don't have to be uploaded to Google Docs, but they need to be available online. Here is how to do it: <iframe src="http://docs.google.com/gview?url= http://infolab.stanford.edu/pub/... [More]

Tips n Tricks

How to fix MBR? Error loading operating system!!!

17. August 2009
If, for any reason, the MBR becomes damaged or corrupt, then the operating system will be unable to load. You will normally see error messages like: Error loading operating system Missing operating system Invalid partition table These messages are definitely not fun, especially if you are not familiar with computers. Most people ... [More]

Tips n Tricks

How to Move iTunes Music Directory to a New Drive

5. June 2009
Sometimes migration work needs more intensive work and data loss … :(  I recently ran out of room on my internal 160 GB harddrive, mainly due to my mp3 collection. All told, I have over 100 GB of music, and I buy more all the time. Couple that with video and my digital pictures, and I'm totally out of space. To solve the problem, I decided to ... [More]

Tips n Tricks, How To

How to automatically logoff RDP session when disconnected ?

5. June 2009
  While using Remote Desktop Connection mostly users forgot  to logoff when they end a session. Instead they simply close the window, leaving their session running on the server. This orphaned session becomes a problem in many cases because Windows Servers are typically only licensed for two simultaneous logged in users. Even worse, if yo... [More]

How To, Tips n Tricks

FTP AUTOMATED TRANSFERS

31. May 2009
To add to the earlier tip on automated transfer using FTP, you can define a macro by name 'init' which will automate the whole transfer. Defining the macro. In the .netrc file after the definition for the machine name,add the following definition. macdef init bin hash cd <directory> !cd <directory> put/g... [More]

Tips n Tricks