About

Blogger Widgets

Friday 23 August 2013

Toy Story 2 (1999) Movie Watch Online In hindi Free Download


Starring - Tom Hanks, Tim Allen, Joan Cusack, Kelsey Grammer

Director - John Lasseter, Ash Brannon

Genre - Animation, Advanture, Comedy, Family

Movie Info - http://www.imdb.com/title/tt0120363/

Movie Description - Not Available

Toy Story (1995) Movie Watch Online in Hindi Free Download




Starring - Woody, Buzz Lightyear, Mr. Potato Head, Slinky Dog, Hamm, Rex, Andy, Bo Peep, Andy, Sid, Andy's Mom

Director - John Lasseter


Movie Info - http://www.imdb.com/title/tt0114709/

Movie Description - Not Available





Doraemon Great Adventure In South Seas (1998) Movie Watch Online In hindi Free Download


Its My Favourite movie .I like it story Very much.

Starring - Not Available

Director - Not Available

Genre - Animation

Movie Info - Not Available

Movie Description - Not Available








The Smurfs 2 (2013) Online Movie in Hindi Free Download



The evil wizard Gargamel creates a couple of mischievous Smurf-like creatures called the Naughties that he hopes will let him harness the all-powerful, magical Smurf-essence. But when he discovers that only a real Smurf can give him what he wants, and only a secret spell that Smurfette knows can turn the Naughties into real Smurfs, Gargamel kidnaps Smurfette and brings her to Paris, where he has been winning the adoration of millions as the world¹s greatest sorcerer. It's up to Papa, Clumsy, Grouchy, and Vanity to return to our world, reunite with their human friends Patrick and Grace Winslow, and rescue her! Will Smurfette, who has always felt different from the other Smurfs, find a new connection with the Naughties Vexy and Hackus or will the Smurfs convince her that their love for her is True Blue? Written by Columbia Pictures










Jurassic Shark 2012 Hindi Dubbed Online and Download

Info:
Don’t you just love b-movies? Well, we have a mixture here, first up from director Brett Kelly is his upcoming b-movie feature Jurassic Shark, which if it’s anything like the poster, we are in for an awesome time. Courtesy of the guys over at UndeadBackbrain we have the first information and the poster.
At this time, Jurassic Shark is currently in pre-production and the cast hasn’t been finalized just yet. The story was written by David A. Lloyd and Trevor Payer.
Jurassic Shark is “the story of two groups of people — one, a group of students, the other, a group of criminals — who are shipwrecked on an island by a giant shark. The island was once used for illegal drilling, and the oil company inadvertantly released the giant shark from its slumber.”
Jurassic Shark & My Fair Zombie First LookNext up from director Brett Kelly is something that just sounds badass only. Here we have My Fair Zombie which is a horror/comedy and I believe in parts a musical. The film is said to be based on George Bernard Shaw’s PYGMALION.
The story follows a professor of phonetics who attempts to teach a zombie woman to be a proper English Lady.
The film is said to begin shooting this October. However, they are currently holding auditions which are to be held on August 20th and the 21st. We are being told that English accents are mandatory for the film and is open to anyone above the age of 17.









Monday 19 August 2013

Summer Slam 2013 Online and Free Download

Multi-Color Link Hover Effect For Blog


You must have observed how my hyperlinks change color on mouse hover. Normally on mouse hover only a single color change is seen but thanks to Dynamic Drive we can now easily change the color of our links to several colors. I have modified the code a bit for simplicity. This tutorial is really simple to follow and uses a JavaScript which we will save inside Blogger so there will be no external linking at all. Let’s start now,



To add this Flashing Link effect to your blogs do the following,

1:Go To Layout > Edit HTML
Search For
And just above (up)paste the code below(down)



<script type='text/javascript'> //<![CDATA[ var rate = 20; if (document.getElementById) window.onerror=new Function("return true") var objActive; // The object which event occured in var act = 0; // Flag during the action var elmH = 0; // Hue var elmS = 128; // Saturation var elmV = 255; // Value var clrOrg; // A color before the change var TimerID; // Timer ID if (document.all) { document.onmouseover = doRainbowAnchor; document.onmouseout = stopRainbowAnchor; } else if (document.getElementById) { document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT); document.onmouseover = Mozilla_doRainbowAnchor; document.onmouseout = Mozilla_stopRainbowAnchor; } function doRainbow(obj) { if (act == 0) { act = 1; if (obj) objActive = obj; else objActive = event.srcElement; clrOrg = objActive.style.color; TimerID = setInterval("ChangeColor()",100); } } function stopRainbow() { if (act) { objActive.style.color = clrOrg; clearInterval(TimerID); act = 0; } } function doRainbowAnchor() { if (act == 0) { var obj = event.srcElement; while (obj.tagName != 'A' && obj.tagName != 'BODY') { obj = obj.parentElement; if (obj.tagName == 'A' || obj.tagName == 'BODY') break; } if (obj.tagName == 'A' && obj.href != '') { objActive = obj; act = 1; clrOrg = objActive.style.color; TimerID = setInterval("ChangeColor()",100); } } } function stopRainbowAnchor() { if (act) { if (objActive.tagName == 'A') { objActive.style.color = clrOrg; clearInterval(TimerID); act = 0; } } } function Mozilla_doRainbowAnchor(e) { if (act == 0) { obj = e.target; while (obj.nodeName != 'A' && obj.nodeName != 'BODY') { obj = obj.parentNode; if (obj.nodeName == 'A' || obj.nodeName == 'BODY') break; } if (obj.nodeName == 'A' && obj.href != '') { objActive = obj; act = 1; clrOrg = obj.style.color; TimerID = setInterval("ChangeColor()",100); } } } function Mozilla_stopRainbowAnchor(e) { if (act) { if (objActive.nodeName == 'A') { objActive.style.color = clrOrg; clearInterval(TimerID); act = 0; } } } function ChangeColor() { objActive.style.color = makeColor(); } function makeColor() { // Don't you think Color Gamut to look like Rainbow? // HSVtoRGB if (elmS == 0) { elmR = elmV; elmG = elmV; elmB = elmV; } else { t1 = elmV; t2 = (255 - elmS) * elmV / 255; t3 = elmH % 60; t3 = (t1 - t2) * t3 / 60; if (elmH < 60) { elmR = t1; elmB = t2; elmG = t2 + t3; } else if (elmH < 120) { elmG = t1; elmB = t2; elmR = t1 - t3; } else if (elmH < 180) { elmG = t1; elmR = t2; elmB = t2 + t3; } else if (elmH < 240) { elmB = t1; elmR = t2; elmG = t1 - t3; } else if (elmH < 300) { elmB = t1; elmG = t2; elmR = t2 + t3; } else if (elmH < 360) { elmR = t1; elmG = t2; elmB = t1 - t3; } else { elmR = 0; elmG = 0; elmB = 0; } } elmR = Math.floor(elmR).toString(16); elmG = Math.floor(elmG).toString(16); elmB = Math.floor(elmB).toString(16); if (elmR.length == 1) elmR = "0" + elmR; if (elmG.length == 1) elmG = "0" + elmG; if (elmB.length == 1) elmB = "0" + elmB; elmH = elmH + rate; if (elmH >= 360) elmH = 0; return '#' + elmR + elmG + elmB; } //]]> </script>

You can change the value of var rate = 20. This controls the speed with which links change color.

That’s All!

Preview Your Templates To see The New Change.
If You have any problem to do this tell us.

Saturday 17 August 2013

How can I hide my friends list in Facebook?

 If you have timeline (which I assume you have):
1:Go to your profile
 2:Click on your friends list
3:Click to Edit
4:In the popup, click on the icon from the right—in this case the globe, but you might have a different icon, like friends

5:Select Only me (or whatever other option you want)


For More Tricks Visit :  www.haidersafdar.blogspot.com
www.haidersafdar.tk
www.fb.com\haidersafdar110

Friday 16 August 2013

Windows XP Professional SP3 x86 Free Download Full Version

This is the original Microsoft Windows XP Professional SP3 (32-bit) ISO (Volume License) including Microsoft updates until 14.08.2013, Internet Explorer 8, Adobe Flash Player (11.8.800.94), Chipset and SATA drivers. This version is the best from the internet and contains: - NO tweaks or add-ons. - NO additional programs and software added. - NO graphics, scripts and wallpapers added or changed. - NO serial needed during installation, the key is already inserted. - Windows Messenger, MSN Explorer and Internet Explorer 6 were removed. - It's the original image from Microsoft except added updates, IE8, Adobe Flash Player, Chipset and SATA drivers.




Wednesday 14 August 2013

IDM 6.17 Build 7 Free Download Full Version


Internet Download Manager (IDM) is a tool to increase download speeds by up to 5 times, resume and schedule downloads. 
What's new in version 6.17 Build 7

(Released: Aug 06, 2013)

Resolved problems with Google Chrome extension
Added support for Firefox 25 and SeaMonkey 2.20
Resolved problems with downloading videos from several sites
Fixed bugs
What's new in version 6.17 Build 6

(Released: Jul 26, 2013)

Changed Google Chrome extension because of false identification from Google
Resolved problems with downloading videos from several sites
Fixed a bug with high CPU loading
What's new in version 6.17 Build 5

(Released: Jul 19, 2013)

Added support for new video sites changes
Added support for Google Chrome 30
What's new in version 6.17 Build 2

(Released: Jul 12, 2013)

Improved IE 11 integration (Windows 8.1)
Added support for new video sites' changes
Fixed bugs
What's new in version 6.17?

(Released: Jun 27, 2013)

Added support for new types of video streaming sites
Added support for Firefox 24 and SeaMonkey 2.19
Added a workaround for video sites' changes
Fixed bugs
Features:
Comprehensive error recovery and resume capability will restart broken or interrupted downloads due to lost connections, network problems, computer shutdowns, or unexpected power outages. Simple graphic user interface makes IDM user friendly and easy to use.Internet Download Manager has a smart download logic accelerator that features intelligent dynamic file segmentation and safe multipart downloading technology to accelerate your downloads. Unlike other download managers and accelerators Internet Download Manager segments downloaded files dynamically during download process and reuses available connections without additional connect and login stages to achieve best acceleration performance. Internet Download Manager supports proxy servers, ftp and http protocols, firewalls, redirects, cookies, authorization, MP3 audio and MPEG video content processing. IDM integrates seamlessly into Microsoft Internet Explorer, Netscape, MSN Explorer, AOL, Opera, Mozilla, Mozilla Firefox, Mozilla Firebird, Avant Browser, MyIE2, and all other popular browsers to automatically handle your downloads. You can also drag and drop files, or use Internet Download Manager from command line. Internet Download Manager can dial your modem at the set time, download the files you want, then hang up or even shut down your computer when it's done. Other features include multilingual support, zip preview, download categories, scheduler pro, sounds on different events, HTTPS support, queue processor, html help and tutorial, enhanced virus protection on download completion, progressive downloading with quotas (useful for connections that use some kind of fair access policy or FAP like Direcway, Direct PC, Hughes, etc.), built-in download accelerator, and many others. Version 6.16 adds Windows 8 compatibility, adds IDM download panel for web-players that can be used to download flash videos from sites like YouTube, MySpaceTV, and Google Videos. It also features complete Windows 7 and Vista support, YouTube grabber, redeveloped scheduler, and MMS protocol support. The new version also adds improved integration for IE 10 and IE based browsers, redesigned and enhanced download engine, the unique advanced integration into all latest browsers, improved toolbar, and a wealth of other improvements and new features.




Check your Sim Number Jazz, Ufone, Telenor, Zong, Warid.



JAZZ ....*99# 
UFONE *780*3# OR *1#
 TELENOR K LIYE .. TELENOR KI SIM KI BACK SIDE PAR AIK NUMBER HOTA JO 0060 SE SHURU HOTA HA AP WO NUMBER KISI DOSRE TELENOR NUMBER SE 346 PAR SMS KAR DEIN.5 MINT ME AP KO SMS K ZARIYE MATLOOBA NUMBER MIL JAYE GA... FOR EXAMPLE:006080414964052 SEND TO 346
 ZONG K LIYE *100# DIAL KAREIN AND WAHAN SE 1 SELECT KAREIN AND WAHAN APNA KOI DOSRA NUMBER ENTER KAREIN AP KO US NUMBER PE SMS MOSOUL HO JAYE GA JIS ME AP KE UNKNOWN SIM KA NUMBER AA JAYE GA... 
WARID: WRITE MESAGES ME JA KAR CM LIKH K AGAY APNA NUMBER LIKHEN AND 121 PE SEND KAREIN AP KO SMS K ZARIYE CONFORMATION SMS AA JAYE GA............. CM 03137672298 TO 121 AB MJE IS NUMBER PAR WARID KA NUMBER AA JAYE JA

Wednesday 7 August 2013

Stronghold 3 Gold Edition 2013 Free Download

Players are able to choose between two single-player campaigns. A story-driven military campaign that chronicles The Wolf's return through a series of traditional real-time strategy missions and a sim-based economic campaign that has the player focus almost entirely on village productivity and resource management. Both campaigns are fully narrated, telling their stories with a series of black and white graphical novel interludes. Players are also able to 'change history' by choosing whether to attack or defend a number of historical castles in the game's castle siege mode. The game engine utilises Havok physics, which influences the effectiveness of burning log traps and causes buildings and castle walls to crumble realistically. In addition the game engine features a new weather system and advanced lighting. Buildings in Stronghold 3 are more dynamic than before, with the housing capacity and appearance of hovels changing the further they are built from the player's keep. Castle construction is no longer confined to a grid-based system. A new fog-of-war mechanic was introduced for night-time game play, during which all areas outside of the immediate vicinity of the player's castle are hidden in darkness. Players are however able to use torch-holding peasants and other fire-based devices to explore the map at night. They can also illuminate specific areas by setting fire to watch towers. The option for players to launch diseased cows from trebuchets has returned, in addition to smaller animals like pigs and sheep. A Facebook competition was run to let fans vote on the final animal ammunition type, with a sack of diseased badgers eventually making the cut.








Unpack the rar file
 Install the game From Setup.exe 
Play the game


OS : Windows XP, Windows Vista or Windows 7 Or Windows 8 2.66 
Processor : Dual Core CPU - 2.0GHZ
 Memory : 2GB RAM 
Graphics : 256 MB ATI HD2600 XT or better, 256 MB nVidia 7900 GS or better DirectXr : DirectX 9.0c 
Hard Drive : 5 GB space free
 Sound : DirectX 9.0c-compatible sound card






VLC Media Player v2.0.8 x86/x64 (Videolan Final) Free Download

VLC is a free and open source cross-platform multimedia player and framework that plays most multimedia files as well as DVD, Audio CD, VCD, and various streaming protocols.
Simple, fast and powerful media player. Plays everything: Files, Discs, Webcams, Devices and Streams. Plays most codecs with no codec packs needed: MPEG-2, DivX, H.264, MKV, WebM, WMV, MP3... Runs on all platforms: Windows, Linux, Mac OS X, Unix... Completely Free, 0 spyware, 0 ads and no user tracking. Can do media conversion and streaming. Discover all features Screenshots VLC media player - Linux - Gnome VLC media player - Windows 7 - Qt Interface VLC media player - Windows 7 - Qt Interface VLC media player - Windows 7 - Qt Interface VLC media player - Windows Vista - Skins Interface VLC media player - Windows Vista.
The VideoLAN project targets multimedia streaming of MPEG-1, MPEG-2, MPEG-4 and DivX files, DVDs, digital satellite channels, digital terrestial television channels and live videos on a high-bandwidth IPv4 or IPv6 network in unicast or multicast under many OSes. VideoLAN also features a cross-platform multimedia player, VLC, which can be used to read the stream from the network or display video read locally on the computer under all GNU/Linux flavours, all BSD flavours, Windows, Mac OS X, BeOS, Solaris, QNX, Familiar Linux. VideoLAN is free software, and is released under the GNU General Public License. It started as a student project at the French École Centrale Paris but is now a worldwide project with developers from 20 countries.






Winrar 5 Beta 8 Free Download Full Version

WinRAR is a powerful archive manager (Windows, Linux, Mac). WinRAR is a powerful compression tool with many integrated additional functions to help you organize your compressed archives. It can backup your data and reduce size of email attachments, decompress RAR, ZIP and other files downloaded from Internet and create new archives in RAR and ZIP file format. WinRAR puts you ahead of the crowd when it comes to compression. By consistently creating smaller archives, WinRAR is often faster than the competition. This will save you disc space, transmission costs AND valuable working time as well. WinRAR is ideal for multimedia files. WinRAR automatically recognizes and selects the best compression method. The special compression algorithm compresses multimedia files, executables and object libraries particularly well. RAR files can usually compress content by 8 percent to 15 percent more than ZIP files can.
Features of WinRAR:
• Using WinRAR puts you ahead of the crowd when it comes to compression by consistently making smaller archives than the competition, saving disk space and transmission costs.
• WinRAR provides complete support for RAR and ZIP archives and is able to unpack CAB, ARJ, LZH, TAR, GZ, ACE, UUE, BZ2, JAR, ISO, 7Z, Z archives.
• WinRAR offers a graphic interactive interface utilizing mouse and menus as well as the command line interface.
• WinRAR is easier to use than many other archivers with the inclusion of a special “Wizard” mode which allows instant access to the basic archiving functions through a simple question and answer procedure. This avoids confusion in the early stages of use.
• WinRAR offers you the benefit of industry strength archive encryption using AES (Advanced Encryption Standard) with a key of 128 bits.
• WinRAR supports files and archives up to 8,589 billion gigabytes in size. The number of archived files is, for all practical purposes, unlimited.
• WinRAR offers the ability to create selfextracting and multivolume archives.
Recovery record and recovery volumes allow to reconstruct even physically damaged archives.
• WinRAR features are constantly being developed to keep WinRAR ahead of the pack.
WinRAR puts you ahead of the crowd when it comes to compression. By consistently creating smaller archives, WinRAR is often faster than the competition. This will save you disc space, transmission costs AND valuable working time as well. WinRAR is ideal for multimedia files. WinRAR automatically recognizes and selects the best compression method. The special compression algorithm compresses multimedia files, executables and object libraries particularly well. WinRAR is a powerful archive manager (Win32). RAR files can usually compress ******* by 8 percent to 15 percent more than ZIP files can. WinRAR is a powerful compression tool with many integrated additional functions to help you organize your compressed archives. It can backup your data and reduce size of email attachments, decompress RAR, ZIP and other files downloaded from Internet and create new archives in RAR and ZIP file format





 

Links

Powered by Blogger.