Showing posts with label TUTORIAL. Show all posts
Showing posts with label TUTORIAL. Show all posts

Add a Anti Ad blocker to blogger and Increase Earning

Ads are annoying??

Yes, sometime it it. But it's the only way to earn  from a site like blog. So, nowadays everyone use ad blocker so that they won't have to face ads on a site. It's not help the author to earn some money. So, the author won't get any revenue. So, what's the way to turn it back.



Yes, it's the anti ad blocker system. If someone use a ad blocker and try to visit your site, it will stop him and say, "Hey disable your ad blocker or wont be able to see it".

So, in this post I'm gonna show you how to add a anti ad blocker on your blog.

1. Go to blogger.

2. Go to your blog.

3.Go to Layout section.

4. Add a Gadget to any section of your blog.

5. Select a HTML/JavaScript section.



6. Paste the code given below.



<style>#g207{position:fixed!important;position:absolute;top:0;top:expression
((t=document.documentElement.scrollTop?document.documentElement.scrollTop:document
.body.scrollTop)+"px");
left:0;width:100%;height:100%;background-color:#fff;opacity:0.9;filter:alpha(opacity=90);display:block}#g207 p{opacity:1;filter:none;font:bold 16px Verdana,Arial,sans-serif;text-align:center;margin:20% 0}#g207 p a,#g207 p i{font-size:12px}#g207 ~ *{display:none}</style><noscript><i id=g207><p>Please enable JavaScript!<br />Bitte aktiviere JavaScript!<br />S'il vous pla&icirc;t activer JavaScript!<br />Por favor,activa el JavaScript!<br /><a href="http://antiblock.org/">antiblock.org</a></p></i></noscript><script>(function(w,u){var d=w.document,z=typeof u;function g207(){function c(c,i){var e=d.createElement('i'),b=d.body,s=b.style,l=b.childNodes.length;if(typeof i!=z){e.setAttribute('id',i);s.margin=s.padding=0;s.height='100%';l=Math.floor(Math.random()*l)+1}e.innerHTML=c;b.insertBefore(e,b.childNodes[l-1])}function g(i,t){return !t?d.getElementById(i):d.getElementsByTagName(t)};function f(v){if(!g('g207')){c('<p>Please disable your ad blocker!<br/>This site is supported by the advertisement <br/> Please disable your ad blocker to support us!!! </p>','g207')}};(function(){var a=['Adrectangle','PageLeaderAd','ad-column','advertising2','divAdBox','mochila-column-right-ad-300x250-1','searchAdSenseBox','ad','ads','adsense'],l=a.length,i,s='',e;for(i=0;i<l;i++){if(!g(a[i])){s+='<a id="'+a[i]+'"></a>'}}c(s);l=a.length;for(i=0;i<l;i++){e=g(a[i]);if(e.offsetParent==null||(w.getComputedStyle?d.defaultView.getComputedStyle(e,null).getPropertyValue('display'):e.currentStyle.display
)=='none'){return f('#'+a[i])}}}());(function(){var t=g(0,'img'),a=['/adaffiliate_','/adops/ad','/adsales/ad','/adsby.','/adtest.','/ajax/ads/ad','/controller/ads/ad','/pageads/ad','/weather/ads/ad','-728x90-'],i;if(typeof t[0]!=z&&typeof t[0].src!=z){i=new Image();i.onload=function(){this.onload=z;this.onerror=function(){f(this.src)};this.src=t[0].src+'#'+a.join('')};i.src=t[0].src}}());(function(){var o={'http://pagead2.googlesyndication.com/pagead/show_ads.js':'google_ad_client','http://js.adscale.de/getads.js':'adscale_slot_id','http://get.mirando.de/mirando.js':'adPlaceId'},S=g(0,'script'),l=S.length-1,n,r,i,v,s;d.write=null;for(i=l;i>=0;--i){s=S[i];if(typeof o[s.src]!=z){n=d.createElement('script');n.type='text/javascript';n.src=s.src;v=o[s.src];w[v]=u;r=S[0];n.onload=n.onreadystatechange=function(){if(typeof w[v]==z&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){n.onload=n.onreadystatechange=null;r.parentNode.removeChild(n);w[v]=null}};r.parentNode.insertBefore(n,r);setTimeout(function(){if(w[v]!==null){f(n.src)}},2000);break}}}())}if(d.addEventListener){w.addEventListener('load',g207,false)}else{w.attachEvent('onload',g207)}})(window);</script>

7. Save it.

So, it's done. Now check is it work or not.

Thanks for reading. Check out our more Tutorials.

How to Download Movies, Games, Software, Songs for Free with Torrent

Hello, Everyone...

Welcome back again to Blog-tech.


Now, in this post I'm gonna show you how to download anything for free.


WARNING: This is Illegal, So Download with own risk. 
RECOMMENDATION: Use a VPN while downloading.

Search for free VPN

First, Download and Install Utorrent.

Then visit these sites for downloading

Movies


Games, Software, Movies, TV Shows




There are a lot of site for downloading. Just search on Google.

After going to any site you will get magnet link to download. Just click on these link. you will be automatically gone to utorrent. Select directory and hit Ok to download. 

Thanks Everyone.

Start Programming With C - Part 1

Hello & Welcome!!

Here, We are going start a new Tutorial series. In this series we are going to learn programming with C. 



Why C??

Well, Good question. C is called the mother of programming language. It's the closest language to computer. We know computer can't understand any kind of language. It's only know true or false. We have to use a software called compiler to make it understood our program. Compiler compile the code to machine language or binary representation.Then only computer can understand it.
C is closest language to machine language. So, if we learn C, we could go to close to computer. And also if you learn C well, will can learn any other one easily. That's why C...

No more talk....Lets start...

First, We need a compiler to write and compile the code. We will use Codeblocks as compiler. So, go to this link and download codeblocks. After completing the download install the setup. After installing you will see the shortcut icon on desktop. Open it!!

Now, you will see like this. 


Now, we have to create a new file to start programming. For creating a new .c file 

Click> File>New>Empty File

or

Press> Ctrl+Shift+N


     
Now, you will see like this. So, this our main window, We will program here.


Now, before starting programming, we have to save it. So,

Click>File>Save

or

Press>Ctrl+S

Save the file. 

Now, Lets start programming.....!!

First type these...

#include<stdio.h>

int main()
{
    return 0;
}

Typed it?? Lets learn what is it??

#include<stdio.h>

by typing this we have included stdio header file. This is the way to add a file in C language. So, what is header file and what is stdio header file? Why we include it? Header file is pre-maded  file where some function are included. We can use those function by including the header file. There are some header file. Such as, stdio.h, math.h, string.h ......

stdio means standard input output. In this header file some function are included for some basic work such as take input or giving output. That's why we included it.

Next, we are seeing int main(). This is a function and it's the main function a program. We will do all of our programming in this function. For any function we have to use {}. { means starting of a function and } means end of a function. That's why we use it for main function and write a thing return 0; in it. We have written int before main(). It means this main function return integer type value. int is the short form of integer and we will use it in all of our program.

Now, lets come to return 0; .We  will write this at the end of the program. When we will run this program, return return something to the function. and return 0 return nothing. 0 means nothing.
We have used a semicolon at end of the return 0. It means the end of the statement. We have to use it for all statement. 

So, these are the basic thing for writing a program. We have to use it for all program.

Now, we will learn a function which is included in stdio.h header file. Look at this function.

printf();

This is function for printing something. We will use it for printing something. For doing this we will write something in these two ().

Lets write and run our first program.

#include<stdio.h>

int main()
{
    printf("Hey You!!");
    return 0;
}

We tell to print Hey You!! . We will use "" for printing anything.
For running this go to Build>Build and run or Press>F9.

You will see....


So, Congress!! You have done your first program. So, keep going.

That's all for today. Hopefully learned something. See you on Next tutorial..... 

How to Hide any File on your PC without any Software

Everyone have private files. So we have to Hide/Lock those file for keeping those private. But how to hide them easily?? It's a common question. There are many ways to keep them safe. Sometimes we have to use many kind of software. Or, sometimes we lock them by hard way. But, if we need them immediately, we have to go through this hard way. But now I will tell you the easiest way. It isn't require any software.


First off all create your folder and keep your files in the folder.

Then Select it.

Then Click on View like as Picture.



 Then Click on Hide selected items like as this picture.

After clicking that you won't see the folder. Don't worry. We have just Hidden the folder not deleted.


Now the Question is How to bring the folder back, It means how to unhide it. 

It's easy also. 


Just Click on View Tick on Hidden items. Come back. Now you will see the hidden folder.

 Select it and again click on View and then again click on Hide selected items such as picture.



That's it. If you like this post, Please share it. And if you got any problem let me know this. So put it on comment box.

How to Find and View/Recover Saved Wi-Fi password on Android

Welcome. Now I'm gonna show you how to find and view saved Wi-Fi password of your Android phone. It's a easy and small trick.. So, Let's see how to do this.


Sometimes we use a private wi-fi but we don't know the password. if we disconnect with the wi-fi then we have to get travel to get the password again. But if get the password before disconnecting, we can reconnect it without owner help. 

1st Step
You need a rooted phone which is connected. Download "Es File Explorer" from Google Play Store. Open it and click on menu bar and enable "Root Explorar" option.

how-to-see-saved-wifi-passwords

2nd step
Then go to the Folder: data/misc/wifi
here you will see a file named "wpa_supplicant.config"
Open the file and here you will get password with the name of wifi server.



So, Hopefully you got the password

Thanks for reading. Comment if you got any problem

DOWNLOAD PC GAMES

DOWNLOAD PC APPS