Saturday, July 21, 2012

How To Format Corrupt Disk...


Click on Start button
-type CMD


You will see a window with black color.(see image below)




type-diskpart   and then press Enter.


You will now see new Command Prompt----DISKPART>


Now Follow the steps--
  1. DISKPART>list disk
  2. DISKPART>select disk no. (which you want to format)
  3. DISKPART>clean
  4. DISKPART>create partition primary
  5. DISKPART>active
  6. DISKPART>select partition 1
  7. DISKPART>format fs=fat32 ( wait for the process to reach 100%)
  8. DISKPART>exit
Thank you for Reading my post. I hope this will help you all.
If you want to give me any suggestion. Write it here in Suggestion Box.
Follow us on Facebook/Twitter and also visit our Wordpress Blog for technical content "http://shivamsupr.wordpress.com"

Keep Reading...and Post your Valuable Comments....:):):)

Sunday, July 15, 2012

Setup Website with Free Web Hosting and Domain Name -----------------------------------------------------

If you are planning to setup a website or blog, you would have realized that it is a pretty expensive affair. You have to pay for website hosting. Apart from that, you need to get a domain name for yourself (many times domain name comes free with web hosting).


Here I will explain how you can setup a totally free website with free web hosting and free domain name.


1) Free Web Hosting:


There are a few hosting providers that offer free web hosting. Most of them however put their ads on your websites. I found many free web hosting providers that are totally free, and do not force any ads on you.
These are the best free web hosting provider that I have come across.


http://www.x10hosting.com/ ***
www.host29.com/ **
http://www.zymic.com/free-web-hosting/
http://www.xtreemhost.com/  ***
http://www.host-ed.net  **
http://www.freehostia.com/free-chocolate.html
http://phpnet.us/index.php
http://www.000webhost.com/
and for more inquiry on hosting follow this link:


http://www.free-webhosts.com/webhosting-01.php


You get a free web hosting package packed with advanced features for hosting & building professional dynamic websites. It provides secure free web space with all the web hosting tools you could possibly ever need.


The free web hosting package changes according to hosting site.


But most common includes:


- 1000 MB of Disk Space, 50 GB Bandwidth
- Host your own domain (http://www.yourdomain.com)
- cPanel Powered Hosting (you will love it)
- Free POP3 Email Box with Webmail access
- FTP and Web based File Manager
- PHP, MySQL, Perl, CGI, Ruby.
- And many more..


You can register with any of the web hosting site to start running your website.




2) Free Domain Name:


There are very few services that provide free domain names. Most of them force you to sign up for other non-relevant offers. Here is a good free domain name service that I found: www.co.cc. They give you a totally free domain name that ends in CO.CC (you cannot get one ending in any other extension, like .COM). They do not force any ads on website for free domain name, and provide unlimited forwarding.


Here Are Some More Free Domain Name Providers:


www.freedomain.co.nr
www.Nic.Biz.ly
www.dot.tk
www.za.net
www.Dns.biz.nf
www.domjax.com
www.smartdots.com
www.unonic.com
www.registry.cu.cc


Using the above two services, you can setup your free website. Start with getting a free  domain name, or get a paid domain that ends in your chosen extension. Then, setup a free website, and use the domain name that you selected. That’s it. You are all set with your free website. Now, you can start installing your software on it that you want. If you are trying to setup a blog, I would advise you go with WordPress/Blogger – it is totally free, and very easy to use (that’s what I am using as well).


Thanks for reading my posting.Hope it will help readers. 
If this is helpful for you please comment below.
Follow me on twitter/facebook.

Sunday, April 15, 2012

HTML vs HTML5

HTML

HTML5

DOCTYPE is much longer as HTML4 is based on SGML-based.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
DOCTYPE is required to enable standards mode for HTML documents.
<!DOCTYPE html>
Audio and Video are not part of HTML4 specification
Audio and Videos are integral part of HTML5 specifications e.g. <audio> and <video> tags
Vector Graphics is possible with the help of technologies such as VML, Silverlight, Flash etc.
Vector graphics is integral part of HTML5 e.g. SVG and canvas
It is almost impossible to get true GeoLocation of user browsing any website especially if it comes to mobile devices.
JS GeoLocation API in HTML5 helps identify location of user browsing any website (provided user allows it)
Browser cache can be used as temporary storage.
Application Cache, Web SQL database and Web storage is available as client side storage. Accessible usingJavaScript interface in HTML5 compliant browsers.
Web Sockets are not available. Generally used mechanisms are long polling and streaming.

Full duplex communication channels can be established with Server using Web Sockets. Accessible using JavaScript interface in HTML5 compliant browsers.
Works with all old browsers
Most of modern browser have started supporting HTML5 specification e.g. Firefox, Mozilla, Opera, Chrome, Safari  etc.
Does not allow JavaScript to run in browser.
JS runs in same thread as browser interface.
Allows JavaScript to run in background. This is possible due to JS Web worker API in HTML5.