by http://webgeektutorials.blogspot.com

Sunday, July 31, 2011

How to Install IIS on windows

How to Install IIS on Windows XP and Windows 2000
  1. On the Start menu, click Settings and select Control Panel
  2. Double-click Add or Remove Programs
  3. Click Add/Remove Windows Components
  4. Click Internet Information Services (IIS)
  5. Click Details
  6. Select the check box for World Wide Web Service, and click OK
  7. In Windows Component selection, click Next to install IIS
After you have installed IIS, make sure you install all patches for bugs and security problems. (Run Windows Update).

How to Install IIS on Windows Vista

  1. Open the Control Panel from the Start menu
  2. Double-click Programs and Features
  3. Click "Turn Windows features on or off" (a link to the left)
  4. Select the check box for Internet Information Services (IIS), and click OK
After you have installed IIS, make sure you install all patches for bugs and security problems. (Run Windows Update).

Thursday, July 28, 2011

Benefits Microsoft LightSwitch 2011

Why use Microsoft LightSwitch?        ( Source Microsoft.com)

Microsoft Visual Studio® LightSwitch™ 2011 is a flexible development tool that enables developers of all skill levels to quickly create and deploy great looking business applications for the desktop and the cloud. With timesaving tools and templates, and an intuitive development environment, Visual Studio LightSwitch helps speed the development and reduces the complexity of everything from UI design to Windows Azure Cloud Deployment. With Visual Studio LightSwitch it is finally practical to create affordable, scalable custom software solutions that bridge the gaps between existing systems and data and help provide comprehensive, user-friendly views of your business data.
With Visual Studio LightSwitch 2011, you can dramatically decrease the time it takes to build a custom application that connects with existing applications, legacy systems and web services. Visual Studio LightSwitch 2011 automatically handles the routine code, letting you focus on developing the custom logic that makes your application unique.

Flexibility for Today and Tomorrow

Visual Studio LightSwitch 2011 gives you the flexibility to keep your technology and business options open, while building a practical, scalable application to match your current needs. With Visual Studio LightSwitch 2011 you can easily interoperate with your existing data systems and web services, choose from a wide range of hosting and deployment options – even add 3rd party plugins as needs change.

Top ten benefits

Build business applications like they
were created by a professional designer Visual Studio LightSwitch 2011 comes with an extensible set of pre-built Application Shells that can give your application the familiar feel of popular Microsoft software.

Build a better application faster
Visual Studio LightSwitch 2011 includes templates for the most common types of business applications. It also contains predefined data types for commonly used fields, like phone numbers and e-mail addresses.

Tuesday, July 26, 2011

Inside Adobe Flash CS 5.5?


"The new features in Flash Professional CS5 should bring smiles to the faces of both designers and developers. Two big improvements in the way Flash handles video are the ability to preview an imported video on the Stage and adjust its parameters on the fly."
"Personally, I already have a project on the burner that the new tools and features in Flash CS5 will shorten development time and more than pay for the price of the upgrade from CS4."
Cyndy Cashman, Layers Magazine, 
April 23, 2010

Adobe® Flash® Professional CS5.5 software is the industry-leading authoring environment for producing expressive interactive content. Create immersive experiences that present consistently to audiences across desktops, smartphones, tablets, and televisions.


What's new in Flash Professional
  • Efficient workflows for mobile development
  • Content scaling when resizing stage
  • Enhanced layer control 
  • Symbol rasterization and better performance
As a core component of the Adobe Flash Platform, Adobe Flash Player allows you to make your web content contextually relevant and reach more users across a wide spectrum of Internet-connected devices, including smartphones, tablets, netbooks, TVs, and PCs. New device-ready features take advantage of native device capabilities that include support for touch, gestures, input models, accelerometer, browser, and additional purpose-built hardware to bring unprecedented creative control and expressiveness to the device browsing experience.

Deprecated commands Oracle 11gR2

The most used to command "crs_stat -t" is deprecated on 11gR2. Instead you would use -
  crsctl status resource [the output will be status of all resources]

You can still use the "-t" option to get a tabular report though ;)
    crsctl status resource -t

 Specify resource name "ora.mydb.test" to get the status of any particular resource -
   crsctl status resource ora.mydb.test

In fact, quite a few commands have been deprecated in 11gR2; For the complete list refer to

What is Orastack ?

ORASTACK is an Oracle supplied utility specifically for Windows Operating system. It allows us to modify the default stack size of a thread/session when created in the Oracle executable. It should be run against a specific Oracle binary such as "sqlplus.exe", "tnslsnr.exe" etc. It alters the part of the binary header that defines the default stack size used by "the create thread API".

By reducing the stack of every session created in the Oracle executable, it is possible to serve more users. In a system with a 1000 users reducing the
stack from 1Mb to 500K would release 500Mb of the address space for other
allocations or more users. However if its set too low then session might fail with ORA-3113 error.

Friday, July 15, 2011

Google+ and chrome extension

Google+ is a social networking service operated by Google Inc. The service launched on June 28, 2011, in an invite-only testing phase.Google+ will be built as a layer that not only integrates different Google social services, such as Google Profiles and Google Buzz, but also introduces many new features including Circles, Hangouts, Sparks and Huddles. Google+ will also be available as a desktop application and as an application on Android and iOS operating systems.


Already using Google+? Follow Mashable News for the latest about the platform’s new features, tips and tricks as well as our top social media and technology updates.

While Google works on adding more features, some available Chrome extensions can fill the functionality gap. You want to get better notifications, enjoy improved sharing options, or scroll through your stream more quickly, there’s an extension available — for free — to help.

There are some chrome extension listed below, will improves Google+
Note: These extensions are available with chrome.

Wednesday, July 13, 2011

MySql Best Opensource Database for Ruby on Rails

RoR is being highly discussed phrase in the realm of web development. Thinking why is it so? Ruby on Rails can be defined as a full stack framework which means that this framework covers everything which is needed to build a web application. It is an open source web application framework that can help you building web applications with an out of the box architecture. It is written in Ruby which is an object oriented language with clean syntax that can make programming enjoyable. Moreover Rails could help you creating a web application almost ten times faster than you do with regular java framework and that too without compromising with the quality. As it uses the MVC architecture pattern, it organizes the application programming that provides flexibility and simplicity. RoR is a great framework for them who have high timeliness and budget constraint.

While SQLite3 is extremely convenient for development and testing databases, and PostgreSQL has powerful Generalized Search Tree indexes and is very close to being enterprise-ready, MySQL is the choice for many Web sites thanks to its excellent read performance, transparent support for large text and binary objects, and incredibly easy administration. Stored procedures, functions, triggers, and updateable views were added to MySQL in version 5, overcoming the largest technical objections to its deployment at many sites. MySQL also has a large, helpful user base, and some poster-child deployments including eBay, Yahoo, and Craigslist.
You can download MySql module for ruby on rails from link given below.

Tuesday, July 12, 2011

Common ways to redirect website

However there are many ways to redirect website's but here are simple ways by examples, This question often comes in-front of you when giving interview for web designer or developer.

For this example I will use the website: http://www.domain.com
Let’s say this site is build in the folder: /folder/ we need a redirect from
DOMAIN to DOMAIN/FOLDER.

META Tags:
Create in the root of your domain an index.html and use a meta-refresh tag in the of your HTML.
This way of redirecting is according to W3C not so nice, and it also will have a delay.
You can set this delay, however I set it to 0.

<meta http-equiv="refresh" content="0;URL=http://www.domain.com/folder/" />

Link :
Not so nice, but to most accessible way, is to just create an empty index.html with an hyperlink
to your new folder.

Tuesday, July 5, 2011

jQuery Mobile

Touch-Optimized Web Framework for Smartphones & Tablets

jQuery mobile framework takes the "write less, do more" mantra to the next level: Instead of writing unique apps for each mobile device or OS, the jQuery mobile framework will allow you to design a single highly branded and customized web application that will work on all popular smartphone and tablet platforms, it supports
  • IOS
  • Android 
  • Black Berry
  • Bada
  • Windows phone
  • Symbian
  • Meego etc.
Cross-platform & cross-device 
jQuery mobile framework takes the "write less, do more" mantra to the next level: Instead of writing unique apps for each mobile device or OS, the jQuery mobile framework will allow you to design a single highly branded and customized web application that will work on all popular smartphone and tablet platforms.

Touch-optimized layouts & UI widgets
Their aim is to provide tools to build dynamic touch interfaces that will adapt gracefully to a range of device form factors. The system will include both layouts (lists, detail panes, overlays) and a rich set of form controls and UI widgets (toggles, sliders, tabs)

Sunday, July 3, 2011

Adobe Dreamweaver CS 5.5 New Features

Adobe® Dreamweaver® CS5.5 is the industry-leading web authoring and editing software that provides both visual and code-level capabilities for creating standards-based websites and designs for the desktop, smartphones, tablets, and other devices.



Support CSS3/HTML5
Design using the panel CSS, which now supports the new rules CSS3. Presentation of Design now supports mediazaprosy and apply different styles if you resize the screen. Generate code for modern websites using technologies HTML5, with handy tips on the code and visualization presentation "Design".