Tuesday, July 12, 2011

How to Create Password-Protected Folder in Windows XP without any Software?

You will learn how to create an invisible folder but now with security protection. You will need to provide password to reveal and open your folder. You will do this without using any software.

If you are interested, just follow the instructions below.

1. Copy and paste the following code into Notepad.


cls
@ECHO OFF
title Folder Personal
if EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
if NOT EXIST Personal goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p “cho=>”
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Personal “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p “pass=>”
if NOT %pass%==pwd123 HERE goto FAIL
attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” Personal
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Personal
echo Personal created successfully
goto End
:End


2. Save the file as secret.bat ( or whatever name that you prefer but make sure the file end with .bat extension )
3. Move secret.bat batch file to the directory that you want to create your protected folder.
4. Run the batch file by double-clicking it. A folder with the name “Personal” will be created.
5. Now, you can insert any file into the folder.
6. To lock the folder, you need to run the batch file again. A command prompt will pop up and asked whether you want to lock the folder. Key in ‘Y’ (for Yes) and hit Enter. Your folder becomes invisible.
Create Password Protected Folder Without Any Software
7. To unlock the folder, run the batch file. You will be prompted to enter the password. Enter the password (default = pwd123 ), hit enter. The folder appears.
Create Password Protected Folder Without Any Software
You can change the name of the password-protected folder. You need to edit the batch file before you run the batch file for the first time, replace the word “Personal” with your desired name. There is a total of 6 words to replace. If you don’t prefer the default password, change the “pwd123″ with your desired password.

Note : Anyone can open the batch file and view your password. For precaution, you might want to keep the batch file on separate directory or on pen drive. When you want to open the password-protected folder, you can copy the batch file to the location where you keep the protected folder and run it.

(TIP: If this doesn't work, try to re-type this sign (") in the code. )

(Source: http://mytechquest.com/windows/how-to-create-password-protected-folder-in-windows-xp-without-any-software/ )

Thursday, May 5, 2011

Excellent SEO Tips For Better Web Design

Though there are millions of websites on the internet only some of them perform well while others fail to get the desired traffic. Have you ever questioned why many of the websites go unnoticed on the web and why they do not get any traffic? If you want to drive organic traffic to your website it is very important that your website is search engine friendly. When you are designing your website, you should make sure sound search engine principles are employed. You should look for a web designing company with sound SEO background so that you can have your website built on effective search engine optimization principles. Here are few useful SEO tips for web designing.

seo-blocks


If you have not registered your domain name already try to make your domain name keyword rich. This will help you in getting listed in the top search results faster. Domain names that have exact search terms in them will have greater chances of getting listed in the top ten results. Though this is not exactly part of SEO tip for web designing, it should not be ignored or forgotten that is why it finds its place in this article.

The next important factor to remember is that you should keep your website very light. Search engines like fast loading websites. So do not burden your website with heavy images or with huge flash files. This will  increase the loading time. Today flash elements are no more used in websites as flash files cannot be read by search engines. Moreover flash work will only slow down your website and affect search engine friendliness of the web pages.

Search engines are always keen in providing the users with the best online experience to its users. Websites that take a long time to load does not match with this goal of the search engines so they will not promote your website. Even if you are using heavy graphics in your website try to optimize all the images for web use.
Have a very clean layout. This will not only help the website users have a very good experience in your website but search engines will also be able to crawl your websites easily. Avoid using Ajax based menus as Ajax is not search engine friendly. Make use of horizontal HTML navigational menus as search engines will be able to crawl all the pages of your website easily. Fancy menus are good in terms of presentation of the website but they make your websites less search engine friendly. You should therefore learn to balance between these two factors.

When you are designing your website’s layout make sure that all the pages are accessible within two to three clicks. Search engines may not be able to access your web pages that are buried deep within. Partial indexing of websites will result in poor ranking. If you are making any content management systems for your website make sure that the URLs of the inner pages are search engine friendly. Turn on search engine friendly URL feature in your content management system.

All the URLs of the inner pages should be carefully chosen based on the content of the page. Make your URLs keyword rich and make them relevant to the landing page. You might have come across websites with URLs like index1.htm, index2.htm, index3.htm and so on. By using such URL structures you will unnecessarily lose the advantage of creating keyword rich page addresses.

When you are naming your files and images give meaningful names. Your image names too can be keyword rich. Do not choose your file names randomly. Use search engine friendly naming conventions. Avoid the use of special characters in the URLs as well as in the file names. Special characters in the file names and URLs will throw search engines off balance.

If you want to make your website URLs and your file names search engine friendly you will need to plan everything in advance and you should have already made keyword research for your website. This is where many webmasters make mistakes. They start thinking about SEO only after they complete their website design. So this should not happen in your case. Start your website’s SEO process as soon as you decide to launch your website only then you can create a website that is based on good SEO principles. Making alterations to your website at a later stage will unnecessarily increase your overall SEO expenses. Advanced planning and execution will save a lot of time, efforts and money.

Added to that, your website’s coding should comply with W3C standards. Search engines will be able to crawl your website fully only when the coding is clean. So make sure the pages are fully validated.
Another important factor that you should remember is to check for cross browser compatibility of your website. The website designed should be tested in all top browsers to ensure that it can be easily accessed without any problem. Today there are many browser types and you will get visitors from all kinds of browsers. If your website is not accessible or if it is not fully functional in all types of browsers you will lose visitors unnecessarily. So it is important to have your website tested in all the top browsers.

If you are in the process of designing your website you must take into consideration the above factors so that your website can perform well in the search engines. There is no use in having a website that does not feature in the search results or websites that do not drive any traffic. Even if you have the most expensive website on the internet, you will not be able to get any sales conversions if your website does not have top ranking. You will be forced to drive traffic through paid traffic generation methods such as PPC. To avoid all such unnecessary expenses on the long run, make sure that you get your website designed based on SEO concepts.

Source: http://skyje.com/2011/05/seo-web-design/

Friday, March 18, 2011

5 Web Design Basics You Should Know

Here are some of the basics of web design that you should know on your own without your web design company having to teach you:

Web Design Graphics



Always think small. In order to optimize your page and avoid slow loading pages, make sure you set your graphics to a file size of only about 10 to 12KB per image. It is true though that broadband technology have advanced leading to increase of speed, but the number of broadband users are increasing at a steady rate as well. Slow pages are always annoying, and no doubt your web design company will agree with this.

Use graphics that are suitable to the page content. Adorable pictures should not be posted on the page just because they are adorable. Make sure that all your graphics have something to do with the site. An exception will be on design images, which are made up of photos and graphics that make up the page design and have nothing to do with the content.

Minimize the use of blinking, rotating, flashing or changing images or graphics. These types are the ones which annoy and distract people the most. You need your online visitors to look at the contents of the page, and not get distracted by these graphics.

Web Design Layout



Try to get by with standard layouts. I have seen them all: from those pages with eight frames, to those which you need to scroll to the right then downwards. These layouts are novel and cute, but they are pretty darn confusing. The reason why your web design company suggests the use of the standard 3-column layout is because it is what works well with the general audience. The same is true for newspapers and other media print. This can prove to be boring, but you have to bear with it to make sure you do not drive your visitors nuts.

Pay attention to whitespace. You should know that whitespace is not just a CSS property, but is one of the functions of your layout. The whitespace actually has a bearing on how the page content is viewed, and is just as important in your web page layout as it obviously is in paper.

Use graphics as actual elements in your layouts. If you use graphics as actual element in your page layout, it serves a far better role.

Web Design Fonts



Use standard fonts. You can get by using Serif for your headlines and Sans-Serif for your actual text. Do not wonder if your web design company advises the use of this font family. Serif fonts are actually easier to read on monitors than it is in print since screen resolution is lower in the former.

Minimize the use of different fonts. It is undeniable that ages with varying fonts here and there look like they are made by an amateur. Doing this will not make your web design company very happy. Try to limit your site and page to about two or a maximum of three standard font families. Trust me; they look a lot more professional.

Use only standard fonts. You can use rare fonts that look pretty good. However, the chances that your online visitors will have the same font installed in their system might be low. If you stick will general fonts such as Arial, Helvetica, or Verdana, your pages will look better and your designs will likely be in the right places once they are viewed.

Web Design Advertising



Never be greedy of advertisements. Yes, you and your web design company have the actual control over the ads that can be placed on the site. However, know that your readers do not visit your page to read the ads, but they need significant content. Do not overwhelm them with ads that overshadow the content of your site, or you might tend to lose their interest immediately. Instead, keep them small and subtle (no flashy ads, please), but relevant and strategically placed to draw attention.

Web Design is about remembering Your Readers


Make sure to test your page in different browsers and operating system combination. Your web design company requires you to come up with sites that are viewable and effective. Coming up with a page that is only compatible with the most modern browser and the latest operating system is simply unacceptable. Make sure that your page design is compatible with as many browser and OS system combinations as possible.

Write the content that readers want. Remember that you are making a website that is not for yourself, but for your readers. So make sure that you create content that covers topics that your visitors would like to read. Your web design company will appreciate this as well.

Source: http://skyje.com/2010/12/web-design-basics/

Current Web Design Trends – An Overview

Web design trends keep on changing with every passing year or within a period of few months. There had been significant changes last year whose impact can be seen more clearly in this year.
Popularity in the mobile device space has immensely increased in the sense that Smartphones and tablets like the iPad have made the interaction between users better and have facilitated easier accessibility to contents. Moreover, now people can take more and more advantage of the latest and the optimized features.
And this is possible because of web standards like HTML5, web fonts and CSS3, but What about the small businesses? It actually becomes difficult for them to stick to the latest designing trends because of factors like cost of the redesigns and the need for reaching a wide range of users.
web design trends
Here, let’s discuss certain new technological designing trends which can prove useful for small businesses.

1. Goodbye Flash


Continuous debates in the past show that people are moving away from Flash. But that does not mean it serves no useful purpose. It still continues to give interactive designs and a few Rich Interactive Applications. However, for those small business owners, not showing any type of experience, trading Flash for HTML5, JavaScript and CSS3 would sound more sensible. Why? Actually the problem is that Flash does not work on most of the mobile devices and if they do, all the elements are not supported reliably.
Suppose, you visit a website from your mobile and are not being able to access it completely, like; unable to access the contact information, list of products and services or location information for the reason that navigation or core content was built in Flash. Will you like this? Obviously no!
The old circa-2005 Flash template is no more a very good option, and for good results, I would advise you to switch on to a modern system soon this year.

2. Web Fonts


Web font has been one of the important factors in web designing. It is not at all easy to customize the font .Because of technical restrictions; vibrant fonts used on the web have been limited to a small subset of styles. As a result, most designers used either the small selection of web-safe fonts or workarounds such as: text images or Flash in order to replace texts.
But there is a different scenario today regarding this. Today, you can use web fonts for your site without breaking your head too much into it. And the credit for this goes to services like TypeKit, Fonts.com Web Fonts and Google Web Fonts which allow you to use fonts at lower costs.
You can follow the latest trends in fonts like Web Open Font Format, JS lettering, taking mobile support or choosing Web Font while customizing Web App. If you wish to know more about these latest trends, you can get the information here: trends in web fonts.

3. Compatible and optimized sites


It’s time to make your sites fully compatible on different browsers as well as different devices and fully optimized, as, every website today wishes to make their site friendly to small screen. These are few tools that help you optimize your website for mobile devices:
  • MoFuse and MoFuse Premium
  • Mippin
  • mobiSiteGalore
To know more about them, you can read optimize your website for mobile devices.

4. HTML5 and CSS3


Very true that there still exist corporate networks and users using some very old browsers. But one must know that the latest versions of the major web browsers — Internet Explorer, Firefox, Google Chrome Safari and Opera—they all support CSS3 and HTML5 features and elements strongly. Moreover, any latest Smartphone you will come across will support advanced CSS3, JavaScript and HTML5 features. Therefore, it’s quite beneficial for you if you start experimenting with HTML5 or CSS3 elements.
So, with such more upcoming new trends in the web designing field, you cannot lag behind; keep yourself updated with these trends and try implementing them as folks in the industry start adopting them.
Source: http://skyje.com/2011/01/web-design-trends/

Thursday, January 20, 2011

ಪುನರ್ವಸು Web Solutions

Welcome!

I am a static website designer, from Dandeli, Karwar dist, Karnataka.
You can get more details about my work at : http://www.punarvasu.org