Wednesday, July 24, 2013

Microsoft .NET Framework 4.5


Microsoft

Thank you for downloading

  • Microsoft .NET Framework 4.5

    If your download does not start after 30 seconds,  Click here

    Install Instructions


Microsoft .NET Framework 4.5

Tuesday, July 23, 2013

Download iOS 7 Transformation Skin Pack for Windows 7


Download iOS 7 Transformation Skin Pack for Windows 7

This skin pack will let you transfer your Windows 7 into an awesome look of iOS 7.
Features :-
  • Fully iOS Themed
  • Mac Curser Design
  • iOS look like Windows Explorer
  • iOS Boot Screen
  • iOS Login Screen
  • RocketDock with iOS 7 Themed
  • New TaskBar
  • New Start Menu
  • New Desktop Widgets
  • New Folder Interface
  • iOS 7 Modified Aero Theme
  • Lion Full Glass Theme
  • Flurry Screen Saver
  • New iOS Icons Pack
  • iOS 7 Sound Scheme
Screenshots :-
ios 7 skin pack for windows 7
ios 7 skin pack for windows 7
ios 7 Login Screen for Windows 7
ios 7 Login Screen for Windows 7

Supported OS :
Windows 7 ,  [X86_X64] – [All Language] – [All Version]
For windows 7 starter and home basic first need to patch and Unlock Aero effect.
How to Install :
Download the .exe setup file for your desired OS environment.
Create a Restore point before installing it.
After downloading run the .exe file and follow on screen instructions.
After the setup completes, Restart your Computer.
Downloading Links :

join us on

Facebook

Sunday, July 21, 2013

Facebook Trap

If anybody tried this thing that he might get a list of facebook friends who visited him the most.......................it is a trap from the hackers don't get in this........
This is called Phishing..........................whenever this type of thing appears on ur profile then be sure to look at address bar if it is apps.facebook.com/.......then ok but if it is not then don't proceed.........

join us on Facebook

Tuesday, July 16, 2013

Use USB Pen drive as RAM of Computer

Use USB Pen drive as RAM of Computer

Here I am sharing you a trick to increase your RAM without any extra investment. This trick will surely improve the performance of your computer and increase operational speed. Here you have to use a USB pen drive or flashdrive, which can be used as RAM of your computer. Before trying this trick, make sure this can damage pen drive so be careful. To make it true we have to make some modifications. Just follow given steps carefully

How to use USB pen drive as RAM in Windows XP -:

1. First connect your pen drive to computer. Note that pen drive should be at least of 1GB.
2. Now right click on the my computer and then click properties.
3. Click on Advanced Tab and then Performance.
4. Now click on Advanced and then click on Virtual Memory.
5. Select your pen drive icon and click Custom size.
6. Now view the memory available in your pen drive and note it down then click on OK.
7. Restart your computer and enjoy your fast system.

How to use USB pen drive as RAM in Windows Vista and Windows 7 -:

1. Insert your pen drive and format it.
2. Right click on your pen drive and click on properties.
3. Now click on Ready boost tab and then Use this device.
4. Choose maximum space to reserve system speed then click on OK and Apply.
You've done! use your pen drive as RAM.

You can also use  one of  your hard's partition as virtual memory...(or you can say a  Ram)

Monday, July 8, 2013

Halalgoogling: Search engine for Muslims launches

The search engine filters content according to Islamic law.
A Muslim search engine that blocks forbidden content “according to Islamic law” was launched today, a press release stated.
‘Halalgoogling’ fetches results from leading search engines such as Google and Bing and has a built-in “advanced special filtering system that blocks Haram content according to the Law of Islam”, the press release said.
According to the report, a special and unique filter system excludes forbidden content from its search results such as “pornography, nudity, gay, lesbian, bisexual, gambling, anti-Islamic content”.
According to the report, a team of ‘internet experts’ all around the world had been working for years on the project. The need for such a search engine arose with 1.5 billion Muslims around the world worrying about the content provided over the internet to their children and even themselves.
The system is being updated continuously, and has been designed to respect Muslim culture, the report stated. The new search engine hopes to be the number one search engine in the Muslim community, it added.
Features
Halalgoogling comes up with the following system components for safe searching over the internet:
General category filtering: A filtering of overall search results amongst different categories.
Forbidden sites: A list of blacklisted websites that are not allowed to appear in the search results.
Link filtering: Removal of specific pages/links from within a website, blog or forum.
Haram Keywords: A list of keywords that are not allowed to be searched.
Report button: Which allows users to identify and email Halalgoogling admin when haram content is found.
Only from Pakistan: Option to see page results from within the country exclusively.


Azeem Shera      Published: July 7, 2013


ITEANzzz


Saturday, July 6, 2013

Operator Precedence


C++ Operator Precedence

 
A
 
 
The following table lists the precedence and associativity of C++ operators. Operators are listed top to bottom, in descending precedence.
PrecedenceOperatorDescriptionAssociativity
1::Scope resolutionLeft-to-right
2++   --Suffix/postfix increment and decrement
()Function call
[]Array subscripting
.Element selection by reference
->Element selection through pointer
3++   --Prefix increment and decrementRight-to-left
+   Unary plus and minus
!   ~Logical NOT and bitwise NOT
(type)Type cast
*Indirection (dereference)
&Address-of
sizeofSize-of
newnew[]Dynamic memory allocation
deletedelete[]Dynamic memory deallocation
4.*   ->*Pointer to memberLeft-to-right
5*   /   %Multiplication, division, and remainder
6+   Addition and subtraction
7<<   >>Bitwise left shift and right shift
8<   <=For relational operators < and ≤ respectively
>   >=For relational operators > and ≥ respectively
9==   !=For relational = and ≠ respectively
10&Bitwise AND
11^Bitwise XOR (exclusive or)
12|Bitwise OR (inclusive or)
13&&Logical AND
14||Logical OR
15?:Ternary conditionalRight-to-left
=Direct assignment (provided by default for C++ classes)
+=   −=Assignment by sum and difference
*=   /=   %=Assignment by product, quotient, and remainder
<<=   >>=Assignment by bitwise left shift and right shift
&=   ^=   |=Assignment by bitwise AND, XOR, and OR
16throwThrow operator (for exceptions)
17,Comma