Best Wireframe & Mockup Tools

Wire frame is very important part of create mockup of websites, normally user use pencil and paper or Photoshop to create a mock-up. However, in recent years, there are a lot of websites that allow designers to create prototypes, wire frames or sitemaps in finger point.

Gliffy’s intuitive drag-and-drop interface combines the power of traditional desktop software with the lightweight, low learning curve and flexible features of today’s most popular browser-based applications.

Continue reading …

Chatwing: The Effective Tool for Global Connectivity

Due to technological innovations available now, information relay has become easier than before. Connecting to people at the other end of the world is just a few clicks away. Information travels fast and questions are easily answered. Communication is one of the key factors in the society’s development. Business relies on communication. Transactions and marketing efforts are all about communicating the right message to the right target market with the use of effective medium. Online, installing a reliable communication tool will provide your website an edge over the competition.

Continue reading …

Important Social Plugins of Facebook

Now social media is playing very important role in business, Now days company is using social media for product launching.The user can review product ans register his complain as well with help of social media.
The Facebook is very important social media.

Like Button:

Clicking the Like button also publishes an Open Graph Like action, and displays stories on that person’s timeline and their friends’ News Feeds. This story will link back to the site and drive distribution of content.
Continue reading …

Simple Hello Example

Hi friends, in this tutorial i will describe simple hello example in Perl.Perl is very simple programming language and easy to use.
in the below script first line tells the script compiler and second line tells the response content of script.Third line contains the ‘print’ constructor which is use to print variable in Perl.

1
2
3
4
5
#!C:/Perl/bin/perl.exe
print "Content-Type: text/html; charset=iso-8859-1\n\n";
print "Hello World";

Best Cross Platform Mobile Tools

Mobile application industires is going to rapid way,so basic need of all application must be run on desktop browser as well as mobile devices.The devices may be varry based on plateform,orientation and size of device screen.

1-jQuery Mobile: jQuery Mobile is aa HTML5-based user interface system for mobile device platforms, built on the jQuery and jQuery UI foundation.
jquery
Continue reading …

How To Set Up A Proxy In Your Browser

I will tell you how to set proxy ip on Mozilla. Its very simple some steps process to set proxy.This tutorial guides you how to set up your browser to work with an (anonymous) HTTP proxy server. The proxy address along with the port number sample are below:

192.12.XX.XXX:8080

The address is “192.12.XX.XXX”. The port is the part behind the colon, 8080″.

Continue reading …

Coding Guidelines for the Developer During Development

There are some of the guidelines for the developers to assist do’s and don’ts during the coding practices.
This is by no mean a complete coverage of the Guidelines; there are other standard as well which can’t be covered in this Document.

1)Do use the Transactions in long running queries and many small-small queries

If there is expected a long running transactions and expecting large records output, developer should always use the transactions within the BEGIN TRAN and END TRAN.
This way transaction holds itself a place in buffer cache for individual transactions and memory is specifically assigned to it making a faster processing.
Continue reading …

How To Check Page Speed

Below tutorial described how to check page speed of your blog/website.
Following steps tell you how to install & use Page Speed addOns.

Step-1: Install firebug add-on in firefox: https://addons.mozilla.org/en-US/firefox/addon/firebug/
Step-2: Install page speed : http://code.google.com/speed/page-speed/download.html
Note: Page Speed is a firebug extension. So you first need to install firebug.
Step-3: Open up the firebug console.

Step-4: Click on the “page speed” tab.
click_page_speed

Continue reading …

What is doctype in html

A doctype is refers to a Document Type Definition (DTD) and declaration of the HTML.It is an instruction to the web browser about what version of HTML the page is written in.The DTD specifies the rules for the markup language, so that the browsers render the content correctly based on HTML version.

HTML2:
  1. <!DOCTYPE HTML PUBLIC ”-//IETF//DTD HTML 2.0 Level 2//EN”>  

HTML3:
  1. <!DOCTYPE HTML PUBLIC “-//IETF//DTD HTML 3.0//EN”>  

HTML4:
  1. <!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “http://www.w3.org/TR/html4/loose.dtd”>  

HTML5:
  1. <!DOCTYPE html>