Sunday, March 31, 2013

QBasic - Checking Palindrome Word

Description:
This tutorial will show how find if a word or string is a palindrome. A palindrome is a word or string that is the same printed forwards and backward.

Examples:
bob
noon
1991
redder

Note: the Oxford English Dictionary states that the longest palindromic word is tattarrattat.

The Guinness Book of Records states that detartrated is the longest word and a soap dish vender saippuakuppinippukauppias is a long palindrome name. (Don’t ask how to pronounce that name).


Note: The program uses LCASE$ instead of UCASE$. LCASE$ converts strings to lowercase.

Code:
DIM Wrd AS STRING
DIM RevWrd AS STRING
DIM x AS INTEGER

CLS

INPUT "Enter Word: ", Wrd

FOR x = LEN(Wrd) TO 1 STEP -1
    RevWrd = RevWrd + MID$(Wrd, x, 1)
NEXT x

PRINT
PRINT "Original Word: "; LCASE$(Wrd)
PRINT "Reverse Word: "; LCASE$(RevWrd)

IF LCASE$(Wrd) = LCASE$(RevWrd) THEN
    PRINT "The Word Is A Palindrome"
ELSE
    PRINT "The Word Is Not A Palindrome"
END IF

Preeti to Unicode Converter, Unicode to Preeti Converter

Online unicode nepali type and converter. If you are intrested to write in Unicode Nepali font, then it is. This online unicode nepali will automatically convert any roman english text into unicode nepali.


Simple Preeti to Unicode Conberter.
Type or Paste your contents typed in Preeti font and just click on Convert to Unicode button

Unicode Converter
Nepali font text-box (Use Preeti)
तलको बक्समा प्रीति फन्टका अक्षर पेस्ट गर्नुहोस्: 

Unicode text-box
माथीको प्रीति फन्ट अनुसारको युनिकोड, यो बक्समा हेर्नुहोस् : 


युनिकोडलाई प्रीति फन्टमा बदल्न माथीको बटनमा क्लिक गर्नूस ।


Saturday, March 30, 2013

Facebook Status in Blue Linked Text

Update Facebook Status In Blue Text..!!

This trick is really Impressive and easy , Its make your status Unique and Different from Others status..!!




Just copy the below code and paste in your status,

Code is

@@[0:[1066722575]:1: This is me]
@[1066722575:0]


:: 1066722575 is my facebook ID. Every profile has unique ID.


How to get your profile ID.

1. Open your browser.
2. Type the following
     http://graph.facebook.com/prajapatibm
    prajapatibm = replace with your profile name


{
   "id": "1066722575",
   "name": "Mukund Prajapati",
   "first_name": "Mukund",
   "last_name": "Prajapati",
   "link": "https://www.facebook.com/prajapatibm",
   "username": "prajapatibm",
   "gender": "male",
   "locale": "en_US"
}


Friday, March 29, 2013

Facebook really Impressive tricks. Colorful facebook chat text.

Its is really Impressive , You Can Send Colorful Texts in chat , but its quite difficult cos first you have to set all codes but It is Amazing I have tried and its look Cool , And In Group Chat I Got many Girls Friend Request . Try It


[[111356865552629]] [[115430438474268]] [[115807951764667]] [[115807951764667]] [[116564658357124]]

A to Z code.

[[107015582669715]] = A

[[116067591741123]] = B

[[115602405121532]] = C

[[112542438763744]] = D

[[115430438474268]] = E

[[109225112442557]] = F

[[111532845537326]] = G

[[111356865552629]] = H

[[109294689102123]] = I

[[126362660720793]] = J

[[116651741681944]] = K

[[115807951764667]] = L

[[106596672714242]] = M

[[108634132504932]] = N

[[116564658357124]] = O

[[111669128857397]] = P

[[107061805996548]] = Q

[[106699962703083]] = R

[[115927268419031]] = S

[[112669162092780]] = T

[[108983579135532]] = U

[[107023745999320]] = V

[[106678406038354]] = W

[[116740548336581]] = X

[[112416755444217]] = Y

[[165724910215]] = Z

Share this to all...!!


Wednesday, March 27, 2013

What is Query? MS -ACCESS

All of the queries that you have created to this point have been variations of “select” queries. Select que-ries are used to display data but do not actually change the data in any way.


Queries, in contrast, are used to change the data in existing tables or make new tables based on the query's results set. The primary advantage of action queries is that they allow you to modify a large number of records without having to write Visual Basic programs. Access provides four different types of action que-ries:

1. Make table— creates a new table based on the results set of the query;
2. Append— similar to a make-table query, except that the results set of the query is appended to an existing table;
3. Update— allows the values of one or more fields in the result set to be modified; and,
4. Delete— deletes all the records in the results set from the underlying table.

What is TCP/IP? Internet, Networking

TCP/IP, Transmission Control Protocol/Internet Protocol, is a suite of communications protocols used to interconnect network devices on the Internet. TCP/IP implements layers of protocol stacks, and each layer provides a well-defined network services to the upper layer protocol. TCP and IP are the two protocols used by TCP/IP, as well as the (higher) application, (lower) data link and (lower) physical layer protocols.

What is TCP/IP?

- TCP/IP is the communication protocol for communication between computers on the Internet.
- TCP/IP stands for Transmission Control Protocol / Internet Protocol.
- TCP/IP defines how electronic devices (like computers) should be connected to the Internet, and how data should be transmitted between them.

Inside TCP/IP

Inside the TCP/IP standard there are several protocols for handling data communication:
  • 1. TCP (Transmission Control Protocol) communication between applications
  • 2. UDP (User Datagram Protocol) simple communication between applications
  • 3. IP (Internet Protocol) communication between computers
  • 4. ICMP (Internet Control Message Protocol) for errors and statistics
  • 5. DHCP (Dynamic Host Configuration Protocol) for dynamic addressing
  •  

TCP/IP

- TCP/IP is TCP and IP working together.
- TCP takes care of the communication between your application software (i.e. your browser) and your network software.
 - IP takes care of the communication with other computers.
- TCP is responsible for breaking data down into IP packets before they are sent, and for assembling the packets when they arrive.
- IP is responsible for sending the packets to the correct destination.

Monday, March 25, 2013

QBASIC, Draw a circle

Noun
A round plane figure whose boundary (the circumference) consists of points equidistant from a fixed center.
Verb
Move all the way around (someone or something), esp. more than once: "the two dogs circle each other"; "we circled around the island".
Synonyms
noun.      ring - round - cycle - sphere
verb.      revolve - surround - encircle - wheel - compass
 
NAME
  CIRCLE Statement

SYNOPSIS
  CIRCLE [STEP] (x!,y!),radius![,[color%] [,[start!] [,[end!] [,aspect!]]]]
      o STEP       Specifies that coordinates are relative to the current
                   graphics cursor position.
      o (x!,y!)    The coordinates for the center of the circle or ellipse.
      o radius!    The radius of the circle or ellipse in the units of the
                   current coordinate system, determined by the most recent
                   SCREEN, VIEW, and WINDOW statements.
      o color%     A color attribute that sets the circle's color. The
                   available color attributes depend on your graphics adapter
                   and the screen mode set by the most recent SCREEN statement.
      o start!     The starting angle for the arc, in radians.
      o end!       The ending angle for the arc, in radians.
      o aspect!    The ratio of the length of the y axis to the length of the
                   x axis, used to draw ellipses.
      o To convert from degrees to radians, multiply degrees by (PI / 180).

DESCRIPTION
  Draws a circle or ellipse on the screen.

  Example:
      'This example requires a color graphics adapter.
      SCREEN 2
      CIRCLE (320, 100), 200
      CIRCLE STEP (0,0), 100

How to Block Websites on Chrome

Block websites on chrome
Sometimes you need to block some sites that contain nudity or unnecessary content because you never want your children to visit this type of sites. There may be another reasons to block websites.
We have already talked about blocking websites but that trick was only for Internet Explorer but today we are talking about blocking websites on Google Chrome.
If you want to block websites on internet explorer, you can see this post: How to block websites on internet explorer.
And, if you want to block a website on chrome then keep on reading.

Things you will need

  1. Internet access
  2. Google Chrome browser
  3. A Chrome Extension named Block Site.
I hope that you have the first two things, but you may not have the last one Block site

Installing Chrome Extension 'Block Site'

1. Go to this link from your chrome browser: Block site.
2. Click on add to chrome and add it.
Add to chrome
3. After adding this extension you will see a small icon of the extension on the top right corner of your chrome browser.

You have successfully installed the extension Block site and its time to block websites on chrome using this extension.

How Block websites on chrome using Block Site

Here is how to block websites on chrome using Block sites.
1. Click on the small icon of the extension that we recently added. This icon is located on top right corner of your chrome browser.
Block Site
2. Click on options.
3. Add a list of URL you want to block.
4. Make it as blacklist.
5. Click on enable authentication and set your password and don't forget to tick on Enable Block Site.
Block site settings
Now, whenever someone wants to access the URL that you have blocked will see this page and will not be able to enter on that site.
Block websites on chrome
If you want to block all websites and give access to some sites, then choose Whitelist instead of Blacklist.

This was the simple trick on how to block websites on chrome.
 

How to Make an Invisible Folder, Tips, Tricks

Invisible folder is like a hidden file on your computer since you can hide any file within the folder. It is useful to make invisible folder(s) if you are using the computer which is used by some other people, like your friends and/or family.

Today, you will learn a simple trick to make invisible folders.

It sounds so hard to make invisible folders but it is very simple indeed. You don't need to download anything. All you need to do is to follow these simple steps.


Note: This trick works on Windows xp, Vista, 7 & 8. It may work on some other windows versions but I am not sure about it.

How to Make an Invisible Folder

Here is how to make an invisible folder.
1. First make a simple folder, just a simple folder which you usally make.

New folder

2. Right click on the folder and click Properties. You will see a new pop up window after clicking Properties.

3. Switch to the customize tab now.

Customize new folder

4. Click on Change Icon.

Change folder icon

5. You will see lots of icons there. You have to find a transparent icon from there it is usually located in the middle. Click on the transparent icon the. click OK >> Apply and OK again.

Transparent icons


Here is a screenshot of how your new folder is looking now.

Invisible folder


You are almost done. :) But there is one thing left and that the name of the folder. It is still visible.  Now, it's time to make it invisible.

6. Right click on the folder and click Rename. Press and hold the Alt key, now press "0160" and then leave the alt key. The folder name should be removed now.

7. Make sure that your Num Lock key is on when when pressing 0160.

Congratulations! you have done it. You can now save your secret files,passwords, email or anything which you want under this invisible folder.

Sunday, March 24, 2013

Festival of colours. ~ Happy Holi

The festival of Holi can be regarded as a celebration of the Colors of Unity & Brotherhood - an opportunity to forget all differences and indulge in unadulterated fun. It has traditionally been celebrated in high spirit without any distinction of cast, creed, color, race, status or sex. It is one occasion when sprinkling colored powder or colored water on each other breaks all barriers of discrimination so that everyone looks the same and universal brotherhood is reaffirmed. This is one simple reason to participate in this colorful festival. Let's learn more about its history and significance...

The Legend of Holika Holi is also associated with the Puranic story of Holika, the sister of demon-king Hiranyakashipu. The demon-king punished his son, Prahlad in a variety of ways to denounce Lord Narayana. He failed in all his attempts. Finally, he asked his sister Holika to take Prahlad in her lap and enter a blazing fire. Holika had a boon to remain unburned even inside fire. Holika did her brother's bidding. However, Holika's boon ended by this act of supreme sin against the Lord's devotee and was burnt to ashes. But Prahlad came out unharmed.

Holi (होली) is a religious spring festival celebrated by Hindus as a festival of colours.

What is your favorite color?

Friday, March 22, 2013

HTML5 Geolocation

HTML5 Geolocation is used to locate a user's position

Locate the User's Position

The HTML5 Geolocation API is used to get the geographical position of a user.
Since this can compromise user privacy, the position is not available unless the user approves it.

Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari
Internet Explorer 9+, Firefox, Chrome, Safari and Opera support Geolocation.
Note: Geolocation is much more accurate for devices with GPS, like iPhone.

HTML5 - Using Geolocation

Use the getCurrentPosition() method to get the user's position.
The example below is a simple Geolocation example returning the latitude and longitude of the user's position:

Example

<script>
var x=document.getElementById("demo");
function getLocation()
  {
  if (navigator.geolocation)
    {
    navigator.geolocation.getCurrentPosition(showPosition);
    }
  else{x.innerHTML= "Geolocation is not supported by this browser.";}
  }
function showPosition(position)
  {
  x.innerHTML= "Latitude: " + position.coords.latitude +
  "<br>Longitude: " + position.coords.longitude;
  }
</script>

Example explained:
  • Check if Geolocation is supported
  • If supported, run the getCurrentPosition() method. If not, display a message to the user
  • If the getCurrentPosition() method is successful, it returns a coordinates object to the function specified in the parameter ( showPosition )
  • The showPosition() function gets the displays the Latitude and Longitude
The example above is a very basic Geolocation script, with no error handling.

Handling Errors and Rejections

The second parameter of the getCurrentPosition() method is used to handle errors. It specifies a function to run if it fails to get the user's location:

Example

function showError(error)
  {
  switch(error.code)
    {
    case error.PERMISSION_DENIED:
      x.innerHTML= "User denied the request for Geolocation."
      break;
    case error.POSITION_UNAVAILABLE:
      x.innerHTML= "Location information is unavailable."
      break;
    case error.TIMEOUT:
      x.innerHTML= "The request to get user location timed out."
      break;
    case error.UNKNOWN_ERROR:
      x.innerHTML= "An unknown error occurred."
      break;
    }
  }

Error Codes:
  • Permission denied - The user did not allow Geolocation
  • Position unavailable - It is not possible to get the current location
  • Timeout - The operation timed out

Displaying the Result in a Map

To display the result in a map, you need access to a map service that can use latitude and longitude, like Google Maps:

Example

function showPosition(position)
{
var latlon=position.coords.latitude+","+position.coords.longitude;

var img_url="http://maps.googleapis.com/maps/api/staticmap?center="
+latlon+"&zoom=14&size=400x300&sensor=false";

document.getElementById("mapholder").innerHTML="<img src='"+img_url+"'>";
}

In the example above we use the returned latitude and longitude data to show the location in a Google map (using a static image).

Location-specific Information

This page demonstrated how to show a user's position on a map. However, Geolocation is also very useful for location-specific information.
Examples:
  • Up-to-date local information
  • Showing Points-of-interest near the user
  • Turn-by-turn navigation (GPS)

The getCurrentPosition() Method - Return Data

The getCurrentPosition() method returns an object if it is successful. The latitude, longitude and accuracy properties are always returned. The other properties below are returned if available.
Property Description
coords.latitude The latitude as a decimal number
coords.longitude The longitude as a decimal number
coords.accuracy The accuracy of position
coords.altitude The altitude in meters above the mean sea level
coords.altitudeAccuracy The altitude accuracy of position
coords.heading The heading as degrees clockwise from North
coords.speed The speed in meters per second
timestamp The date/time of the response


Geolocation object - Other interesting Methods

watchPosition() - Returns the current position of the user and continues to return updated position as the user moves (like the GPS in a car).
clearWatch() - Stops the watchPosition() method.
The example below shows the watchPosition() method. You need an accurate GPS device to test this (like iPhone):

Example

<script>
var x=document.getElementById("demo");
function getLocation()
  {
  if (navigator.geolocation)
    {
    navigator.geolocation.watchPosition(showPosition);
    }
  else{x.innerHTML= "Geolocation is not supported by this browser.";}
  }
function showPosition(position)
  {
  x.innerHTML= "Latitude: " + position.coords.latitude +
  "<br>Longitude: " + position.coords.longitude;
  }
</script>

Shortcuts of Excel 2010 (Manage Active Selections - Select inside cells ) Page - 3

Manage Active Selections
F8 Turn on extension of selection with arrow keys without having to keep pressing shift.
Shift+F8 Add another (adjacent or non-adjacent) range of cells to the selection. Use arrow keys and shift+arrow keys to add to selection.
Shift+Backspace Select only the active cell when multiple cells are selected.
Ctrl+Backspace Show active cell within selection.
Ctrl+. (period) Move clockwise to the next corner of the selection.
Enter/Shift+Enter Move active cell down / up in a selection.
Tab/Shift+Tab Move active cell right / left in a selection.
Ctrl+Alt+Arrow Right/Ctrl+Alt+Arrow Left Move to the right / to the left between non-adjacent selections (with multiple ranges selected).
Esc Cancel Selection.
Select inside cells
Shift+Arrow Left/Shift+Arrow Right Select or unselect one character to the left / to the right.
Ctrl+Shift+Arrow Left/Ctrl+Shift+Arrow Right Select or unselect one word to the left / to the right.
Shift+Home/Shift+End Select from the insertion point to the beginning / to the end of the cell.

Tuesday, March 19, 2013

Start Button Change, Start Button Renamer

XP Start Button Changer

The Start menu is a user interface element used in Microsoft Windows operating systems since Windows 95 and in some X window managers. It provides a central launching point for application and tasks. Depending on the operating system or window manager, the menu might have different names, such as Kickoff Application Launcher in KDE, Start screen in Windows 8 or LX Panel in LXDE.

Traditionally, the Start menu provided a customizable nested list of programs for the user to launch, as well as a list of most recently opened documents, a way to find files and get help, and access to the system settings. Later enhancements via Windows Desktop Update included access to special folders like "My Documents" and "Favorites" (browser bookmarks). Windows XP's Start menu was expanded to encompass various My Documents folders (including My Music and My Pictures), and transplanted other items like My Computer and My Network Places from the Windows desktop. Until Windows Vista, the Start menu was constantly expanded across the screen as the user navigated through its cascading sub-menus. As of Windows Vista, the Start menu covers a fixed portion of the screen. As of Windows Server 2012, the Start menu (known as "Start screen") covers the entire screen.

Download

Monday, March 18, 2013

Collection: Business Card Designed By JCT Students

Business cards are cards bearing business information about a company or individual. They are shared during formal introductions as a convenience and a memory aid. A business card typically includes the giver's name, company affiliation (usually with a logo) and contact information such as street addresses, telephone number(s), fax number, e-mail addresses and website. It can also include telex, bank account and tax code. Traditionally many cards were simple black text on white stock; today a professional business card will sometimes include one or more aspects of striking visual design.

Which is the best design?


 
Design by: Pujan Shrestha



Design By: Rashmi Shrestha



Design By: Nikee Thami



Design By: Isha Joshi


Design By: Prabesh Pandey




Design By: Dashrath Giri




Design By: Sanita Shrestha 



Design By: Sunil Shrestha


 Design by: Lokesh Shrestha



 Design by: Santosh Adhikari



 Design by: Manish Shrestha

 Design by: Pramita Joshi & Anita Subedi



 Design by: Rajkumar Shivabhakti



Design by: Pramila Budhathoki


 Design by: Ronit Shrestha



  Design by:Rama Thami



 Design by: Rupak Chaulagain



Sunday, March 17, 2013

Mozilla Firefox Browser

The Firefox Browser

Firefox Firefox is a free, open-source web browser from Mozilla.
Firefox is one of the most popular internet browsers today.
Firefox is available for Windows, Mac OS X, Linux, and Android.
Download Firefox


Firefox Statistics

The following table is a breakdown of the Firefox numbers from our Browsers Statistics:
2013 Total FF 21 FF 20 FF 19 FF 18 FF 17 FF 16 FF*
February 29.6% 0.1% 0.2% 4.6% 16.0% 1.2% 1.2% 6.3%
January 30.2% 0.1% 0.6% 12.4% 8.3% 1.6% 7.2%
2012 Total FF 17 FF 16 FF 15 FF 14 FF 13 FF 12 FF 11 FF 9-10 FF 4-8 FF 3.6 FF*
December 31.1% 16.3% 5.6% 1.3% 1.0% 0.7% 1.1% 0.6% 1.2% 1.2% 0.8% 1.3%
November 31.2% 2.5% 19.4% 1.8% 1.2% 0.8% 1.2% 0.6% 1.3% 1.3% 0.8% 0.3%
October 31.8% 0.4% 9.5% 12.4% 1.8% 1.0% 1.4% 0.8% 1.4% 1.6% 1.0% 0.5%
September 32.2% 0.8% 17.7% 4.8% 1.3% 1.6% 1.0% 1.6% 1.9% 1.2% 0.3%
August 32.8% 1.9% 20.3% 2.1% 1.8% 1.1% 1.7% 2.1% 1.2% 0.7%
July 33.7% 0.3% 7.4% 15.2% 3.0% 1.3% 2.1% 2.4% 1.5% 0.5%
June 34.4% 0.6% 12.1% 12.5% 1.6% 2.3% 2.7% 1.8% 0.8%
May 35.2% 0.1% 0.8% 21.4% 3.8% 2.7% 3.4% 2.3% 0.7%
April 35.8% 0.1% 2.6% 21.6% 3.8% 3.8% 3.1% 0.8%
March 36.3% 0.3% 9.1% 17.3% 5.0% 3.7% 0.9%
February 37.1% 0.1% 0.6% 24.2% 6.5% 4.3% 1.4%
January 37.1% 0.1% 18.6% 12.4% 5.0% 1.1%
2011 Total FF 9 FF 8 FF 7 FF 6 FF 5 FF 4 FF 3.6 FF 3.5 FF 3.0 FF*
December 37.7% 1.8% 22.8% 2.1%  1.5% 1.2% 1.3% 5.6% 0.6% 0.5% 0.3%
November 38.1% 0.4% 12.7% 11.5%  2.2% 1.5% 1.5% 6.9% 0.6% 0.5% 0.3%
October 38.7% 0.6% 19.8%  5.1% 2.0% 1.8% 7.9% 0.7% 0.5% 0.3%
September 39.7% 1.5%  22.2% 3.1% 2.2% 9.0% 0.7% 0.7% 0.3%
August 40.6% 9.5% 15.9% 2.9% 10.3% 0.8% 0.8% 0.4%
July 42.0% 0.6% 23.2% 4.6% 11.5% 0.9% 0.9% 0.3%
June 42.2% 5.6% 21.5% 12.3% 1.5% 0.9% 0.4%
May 42.4% 0.3% 23.4% 15.6% 1.8% 1.0% 0.3%
April 42.9% 15.7% 23.8% 2.1% 1.1% 0.2%
March 42.2% 5.2% 32.9% 2.5% 1.3% 0.3%
February 42.4% 1.9% 35.8% 2.9% 1.5% 0.3%
January 42.8% 1.5% 36.1% 3.1% 1.7% 0.4%
2010 Total FF 4 FF 3.6 FF 3.5 FF 3.0 FF*
December 43.5% 1.1% 36.5% 3.5% 2.0% 0.4%
November 44.0% 0.8% 36.9% 3.8% 2.0% 0.5%
October 44.4% 0.7% 36.2% 4.5% 2.4% 0.6%
September 45.1% 0.8% 35.3% 5.6% 2.9% 0.5%
August 45.8% 0.6% 35.2% 6.1% 3.1% 0.6%
July 46.4% 0.4% 34.5% 7.3% 3.6% 0.6%
June 46.6% 32.7% 9.1% 4.0% 0.8%
May 46.9% 31.7% 10.0% 4.4% 0.8%
April 46.4% 29.4% 11.5% 4.6% 0.9%
March 46.2% 22.1% 17.6% 5.6% 0.9%
February 46.5% 10.5% 28.5% 6.5% 1.0%
January 46.3% 2.2% 34.2% 8.6% 1.3%
2009 Total FF 3.5 FF 3.0 FF 2.0 FF*
December 46.4% 33.3% 11.2% 1.2% 0.7%
November 47.0% 31.4% 13.6% 1.5% 0.5%
October 47.5% 29.8% 15.7% 1.6% 0.4%
September 46.6% 27.3% 17.2% 1.8% 0.3%
August 47.4% 21.0% 24.0% 1.9% 0.5%
July 47.9% 12.1% 33.3% 1.9% 0.6%
June 47.3% 1.2% 43.4% 2.3% 0.4%
May 47.7% 44.3% 2.9% 0.5%
April 47.1% 43.4% 2.8% 0.9%
March 46.5% 42.2% 3.0% 1.3%
February 46.4% 41.5% 3.8% 1.1%
January 45.5% 39.5% 4.6% 1.4%
2008 Total FF 3.0 FF 2.0 FF 1.5 Moz
December 44.7% 38.1% 6.2% 0.1% 0.3%
November 44.6% 35.9% 8.0% 0.3% 0.4%
October 44.5% 34.9% 8.7% 0.4% 0.5%
September 43.1% 31.9% 10.1% 0.6% 0.5%
August 44.2% 25.5% 17.5% 0.7% 0.5%
July 43.1% 20.7% 21.1% 0.8% 0.5%
June 41.5% 8.9% 31.2% 0.9% 0.5%
May 40.5% 2.9% 35.9% 1.0% 0.7%
FF* indicates other versions of Firefox.


Firefox 18

Firefox 18 was released on 8th January, 2013.
Firefox 18 is available for Windows, Mac OS X (Snow Leopard, Lion, and Mountain Lion), Linux, and Android.
New features:
  • IonMonkey - New JavaScript compiler (7% - 26% faster than Firefox 17)
  • Support for Retina displays
  • Inline PDF viewer
  • Preliminary support for Web Real Time Communication (WebRTC)

Firefox 17

Firefox 17 was released on 20th November, 2012.
Firefox 17 is available for Windows, Mac OS X, Linux, and Android.
New features:
  • Updated Awesome Bar - with larger icons
  • Tab animations
  • Social API - Allows you to sign in to your social networks (Facebook) via your browser
  • Implemented Click-To-Play blocklisting - to prevent vulnerable plugin versions from running without the user's permission
  • New Markup Panel For HTML/DOM in Page Inspector
  • HTML5 sandbox attribute (for iframes) implemented
  • Support for Mountain Lion’s Notification Center

Firefox 16

Firefox 16 was released on 09th October, 2012.
Firefox 16 is available for Windows, Mac OS X, Linux, and Android.
New features:
  • Native support for PDFs
  • New Developer Toolbar (lets you access the Web Console, Inspector and Debugger + the toolbar itself supports some commands)
  • VoiceOver support for OS X
  • Web App Support (start using apps in the Mozilla app directory)
  • Incremental Garbage Collection (speeds up your browser - recycles/reuses memory that a JavaScript program is no longer using)
  • CSS3 Animations, Transitions, Transforms and Gradients unprefixed in Firefox 16

Firefox 15

Firefox 15 was released on 28th August, 2012.
Firefox 15 is available for Windows, Mac OS X, Linux, and Android.
New features:
  • Seamless background updates
  • Stopped most memory leaks caused by add-ons
  • Support for the SPDY networking protocol v3
  • WebGL enhancements
  • HTML5 - Support for the media attribute in <source>
  • HTML5 - Support for the played attribute in <audio> and <video>
  • CSS3 - Support for the CSS word-break property
  • Faster debugger
  • New design tool that allows web developers to switch between desktop and mobile views of sites
  • Native support for the Opus audio codec

Firefox 14

Firefox 14 was released on 17th July, 2012.
Firefox 14 is available for Windows, Mac OS X, Linux, and Android.
New features:
  • Privacy feature - Firefox now encrypts your Google searches using HTTPS
  • Bug fix - Full screen support for Mac OS X Lion
  • Security feature - You can now whitelist sites that you visit often and trust

Firefox 13

Firefox 13 was released on 05th June, 2012.
Firefox 13 is available for Windows, Mac OS X, Linux, and Android.
New features:
  • The default home page now has quicker access to bookmarks, history, settings, etc.
  • When opening a new tab, users are now presented with their most visited pages
  • SPDY protocol now enabled by default for faster browsing on supported sites
  • 72 total improvements to Page Inspector, HTML panel, Style Inspector, Scratchpad and Style Editor
  • Implemented support for the following CSS properties: column-fill, CSS3 background-position
  • Support for the :invalid pseudo-class
  • The CSS3 <angle> type unit is now supported

Firefox 12

Firefox 12 was released on 24th April, 2012.
Firefox 12 is available for Windows, Mac OS X, Linux, and Android.
New features:
  • Windows: Firefox is now easier to update with one less prompt (User Account Control)
  • Page Source now has line numbers
  • Line breaks are now supported in the title attribute
  • Support for the text-align-last CSS property

Firefox 11

Firefox 11 was released on 13th March, 2012.
Firefox 11 is available for Windows, Mac OS X, Linux, and Android.
New features:
  • Style Editor - A new stylesheet editor. Visit any page, then select Style Editor from the Web Developer menu
  • "Tilt" 3D Page Structure View -  The Inspector tool now offers a "3D" button
  • Support for the CSS text-size-adjust property (controls how mobile devices size text and show scrollbars when zooming into a web page)
  • Support for the outerHTML property
  • Firefox can now migrate your bookmarks, history, and cookies from Google Chrome
  • HTML5 tags are correctly highlighted when viewing the source
  • Files can be stored in IndexedDB.
  • The moz prefix has been removed from the Websockets API

Firefox 10

Firefox 10 was released on 31st January, 2012.
Firefox 10 is available for Windows, Mac OS X, Linux, and Android.
New features:
  • Page Inspector/CSS Inspector - lets developers inspect the HTML and CSS
  • Scratchpad -  A code editor that highlights syntax for JavaScript developers
  • New 3D graphics capabilities and anti-aliasing for WebGL content
  • Full-Screen API - enables developers to create full screen apps and games and deliver full screen video content
  • Support for CSS 3D Transforms

Firefox 9

Firefox 9 was released on 20th December, 2011.
Firefox 9 is available for Windows, Mac OS X and Linux.
New features:
  • Added Type Inference; improving JavaScript performance (up to 30% faster than Firefox 8)
  • Improved theme integration for Mac OS X Lion
  • Added two finger swipe navigation for Mac OS X Lion
  • Added support for querying "Do Not Track" status via JavaScript
  • Added support for CSS3 font-stretch
  • Improved support for HTML5, MathML, and CSS

Firefox 8

Firefox 8 was released on 08th November, 2011.
Firefox 8 is available for Windows, Mac OS X and Linux.
New features:
  • Twitter search engine installed by default
  • Third-party add-ons are disabled by default
  • A new "add-on selection dialog" allows to verify add-ons on upgrading
  • Tabs can be loaded "on demand" (making it much faster to restore windows with many tabs)
  • Support for Cross-Origin Resource Sharing (CORS), which lets developers load WebGL textures from other domains in a secure way
  • HTML5 context menu support
  • Firefox for Android: Mozilla has also added further functionality for the Firefox browser into Android devices

Firefox 7

Firefox 7 was released on 27th September, 2011.
Firefox 7 is available for Windows, Mac OS X and Linux.
New features:
  • Improved memory handling
  • Bookmark and password changes now sync almost instantly when using Firefox Sync
  • The "http://" URL prefix is now hidden by default (just like Chrome)
  • Updated the WebSocket protocol from version 7 to version 8
  • Added a system for users to send performance data back to Mozilla

Firefox 6

Firefox 6 was released on 16th August, 2011.
Firefox 6 is available for Windows, Mac OS X and Linux.
New features:
  • The address bar now highlights the domain of the website you're visiting
  • Streamlined the look of the site identity block
  • Added support for the latest draft version of WebSockets with a prefixed API
  • Added support for EventSource / server-sent events
  • Added support for window.matchMedia
  • Added Scratchpad, an interactive JavaScript prototyping environment
  • Added a new Web Developer menu item and moved development-related items into it
  • Improved usability of the Web Console
  • Improved the discoverability of Firefox Sync
  • Reduced browser startup time when using Panorama

Firefox 5

Firefox 5 was released in June, 2011.
Firefox 5 is available for Windows, Mac OS X and Linux.
New features:
  • Added support for CSS animations
  • Tuned HTTP idle connection logic for increased performance
  • Improved canvas, JavaScript, memory, and networking performance
  • Improved standards support for HTML5, XHR, MathML, SMIL, and canvas
  • Improved spell checking
  • Improved desktop environment integration for Linux users
  • WebGL content can no longer load cross-domain textures
  • Background tabs have setTimeout and setInterval clamped to 1000ms to improve performance

Firefox 4

Firefox 4 was released in March 2011.
Firefox 4 is available for Windows, Mac OS X and Linux.
New features:
  • Available in over 80 languages!
  • Fastest Firefox Ever - Firefox is up to six times faster than the previous release.
  • App Tabs - A permanent home to frequently visited sites like Web mail, Twitter, Pandora, Flickr.
  • Switch to Tab - Easily find and switch to any open tab from your Awesome Bar without opening duplicate tabs.
  • Panorama - Drag and drop tabs into manageable groups to save time while navigating many open tabs.
  • Firefox Sync - Access your Awesome Bar history, bookmarks, open tabs, passwords and form data across multiple computers and mobile devices.
  • New Add-ons Manager - More than 200,000 add-ons to customize the features, functionality and look of Firefox.
  • Do Not Track - Allows users to opt-out of tracking used for behavioral advertising.
  • Privacy first - Prevent others from accessing your browser history.
  • HTTP Strict Transport Security (HSTS) - Establishes secure connections to stop “man in the middle” attacks and keep sensitive data safe.
  • Content Security Policy (CSP) - Prevents cross-scripting attacks by allowing sites to explicitly tell the browser which content is legitimate.
  • JägerMonkey JIT compiler - along with enhancements to the existing TraceMonkey JIT and SpiderMonkey’s interpreter for faster page-load speed and better performance.
  • HTML5 support - Includes hardware accelerated, high-definition video (WebM), 3D graphics, offline data storage, professional typography, touchscreen interfaces and the Mozilla Audio API.
  • Improves existing tools - like CSS, Canvas and SVG.
  • Uninterrupted browsing - when there is a crash in the Adobe Flash, Apple QuickTime or Microsoft Silverlight plugins.

Firefox 3.6

Firefox 3.6 was released in January 2010.
Firefox 3.6 is built on Mozilla's Gecko 1.9.2 web rendering platform, which has been under development since early 2009 and contains many improvements for web developers, add-on developers, and users. This version is also faster and more responsive than previous versions and has been optimized to run on small device operating systems such as Maemo.
New features:
  • Personas theme - allow users to change Firefox's appearance with a single click
  • Protection from out-of-date plugins - keep users safer as they browse
  • Open, native video can be displayed full screen and supports poster frames
  • Improved JavaScript performance
  • Ability for web developers to run asynchronously scripts - to speed up page load times
  • Support for downloadable web fonts - using the new WOFF font format
  • Improved support for CSS3, DOM, and HTML5

Older Firefox Versions

Firefox 3.5 - Released in June 2009.
Firefox 3.0 - Released in June 2008.
Firefox 2.0 - Released in December 2006.
Firefox 1.5 - Released in November 2005.
Firefox 1.0 - Released in November 2004.

Friday, March 15, 2013

Windows 7 मा Hard Drive लाई फरम्याट नगरि कसरी Partition गर्ने

टेक्निकल दुनियाँमा नयाँ नयाँ अपरेटिङग सिस्टमको आगमन सँगै पुरानाको तुलनामा अझ धेरै सुबिधाहरु थपिएर आएका छन । हालै चलन चल्तीमा रहेको अपरेटिङग सिस्टम Windows 7 तथा Vista मा Disk Partition सजिलै गर्न सकिन्छ । पुराना अपरेटिङग सिस्टममा एक चोटि Partition गरिसकेको Hard Drive लाई फेरी partition गर्नु परेमा Format नै गर्नु पर्ने समस्या हालका अपरेटिङग सिस्टममा छैन । यहाँ चर्चा गर्न लागिएको सिस्टम windows 7 मा तपाईंले सजिलै कम्प्युटर फरम्याट नगरीकनै आफ्नो hard drive लाई Partition गर्न सक्नु हुनेछ । Disk management मा उपलब्ध Shrinking र expanding utility प्रोग्रामको सहायताले तपाईंले Partition मात्र हैन drive डिलिट तथा re-size पनि गर्न सक्नु हुनेछ ।

अब यहाँ Hard Drive लाई कसरी partition गर्ने भन्ने बारे Step by Step चर्चा गरौ :
1. सर्वप्रथम "start" बटनमा क्लिक गरौ, त्यहा देखिएको "Computer" मा राईट क्लिक गरौ र "manage" option मा जाऔ ।

2. "Computer Management" नामको नयाँ window खुल्नेछ, त्यहा "Storage" मा क्लिक गरौ र "Disk Management" मा जाऔ ।

3. "Disk Management" मा गईसकेपछि तपाईंले आफ्नो कम्प्युटरमा भएको Drive हरु देख् न सक्नुहुनेछ ।

4. अब तपाईंले कुन drive लाई partition गर्न खोज्नु भएको हो त्यो "Drive" लाई राईट क्लिक गर्नुहोस् र "Shrink Volume" option लाई छान्नुहोस् ।

5. नयाँ window खुल्नेछ जसमा उक्त Drive को Size, Partition को लागि उपलब्ध space र नयाँ partition मा कति amount को space भएको Drive बनाउने भन्ने option हुनेछ । त्यहा तपाईंले नयाँ Partition गर्दा बन्ने drive कती space को बनाउने हो त्यो Value भर्नु पर्नेछ । याद राख्नुहोस् त्यहा Size of available shrink space मा देखिएको भन्दा बढी Space Value त्यहा राख्न पाउनु हुन्न ।

6. Value राखीसकेपछि Shrink बटन क्लिक गर्नुहोस् र process सकिन केही समय पर्खिनुहोस् । operation सकिएपछि त्यहा तपाईंले unallocate space र तपाईंले अघि राख्न नु भएको exactly value भएको खाली drive देख् नु हुनेछ । अब त्यो unallocated space लेखिएको drive लाई सेलेक्ट गर्नुहोस् र राईट क्लिक गरेर "New Sample Volume" option मा जानुहोस् ।

7. त्यहा नयाँ बन्ने Volume को लेटर कुन राख् ने छान्नुहोस् र next बटन क्लिक गर्नुहोस् ।

8. अब Format पेज देखिनेछ यहाँ निर ध्यान दिनुहोस् कि File System NTFS सेलेक्ट गर्नुहोस् र Volume Label मा उक्त volume को नाम कुन राख् ने हो लेख्नुहोस् ।

9. Next बटन क्लिक गर्नुहोस् र अन्तिममा Finish गर्नुहोस् ।