Perfomance enhancing – speed up your boot time 1

This is the simplest and slowest tip which will actually improve the boot time only by a small amount.

1 . Take Microsoft “System Configuration Utility” by typing “msconfig” in the RUN (WIN+R – more Windows KeyBoard shortcuts) dialogs (Start»Run).

MSCONFIG boot.ini tab

2. Select “BOOT.ini” tab from General,SYSTEM.INI,WIN.INI,Services and Startup tabs. There will be a check box NOGUIBOOT enable it.

MSCONFIG NOGUIBOOT option

This will disable the Windows Splash Screen (an animated loading indicator with the windows logo on black background that appears just before the welcome screen) that appears every time you boot. This will improve the boot up time a little bit.

2. Goto Start»All Programs»Startup and delete all the programs that you don’t want at start up. (A powerful function is provided by msconfig but I’ll deal with in detail later.)So try this out today itself and tell me if you have any suggestions or doubts…

Warning
Enabling NOGUIBOOT will make the boot-time messages not to be shown. This means if an ERROR checking has been scheduled you will not see the dialogs that says “An error check has been scheduled press any key to cancel it:” also if you use third party tools to format your hard drive during boot time there can be a problem.

Posted in Uncategorized | Tagged Admin, Tricks, Tutorial | Leave a comment

Main reasons for Invalid XHTML pages in blogs

Watching your blog pass all the validations like html, xhtml, css etc. is actually satisfying for everybody. W3Schools validator tool is the most popular one used for the purpose. Many Blogger users should have found that however hard they try there will still be errors if the strict check is enabled, Why?

1. For Blogspot : If you know your page well and look at the errors shown you will come to the sad conclusion that you will NEVER be able to make your page valid..It’s because even if write your posts and template in valid xhtml the Blogger parts – Navbar, iFrames and attributes used with them are not properly xhtml formatted. You can do nothing about them.

There are some common errors among these especially if you come from an HTML background. Many of the attributes used in HTML are invalid if we use xhtml strict mode.

2. For all : If you are a blogger or a web page developer there can be errors in your document. Of course if you are only starting you may not be able to resolve many of this. So following are the main errors and the suggestions to rectify them.

General

Always use small letter for all tags and attributes. ie use <img src=” ” alt=” ” /> instead of <IMG arc=” ” ALT=” ” />

<META>

Use small letters as well as close the tags your meta tags should read
<meta name=”name” content=”content” />

<a href=”"></a>

Always use title attribute for <a tag <a href=”http://sample.com” title=”my title”>Link Text</a>

<img>

Empty tags are not allowed in XHTML. so you need to use <br /> for <br>, <hr /> for <hr>, <img /> for <img>

width=..,height=..,

It is always better to use <style=”width:xx px; …”> The usage is as follows
<img src=”PATH” width=”xx” border=”mm”>>. for this try using <img src=”PATH” style=”border: toppx rightpx bottompx leftpx; margin: toppx rightpx bottompx leftpx; width:xxpx;” alt=”Alternate text” /> (you can use negetive numbers for margin border etc.. and also px can be changed to cm centimeter, in inch etc..)

alt=”TEXT”

Never forget to put alternate text, the text shown in image disabled browsers. (always use some text that best describes you image)

<sctipt language=”JavaScript”>

Use <script type=”text/javascript(VBscript)“>

<style>

be sure you use <style type=”text/css”>

<u>

This tag for underlining can’t be used (it works still) use <font style=”text-decoration:underline;”>

Most common errors – from W3Schools site

not using </li> or other closing tags, usage of empty tags like <br>, not using alt in images etc…

So check your web page for errors and go care fully through the result page so that next time you edit your page the error wont repeat.

Posted in Uncategorized | Tagged Error, Tutorial, Web | Leave a comment

VLC media player, one player plays all formats

VLC media Player basic interfaceVideo Lan Player (VLC) is a one of a kind Audio and video player. VideoLAN is a software project, which produces free software for video, released under the GNU General Public License. It has got everything one would ever want in a media player. It is free, supports a seemingly infinite formats of Audio and Video, has live streaming support and so on. It can act both as an http server as well as an http remote. You can read more about VLC at VLC documentation

The list of Media types supported by VLC could not be said in a paragraph, it is an exhaustive list. But you can see it here – which all Media formats are supported by VLC. From my experiments with VLC it has never once crashed, nor have I met with a file which I could not play on VLC. The team at VLC has done an amazing job and it will be nice if you could donate for this really nice project.

Pros :
Free ware under GNU License, almost all media types supported, can fix errors in Video streams and files, plays files including mkv and flv, plays DVD files on HDD with subtitles, plays mp4files with subtitles, a large database of help and support. VLC is available for almost all platforms
Cons :
has some problems dealing with Windows Media Video wmv files during skips, skipping not possible for Flash video files flv.

Price : Free

You can downlod VLC media player for Windows from here, and VLC for MAC here. There are separate packages for different Linux flavors which are available here.

Posted in Software | Tagged Free, Review | 2 Comments

PC on steroids, Improve your systems perfomance – start of series

This is the first among a series of post in which I will tell you many tips on how to make your System perform faster. The post frequency in this Series will be one post ( tip ) per week. So check out my other posts on all other days. Being the first in the series lets start with the system booting and BIOS.

BIOS is a central location for you to control all your systems hardware manually.

bios-screen-main.png

image courtesy :Whatever

The unwanted hardware can consume your system resources. So what you can do is to disable them via the BIOS.

1. onboard LAN – if your computer is not on a Local Area Network you may want to disable the onboard LAN adapter. This will allow you not to install and LAN drivers. onBoard Video and Audio can also be switched off if you don’t use them). You can find th options under Peripherals or Integrated peripherals.

2. Make sure that you have set you first boot device to your Hard Disc drive. The option can be found under Boot menu or basic BIOS setup.

3. Disable unwanted ports like parallel and serial ports. Disable floppy drives if you don’t use it.

4. There can be many options that are hardware specific. You may view a list of such options on yourmother board manufacturers web site.

5. Update your BIOS frequently.

These are the most basic things from which you can start to speed up your system. To get into the system BIOS press F2 or DEL key when you start your computer. And make sure you have saved your changes before you exit by pressing F10 and then OK.

Posted in Uncategorized | Tagged Admin, Customize, Tips, Tutorial | Leave a comment

Find all recently used Wallpapers from your Registry

Windows saves the list of wallpapers ever used on the system in a registry Key.

HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersion
ExplorerWallpaperMRU

All those Registry Binary values here are the address to the images you used as wallpapers.

Wallpaper history binary value in registry

The last part in this binary makes no sense to me but I think this i information about the dimensions and style of the image.

Posted in Windows | Tagged Image, Registry, Tips, Wallpaper | Leave a comment

Prevent copying of files to USB drive

There are times when you want to prevent others from copying your data but you still need them to be able to view it on your computer. The following tip will help you do exactly that.

As always it is the registry that comes to your rescue. Open the Registry Editor by typing regedit in RUN (WIN+R) dialog (more keyboard shortcuts). Go to th key

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies

Protect files from being copied to USB device, registry key

Create a new DWORD named WriteProtect (Right Click on right pane and select New»DWORD). Edit the value and make it 1. Just restart Windows explorer and you are done. Next time somebody tries to copy data to the external storage device they will see

Can't copy to Mass storage device error
If you need to copy something just make the stored value of WriteProtect to 0

**Tips : to restart Windows Explorer take Shutdown. Click Cancel while holding down SHIFT+CTRL+ALT, this will close Windows Explorer. Now take TASK MANAGER by pressing ALT+CTRL+DEL take File>>New Task>> [ explorer ] and press Enter. **

Posted in Windows | Tagged Admin, Error, File, Registry | 33 Comments

Adsense section targetting for better contextual Ads

Google Adsense has been a money maker for many of the bloggers out there. but many a times we have seen really nonsense ads appearing on our blogs, may be of medicine on a blog about computers etc.. Well this can easily be prevented by using ad section targeting in Adsense. By section targeting what we do is tell the ad producing script to consider only the text lying between the

<!– google_ad_section_start –> <!– google_ad_section_end –>

tags for keywords. Then the ads will be related to the words in the the text lying between them. So what you need to do is put

<!– google_ad_section_start –>

Your Post (article) Body Here

<!– google_ad_section_end –>

and see the difference.

Posted in Uncategorized | Tagged Adsense, Free, Google, Tricks | Leave a comment

Add a target to your Send ‘To Shell’ Menu

This post will show you how to add a new Item to your sendto menu of your shell right click options. It is really simple and can be very handy to use.

All the targets of sendto menu are located in the C:Documents and settingsUSERNAMESendto folder. Or just type shell:sendto in your Start»Run box.

New shortcut in sendto menu folder

Create a shortcut by right clicking here to the folder you want in your send to menu, and voila you are done.

Posted in Windows | Tagged Admin, Hacks, Tricks | Leave a comment

Free URL shortening services on the WEB

These are some of the most popular services on the net that allows you to shorten long URLs.

Here is the test URL I used and the shortened URL by each service is given on the side

http://www.mapquest.com/maps/map.adp?ovi=1&mqma
p.x=300&mqmap.y=75&mapdata=%252bKZmeiIh6N%252bI
gpXRP3bylMaN0O4z8OOUkZWYe7NRH6ldDN96YFTIUmSH3Q6
OzE5XVqcuc5zb%252fY5wy1MZwTnT2pu%252bNMjOjsHjvN
lygTRMzqazPStrN%252f1YzA0oWEWLwkHdhVHeG9sG6cMrf
XNJKHY6fML4o6Nb0SeQm75ET9jAjKelrmqBCNta%252bsKC
9n8jslz%252fo188N4g3BvAJYuzx8J8r%252f1fPFWkPYg%
252bT9Su5KoQ9YpNSj%252bmo0h0aEK%252bofj3f6vCP

TinyURL http://tinyurl.com/24f65
NotLong http://ballistic.notlong.com (custom URL)
URLCutter http://urlcutter.net/ballistic (custom url)

For Not Long a password and Username is provided so that you can edit the URL in future. All of these sevices have easy to remember names and most have a custom URL maker.

Posted in Uncategorized | Tagged Review, Service | Leave a comment

Online archives for file types, extensions, application used

Filext.com is an online encyclopedia of file extensions, MIME types, programs that use specific file extensions etc.

For example :
msc – is a microsoft management console file.
ogg – is an ogg vorbis music file
car – CAR Archive Compressed Archive

But with the numerous applications and corresponding files it is impossible to remember all of these files. Also there are tons of file extensions which we have not yet heard about.

Filext – the file extension source is a one stop source for all the information you ever need about a specific file extension. It is actually a magnificent site with discussions on file types, MIMe types, file signatures, and possible and detected vulnerabilities in files.

So if you got any file type that you haven’t heard just head to Filext they have it all. They have got a tool which will send you to their web site from the windows open with dialog if you choose select from Web option.

Posted in Uncategorized | Tagged File, Free, Service | 1 Comment