Monday, October 18, 2010

Download FireFox 3.6.10 FreeEdition


The Web is all about innovation, and Firefox sets the pace with dozens of new features to deliver a faster, more secure and customizable Web browsing experience for all.

User Experience. The enhancements to Firefox provide the best possible browsing experience on the Web. The new Firefox smart location bar, affectionately known as the "Awesome Bar," learns as people use it, adapting to user preferences and offering better fitting matches over time.

Performance. Firefox is built on top of the powerful new Gecko platform, resulting in a safer, easier to use and more personal product.

Security. Firefox raises the bar for security. The new malware and phishing protection helps protect from viruses, worms, trojans and spyware to keep people safe on the Web.

Customization. Everyone uses the Web differently, and Firefox lets users customize their browser with more than 5,000 add-ons.


Title:Firefox 3.6.10
Filename:Firefox Setup 3.6.10.exe
File size:8.14MB (8,534,336 bytes)
Requirements:Windows 2000 / XP / 2003 / Vista / Windows7 / XP64 / Vista64 / Windows7 64
Languages:en-US
License:Open Source
Date added:September 16, 2010
Author:Mozilla Organization
www.mozilla.org




Download AVG Free Edition 10.0.1136 (32-bit) AntiVirus


AVG Anti-Virus Free Edition is trusted antivirus and antispyware protection for Windows available to download for free. In addition, the new included LinkScanner® Active Surf-Shield checks web pages for threats at the only time that matters - when you're about to click that link.

AVG Anti-Virus Free has these following features:

  • Award-winning antivirus and antispyware
  • Real-time safe internet surfing and searching
  • Quality proven by 80 million of users
  • Easy to download, install and use
  • Protection against viruses and spyware
  • Compatible with Windows 7, Windows Vista and Windows XP

AVG Anti-Virus Free Edition is only available for single computer use for home and non commercial use.

This is the 32-bit version.

Title: AVG Free Edition 10.0.1136 (32-bit)
Filename: avg_free_x86_all_2011_1136a3181.exe
File size: 135.76MB (142,352,240 bytes)
Requirements: Windows 2000 / XP / Vista / Windows7
Languages: Multiple languages
License: Freeware
Date added: October 11, 2010
Author: AVG Technologies

www.avg.com


Download CCleaner Setup 2.36


v2.36.1233 (27 Sep 2010)

- Added FTP Account cleaning.


- Added support for Paint Shop Pro X3, VLC Media Player, MediaMonkey, Winamp, Malwarebytes Anti Malware, Avast! Antivirus and WinPatrol.


- Improved support for Quicktime Player, Ad-Aware and AntiVir Desktop.


- Added support for Firefox based browser Pale Moon.


- Improved support for expanding environment variables %ProgramFiles% and "%CommonProgramFiles%" to both 32-bit and 64-bit folders.


- Added new environment variables: %ProgramFiles32%, %ProgramFiles64%, "%CommonProgramFiles32%", "%CommonProgramFiles64%".


- Splitter bar is no longer misbehaving when cleaning is in progress.
- Improved navigation using keyboard.


- Fixed bug in Startup Tool on Windows 2000.


- Minor tweaks and fixes.


DOWNLOAD


Skirts Now and Then....!

Corporate Dressing: Make Your Presence Felt Among Peers
By: Lesley Lyon


The sense of personality is very much related to the professional success attained by a person. Hence, it is very important to decide on the rightkind of clothing to be worn to a work place. The selection of the corporate dress will define a person’s business and status. The corporate dress depends on the factors such as the industry with which the person works, the job the person holds within that industry, geographic location and the expectation of the client.

Woman’s corporate dressing:

Earlier during the 70’s and 80’s when women entered the working environment, they were required to imitate the men’s dressing which resulted in women wearing skirts and jackets along with tailored blouses with accessories similar to the men’s ties. Gone are those days, now women wear trousers to office, which makes them look even more professional and at the same time enjoy flexibility and comfort than compared to the skirts. The dress worn by the woman should match with the industry and designation. To get a traditional look, women can wear either a trouser suit or skirt suit. Apparels should be accompanied with matching jackets to get a credible look. In case of skirt suits, the length of the skirt should not be more or less than up to the knee.

As shorter skirts are about to get unwanted attention of eyes and create awkward feelings in a work place, they have to be avoided at any cost. They should have a cut at the bottom near the ankles to suit the trousers. The sweaters and blouses with varied colors and designs can be very appealing than revealing in nature. Improper waistlines and necklines may create embarrassing situations and hence have to be avoided. Jewelry and accessories have to be kept to the minimum, lower heeled shoes are preferable than the high heeled or flat ones, sandals are not part of the corporate dressing from the safety point of view. Even though intelligence and entity of the woman carry more weight than the way she dresses, the physical appearance is very important for creating the first impression.

Power dressing in women:

The latest trend in corporate world is “power dressing”. Power dressing gives the women employees a sophisticated look along with giving a younger look to them. It does not give any room for cultural and gender bias. Power dressing in women gives them a feel of empowerment, authority and also increases their confidence level. The image is lifted up at the work environment. It helps in maintaining a high professional standard. Women prefer a softer touch to the dress they wear. Hence, they prefer to add their style of accessories to the power dressing. Most of the women choose apparels, which are comfortable to wear and at the same time give them a feminine look. Women at work can adopt a conservative style of dressing as it improves the image in the society while retaining the elegance in them. The color of the dress is very important as it reflects the personality of the women. Pastel colors, black and dark brown go very well with the corporate dress.






















Sunday, October 17, 2010

Silicone implants for a tattoo



This uncommon tattoo is a idea of eccentric man from Pacific Beach in San Diego, California . His tattoo of lady now have breast silicone implants but he got a horrible infection and had to have it all taken out. Incredibly, he said that after it heals up (IF it heals up), he was going to try it again all through infection almost cost him his leg.






25 Reasons Why We Love to Watch Tennis (25 pics)


















2.1 Main Features of the Java Language

Java follows C++ to some degree, which carries the benefit of it being familiar
to many programmers. This section describes the essential features of Java and
points out where the language diverges from its ancestors C and C++.

2.1.1 Primitive Data

Other than the primitive data types discussed here, everything in Java is an
object. Even the primitive data types can be encapsulated inside librarysupplied
objects if required. Java follows C and C++ fairly closely in its set of
basic data types, with a couple of minor exceptions. There are only three
groups of primitive data types, namely, numeric types, Boolean types, and
arrays.

Numeric Data Types

Integer numeric types are 8-bit byte, 16-bit short, 32-bit int, and 64-bit long.
The 8-bit byte data type in Java has replaced the old C and C++ char data
type. Java places a different interpretation on the char data type, as discussed
below.

There is no unsigned type specifier for integer data types in Java.
Real numeric types are 32-bit float and 64-bit double. Real numeric types
and their arithmetic operations are as defined by the IEEE 754 specification. A
floating point literal value, like 23.79, is considered double by default; you
must explicitly cast it to float if you wish to assign it to a float variable.

Character Data Types

Java language character data is a departure from traditional C. Java’s char data
type defines a sixteen-bit Unicode character. Unicode characters are unsigned
16-bit values that define character codes in the range 0 through 65,535. If you
write a declaration such as
char myChar = ‘Q’;
you get a Unicode (16-bit unsigned value) type that’s initialized to the Unicode
value of the character Q. By adopting the Unicode character set standard for its
character data type, Java language applications are amenable to
internationalization and localization, greatly expanding the market for worldwide
applications.

Boolean Data Types

Java has added a boolean data type as a primitive type, tacitly ratifying
existing C and C++ programming practice, where developers define keywords
for TRUE and FALSE or YES and NO or similar constructs. A Java boolean
variable assumes the value true or false. A Java boolean is a distinct data
type; unlike common C practice, a Java boolean type can’t be converted to
any numeric type.