Archive for June, 2007

CSS Tip: CSS for printing

clipped from itwales.com

your page header should contains links to two CSS documents, one for the screen, and one for printing:

<link type=”text/css” rel=”stylesheet” href=”http://itwales.com/stylesheet.css” media=”screen”/>

<link type=”text/css” rel=”stylesheet” href=”http://itwales.com/printstyle.css” media=”print”/>

  blog it

Leave a Comment

IBM India on hiring spree to develop SOA infrastructure

I was wondering why IBM India is hiring in such large quantity. Just check this link to read the full story.

Comments (1)

Windows : How to remove a Service

clipped from www.cryer.co.uk

Normally it should not be necessary to manually delete a service.
Uninstalling an application should remove its associated service (if
any).

However, should it be necessary to manually remove a service:

  1. Run Regedit or regedt32.

  2. Find the registry entry:

    HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services

  3. Find the service there and delete it.
    You may wish to look at the keys and see what files the
    service was using and perhaps delete them also.

  • You will have to reboot before the list gets updated in
    server manager.
  • I have had it pointed out that some programs are cunning and
    prevent you from removing their service easily. (For example
    the spyware\malware called ‘Command Service’ – “cmdService”.)
    These change the permissions to make it more difficult for
    you to delete them. For these you will have to right click
    on the ‘service’ in regedit (regedt32), go to
    permissions and grant the administrator full control before
    the service can be deleted.
  •   blog it

    Comments (1)

    Circular Queue

    This is a Circular Queue implementation in C which uses fixed size array to store data and a counter variable to detect empty and full states.

    This link has an excellent collection of basic data structure algorithms and their applet animations.

    Comments (1)