Friday, 22 February 2013

DeadLine’s Virus Maker – Perfect Tool For Making Viruses


DeadLine’s Virus Maker – Perfect Tool For Making Viruses

Everybody today wants to protect themselves from viruses, but will never miss a chance to play pranks with their friends. So, DeadLine’s Virus Maker is a tool that can make small viruses to let you play pranks with your friends. It provides you with some basic functions like infinite message box, force shutdown, infinite beeping, disabling task manager and registry editor and much more.



Features:


  1. Show Messagebox On Startup
  2. Infinite Beeping
  3. Infinite Message Boxes
  4. Disconnect From Internet
  5. Visit Random URL at Random Time
  6. Disable Firewall
  7. Disable Firefox
  8. Disable Chrome
  9. Disable IE
  10. Open Random Files
  11. Force Shutdown
  12. Disable Task Manager
  13. Disable Command Prompt
  14. Disable Registry Editor
  15. Disable Explorer
  16. Random Mouse Movements
  17. Random Keyboard Key Pressed
  18. Close Windows Live Messenger
  19. Close Skype
  20. Close Yahoo Messenge
  21. Random Things


0 comments:

Wednesday, 20 February 2013

Geo News Live in VLC


Geo News Live in VLC

awesome trick ..

  • open your VLC media player
  • press ctrl+N
  • then type "rtsp://202.125.158.230:554/stream1_wifi.sdp" (without quotes)
  • hit play ...wait and watch ..COMMENT PLS!!

0 comments:

Add Rainbow Colored Flashing Link Style


Add Rainbow Colored Flashing Link Style


Want to make a link to your blog and rainbow-colored flashing when the pointer is affected? It is very easy

I have to write two set of instructions for each steps, as some of you are using the default layout, and some of you are using the new layout.Backup your template before attempting this tutorial.


1: Go to Home 
2: Click On template
3: After that Click on Edit HTML 



4: Click on Expand Widget Templates.





5: Now press (CTRL+F) 


And find this Code


</head>

And exactly before it add the This code :

<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><a href="http://msajawalyounas.blogspot.com" target="_blank" title="Blogger Widgets"><img src="http://safir85.ucoz.com/24work-blogspot/cursor-24work-10.png" border="0" alt="Blogger Widgets" style="position:absolute; top: 0px; right: 0px;" /></a>

Now Click Save Template 



And you are done.

Customize And Demo.
You can change this value



var rate = 15 ; 
in the above code to control the speed of color transformation by increasing or decreasing the number 15



0 comments:

MS Office 2010 Professional


MS Office 2010 Professional













Microsoft Office 2010 is a worthy upgrade for businesses and individual users who need professional-level productivity apps, but it will take some time to get acclimated with the reworked interface. Users looking for bare-bones, dead-simple office software should stick with Google's and other online offerings or continue using older Office versions they have already mastered.
The world has changed plenty since Microsoft introduced Office 2007. In that time, Google has become a major player, with its suite of online tools, and even Apple has made inroads with its iWork office suite, though admittedly within a smaller set of computer users. Even with the vast user base of Microsoft Office products, with new competitors in the market, Microsoft Office 2010 needed to be good. Playing catch-up and looking forward simultaneously, Microsoft tries, in Office 2010, to remain (or become) the central hub of your working life, letting you use your PC, smartphone, and the Web to make your projects come together more efficiently.
It's true: every application in the suite has been improved and tweaked in an effort to make your busy days more efficient, but you'll need to be ready for a learning curve to get accustomed to Office 2010's changes.
This update isn't for everyone; if you're a power user who has a specific way you like to do things and want all the same functionality as an older version of Microsoft Office, then you can probably get by on an older version. Just like with Office 2007, however, Office 2003 or earlier versions of the suite will need conversion tools to open many of the now default Open XML file types. But if you are eager to try out new time-saving features and are willing to spend some time learning where everything is, we think you will appreciate this major update. Even new users of productivity suites and students looking for a solid set of productivity apps will benefit from the new features in Office 2010--and surely the Academic license is more than reasonable for what you get.

Office 2010 is almost here

One of the major new changes to the suite is the ability to collaborate and share your work using Web apps. You can collaborate using Web apps over your SkyDrive (25GB of available online storage) on Windows Live. You may also be able to collaborate with a coworker using a slimmed down Facebook-connected version of the Web apps, however, Microsoft representatives explained to us that the Facebook-connected version we saw in the company demo is only a pilot program to test social media features. As is, having two ways to connect seems a bit confusing to us, but we'll reserve judgment until the bugs are ironed out.






0 comments:

Ubuntu Skin Pack For WIndow 7


Ubuntu Skin Pack For WIndow 7

                              ubuntu skin pack


Transform WIndow 7 to Ubuntu 

Note : Skin Packs installer have easy and safe install option , Please unistall old or other version of skin packs before install new version. Before install close all runnig program , after finish restart your system.
Support:
Windows 7 , Windows 7 SP1 – [X86_X64] – [All Language] – [All Version]

For WIndow7 X86


For WIndow7 X64

0 comments:

Wondershare Data Recovery


Wondershare Data Recovery












Wondershare Data recovery is a software utility that helps you to recover lost data. the data that is mistakenly deleted, or emptied from recycled bin or that which is lost during system formatting can be recovered.
it also helps you to recover the data lost due to virus infection and files that are corrupted due to viruses. wondershare data recovery is compatible with most versions of windows which makes it easier to work wit.
wondershare is helpful software when data is lost during power failure or when it is deleted using shift+del. wondershare data recover can be bought at reasonable price.
wondershare data recovery also helps you to recover data lost from removable usb drives, cd roms,memory sticks. wondershare data recovery supports FAT12, FAT16, FAT32, NTFS/NTFS5 file systems.



0 comments:

Free Call All Over The World

1-Sb se pehle Is website open kryn. Click Here

2-Yaha apko sign up hona hy

3- Ab setting box me ap ne ALLOW or Remember pr click krna hy. Or Phir CLOSE pr click kry. 

4- Next Page me jo box hy usme koi b number likhyn

5- Ab jo page open hoga usme "Add a new number" k andar ap ny apna sim number likhna hy.yad rahy jo number ap use kr rahy hyn vohi likhyn.

 6- Ab ap k pas  call aye gi uss number par jo app ny diya hua ha apna number

7- Jis vaqt call aye gi thik usi vaqt screen pr 1 code b likha hua nazar aye ga. 

8-Apne vo call receive kr k ye code call k doran mobile pr linkhna hy.

9- jb ap number likh lain gy to mobile screen pr verify complete likha aaye. 

10-bs kaam khatam.Credit apko mil gya hy. Apny PC se kisi ko bi puri dunya me call kryn. 

>>END<<

0 comments:

Rajnikant Website – The Only Site That Runs Without Internet



Rajnikant, the man who does the impossible, has one more thing attached to his name. The developers at desimartini.com, impressed by Rajnikant’s work, wanted to make a really unique website, popularly called Rajnikant Website that runs only if you have your internet disabled. When you enter the site, it asks you to disable your internet connection. You can only proceed if you have your internet disabled. If you enable it again, the site detects it and asks you to disable it again to continue browsing the site.
Rajnikant Website
Above is a screenshot when you open Rajnikant Website. The only way to enter the website is to disconnect your internet connection. As soon as you disconnect it, “you will earn the right to browse the awesome site” this is what the site says. The site runs with Rajni’s power and offers The Story of Rajnikant’s Life, some lesser known facts and some impossible things that only Rajnikant is capable of doing.

0 comments:

Free increase Facebook page Likes,subscribers, Google plus circles,twitter followers and More. Checked!


Free increase Facebook page Likes,subscribers, Google plus circles,twitter followers and More. Checked!


Social icons collection

Free Social Media Promotion:

Increase Your Facebook Page Likes, YouTube subscribers, Google+ Circles, Twitter Followers, Pinterest Followers and others.
If you have Website or Blog and you want to promote Your business or Providing Services to more users, then social media is a Great Factor to do itIn the start of your business it is difficult to promote, and you need support and contribution of users, and you can get these contribution by social sites.The method i am teaching today to increase Facebook fans,promote twitter to increase your followers , and Google plus circles, +1s is the legal way and Safe and checked by Me. I hope you will enjoy and will like.


Social sites to promote Your business and services

Increase Facebook Page Likes,Your subscribers,Twitter followers,Google pluss, Circles and much more:

0 comments:

Remove Facebook Timeline And Disable New Chat Bar

Facebook Remove Timeline Revert To New Chat4Remove Facebook Timeline and also disable the Facebook’s new chat bar and use your old Facebook chat by installing a simple extension. SocialReviver, an extension for Chrome, Mozilla Firefox and Opera lets you simply get back your old Facebook without the need of any coding, or any hassles. The extension changes your view from Timeline to old profile view, changes your chat application back to old where you can see only the online friends and maintain lists and can stay offline/online for any particular list. Read below for all its awesome features.




 Facebook Remove Timeline Revert To New Chat Screenshot1
  List Of All The Settings Provided By SocialReviver



Features Of SocialReviver :


1. Remove Timeline From Facebook and shows you the old profiles for both profiles and pages. You can choose if you want to see the Timeline or the old profile for pages and profiles individually. (Others will still see your Timeline profile. But you will see all profiles without the timeline.)

2. Use old Facebook chat. That means you will see only the online friends. Also with the extension installed, you can limit your availability to specific people, with whom you want to chat, as you were able to do with the old chat bar by maintaining lists.

3. Now-a-days Facebook shows “seen” when somebody reads your message and also when you read someone’s message, they come to know about it. SocialReviver also has a nice feature that can hide from your friends when you read their message. This is still an experimental feature and may not work properly.

4. You can make the Facebook’s blue top bar stick at the top even if you scroll down. This is very useful feature since you do not have to first scroll to the top to go to your Home, Profile page or to see any new friend request, message or notifications.

5. You can disable/enable any of the feature shown in the above screenshot by just single and easy to use settings menu. You can open the settings menu by clicking on the down arrow after the “Home” link in the top blue bar and then clicking on “SocialReviver Settings”.


Click Here For ==> Install Social Reviver (Chrome, Opera, and Mozilla Firefox)

0 comments:

Tuesday, 12 February 2013

Mac OS X Kalyway Leopard 10.5.2 DVD Intel Amd.4122511 HTTP Download





Download HTTP Kalyway Leopard 10.5.2 DVD
Requirements:
*Computer with an Intel or AMD, PowerPC G5, or PowerPC G4 (867MHz or faster) processor.
*512MB of memory
*DVD drive for installation
*8GB of available disk space
*Some features require a compatible Internet service provider; fees may apply.
*Some features require Apple's .Mac service; fees apply.

all ich support
sitll remain problem with micron ide dvd!
based on slipstream script by DENSE
ich9 support by DUNE !:)
if you have problems on reboot with video gfx (blue or black screen)

All you have to do is just press F8 at Darwin's prompt and then type
-s(single user mode)
then
at root
type
mount -uw /
Vand /movevideodrivers
then it will be prompt to move video drivers by class ( nvidia ; ati ; or intel gma) voila!
type yes to confirm or enter to skip !
Even if you have chosen a kernel at install, you can still try the others kernels after installation

All you have to do is just press F8 at Darwin's prompt and then type the kernel's name you want to
boot with :
sleepkernel
(intel/amd/sse2/sse3)
speedstepkernel
(intel/amd/sse2/sse3)
qnforcekernel
(intel/sse3)
bmodbinkernel
(intel/amd/sse3)
svanillakernel(intel/sse3)
Kernels
kernel_9.2_sleep
kernel_9.2_speedstep
kernel_922_modbin
kernel_92_nforce
kernel_vanilla_922

Graphics_Drivers
Ati_Radeon
X1000Series
ATYinject for 19xx series
NATIT_For_X1000_series
ATIRadeonX1000SeriesGraphics
1950gt_pro
X2000_HD_and_X3000_HD_Series
NATIT_For_X2000_X3000_Series
HD2900xt_pro
white_menus_fixe_HD2600_pro
white_menus_fixe_HD3850_3870x2
ATI_Radeon_HD_2600_Pro_AGP (this one no need for natit and white menufix)
ATI_Radeon_HD_2600_XT_AGP (this one no need for natit and white menufix)

Nvidia_Geforce (select one only)
NVinject
NVinject-128
NVinject-256
NVinject-320
NVinject-512
NVinject-640
NVinject-768
NVinjectGO
NVinjectGO-512
NVInject_Clevo_M570RU 8700gfx
NATIT_gfnvidia
Intel_GMA
GMA950 (tiger one full accelerated and resolution support but with mouse artifact)
GMAX3100 (not tested)

Audio_Drivers
Intel NVIDIA VIA ATI HDAudioController
NVIDIAAC97Audio
Realtek Sigmatel ConexantAnalogDevicesHDAudioCodec (generic output support)
ALC883_DS3,p5k pro etc...
alc889a_shutdown_support
ALC882_p5w_dh_deluxe
sigmatel_9200_inspiron_9400

Networks_Drivers
Networks_Cards
AppleBCM440XEthernet
AppleBCM5751Ethernet
AppleRTL8169Ethernet
MarvellNetworkAdapter
RealtekR1000
mskge_marvell
forcedeth

Wifi_Card
IO80211Family
AtherosWirelessAdapter
Zydas-ZD1211-1215
wifi_Broadcom_airport
RT2500-RT73-USB
wifi_AP_Realtek_RTL8187L
wifi_Realtek_RTL8187B
iwi2200
Mobo_Chipsets (support for ati ; nvidia ; intel ; via ; sis ; marvell ; jmicron)
AppleNForceATA
AppleOnboardPCATA
AppleVIAATA
AppleGenericPCATA
SiliconImage3132

Thirds_Applications
(will be installed in /applications/KOOLSOFTS/)
adium
archives
candybar
changeFinder
colloquy
fairmount
Growl
GmailNotifier
kextHelperB7
Eonyx
macam_iusbcam
MacTheRipper
Proxi
Wpacifist
perian
ppfomatic
SimplyBurns
Ksolarseek
stuffitExpander
dtextmate
transmission
vlc
xbench

Patches
Hardcoded_SMBIOS
Lastnetkassmbios with coreplayer fix , mozzy and logmein !
AppleSMBIOS-27-Default
AppleSMBIOS-27-667
AppleSMBIOS-27-800
AppleSMBIOS-27-1066
SMBIOS-27-DDR3-1333
AppleSMBIOS-27-IM
AppleSMBIOS-27-MB
AppleSMBIOS-27-MBMem
AppleSMBIOS-27-MP
OLD tiger SMBIOS_1.0.1
SSE2_Jas1048_ACPI_APIC (may or not work)
AppleACPIPlatform
AppleAPIC

Others PATCHES
cpus=1 flag
Francais_pc_keyboard_layout
TimeMachineFix
PowerManagement_bundle (don't install it if you have select sse2 patch !!!)
PowerManagement_bundle (don't install it if you have select sse2 patch !!!)
IntelMemoryController
AMD_1052_Patches (select patch 1 or patch 2)
AMD_1052_Patch_test_1
AMD_1052_Patch_test_2
q-legacy flag

Enjoy ^^
Download:
Mac OS X Kalyway Leopard 10.5.2 DVD Intel Amd

0 comments: