Archive for June, 2007
June 18, 2007 at 5:28 pm
· Filed under Uncategorized
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”/> |
|
|
Permalink
June 15, 2007 at 10:30 pm
· Filed under IBM, SOA
I was wondering why IBM India is hiring in such large quantity. Just check this link to read the full story.
Permalink
June 15, 2007 at 12:29 pm
· Filed under Uncategorized
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: |
-
Run Regedit or regedt32.
-
Find the registry entry:
HKEY_LOCAL_MACHINE/SYSTEM/CurrentControlSet/Services
- 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.
|
|
|
Permalink
June 5, 2007 at 6:03 pm
· Filed under C, datastructure
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.
Permalink