Showing posts with label and. Show all posts
Showing posts with label and. Show all posts

Thursday, May 25, 2017

Top 10 Twitter tips and tricks

Top 10 Twitter tips and tricks


Below is a listing of our top 10 favourite Twitter
tips and tricks. These tips will help make your
Twitter experience more enjoyable and can help
increase your followers.
Customise
Change your profile picture. Use a picture of
yourself to make it seem more personalised if
this is your personal Twitter account.
Utilise as much of the 160-character limit
Twitter BIO space allows. Include keywords your
followers or potential followers may be
searching for.
Create your own background image. However,
do not make the image too much like an ad or
sales pitch. The background image must be less
than 800k and we recommend a size of
1600x1200 for a large image or smaller if you
plan on tiling the image or just having it on the
left-hand side. Finally, keep in mind that smaller
resolutions and monitor sizes will hide much of
the background.
Third-party tools
Take advantage of the hundreds of different third-
party online tools and services that enhance your
Twitter experience. Below are a few of our
favourites.
TwitPic - Take advantage of TwitPic to post
pictures on your tweets. If you want to post
pictures while away from the computer, use the
Twitterific app.
Qwitter - Great service that sends an e-mail
any time someone unsubscribes from your
Twitter profile and mentions a possible Twitter
post you made that may have caused them to
leave.
Manageflitter - Fantastic site for managing
your followers and getting an easy to read
overview of people not following you back, quiet
users, and inactive users.
WeFollow - Great website that allows you to add
yourself to a listing of Twitter users by tags you
find interesting.
SocialOomph - Another great service with a
collection of free Twitter tools including the
ability to schedule when a tweets gets posted.
Tweetbeat - An excellent site that takes the
trending topics on Twitter and gives you a
clearer explanation of present and past trending
topics.
TwitterMeme - Another great location to find
the hottest links on Twitter.
Twitter Grader - Great service that grades any
Twitter account and gives you additional details
and ranking information.
Twitter Fan Wiki Apps - Finally, this wiki has
a listing of several hundred different Twitter
applications and tools for users wanting more.
Use Twitter search
Take full advantage of the Twitter search tool.
Below are just a few tips that can help improve
your search capabilities on Twitter.
Search for your website or blog URL and see if
others are mentioning your page.
Search for anything near you by adding
near:"city state". For example, typing
near:"Salt lake city Utah" club would return
current tweets that have happened in Salt Lake
City, Utah with the keyword club in them.
Find people who you may enjoy following by
searching for keywords that interested you.
If you do not want tweets with links add ? -
filter:links at the end of your search query.
Need more options, use the Advanced Twitter
search.
Any time you get excellent results click the
"Save this search" button to save that search.
These searches can then be found under "Saved
Searches" on the right-hand part of your profile
on the old Twitter interface or under the
"Searches" tab next to your timeline on the new
Twitter interface.
Followers
Engage followers.
Do not follow too many people. No one is going
to follow someone who is following thousands
of people but only has 10 followers.
Retweet interesting posts.
Retweet and participate in conversations with
people with a lot of followers.
Realize it is impossible for anyone to read every
tweet.
When first joining do not follow hundreds of
people, doing this may mark you as a bot.
Create useful and
interesting tweets
Try making all your tweets informative, useful,
or funny.
Do not post mundane posts, e.g. eating a bowl
of cereal.
Add hastags to your tweets. For example, if your
tweet is about computers, consider adding
#computer in the tweet.
Tweet frequently. No one is going to follow
someone they do not know who has not tweeted
in months. Try at the very least to tweet a few
times a week or daily if you can manage.
Do not whine or complain. Everyone will
unfollow anyone who constantly whines or
complains.
Try making your valuable tweets during the
times people will most likely see them.
Keep some space available in your tweet in
case someone retweets your post.
Use special characters in your tweets.
Know the lingo
Know the Twitter lingo, these are just a few
examples: @reply, Direct Message (DM), Follower,
Hashtag, Retweet (RT), Trending Topics, and
Tweet. See the Twitter description for a full listing
of Twitter terms and Lingo and related terms.
Follow the masters
Following a few of the masters of Twitter and
Social Networking will give you an understanding
of how to tweet better, posts to RT, and
inspiration for tweets of your own. Below are the
top ten Twitters we recommend following.
@GuyKawasaki
@Scobleizer
@jimohib
@briansolis
@tonyrobbins
@kevinrose
@timoreilly
@donttrythis
@zappos
@brainpicker
Twitaholic - A full listing of the top users on
Twitter based on Followers. This is a terrific
service to find and follow the top users and
possibly incorporate some of the ideas they are
doing on their account.
Tip: Many of the first few hundred people are
celebrities on Twitaholic, if they do not interest
you skip the first page.
Create and use lists
Twitter lists are an excellent method of filtering
filter through the people you follow. To create a
list, click the Lists link and then Create a list.
After creating a list visit the persons profile page
you wish to add and click the list icon, as shown
in the picture to the right. Our Computers and
Tech list is an example of a public list we created.
Go Mobile
Apple iPhones, Blackberry phones, Android
phones, Windows phone 7 phones, and most of
the other smart phones have Twitter applications.
Take full advantage of these applications. For
users who do not have smart phones Twitter also
has extensive support for SMS, which can send
tweets over a text message.
Advertise
Mention your Twitter page as many places as
you can, e.g. your business card, e-mail
signatures, web page, blog, Facebook, etc.
Create a tweet button or at least your Twitter
name on your pages, similar to the below
examples.

Sent from @jimohib....Follow on twitter.

Go to link download

Read more »

Friday, May 19, 2017

Most useful and frequently used LINUX UNIX commands with examples

Most useful and frequently used LINUX UNIX commands with examples


Most useful and frequently used LINUX/UNIX commands with examples

Hi Geeks, This article will provide the most useful ad frequently used LINUX / UNIX commands along-with the example.

If I miss any command then dont forget to write them in comment.



  1. grep command: Searches for given string in files
    1. grep -i "search_text" file_name
    2. grep -ilrn "search_text" *             (To search in all files)
      Attributes: i for ignore case, l for list names of files, r for searching recursively, n for line number where text is matched in the file
  2. find command: Finds files using file-name
    1. find -iname "MyTextFile.c"
    2. find -iname "MyTextFile.c" -exec md5sum {} ;    :Executes commands on files found by the find command
    3. find ~ -empty                     :Finds all  empty files in home directory
  3. pwd command: pwd is Present working directory. It prints the current directory.
  4. cd command: It is used to change the directory.
    1. Use “cd -” to toggle between the last two directories
    2. Use “shopt -s cdspell” to automatically correct mistype directory names on cd
  5. diff command: compares two files
    1. diff -w file1.txt file2.txt
  6. tar command examples:
    1. tar cvf archive_name.tar dirname/     :Creates a new tar archive
    2. tar xvf archive_name.tar   : Extracts from existing tar archive
    3. tar tvf archive_name.tar   : view an existing tar archive
  7. gzip command examples
    1. gzip file.txt : creates a *.gz compressed file
    2. gzip -d file.txt.gz  : Uncompress a *.gz file
    3. gzip -l *.gz  : Displays the compression ratio of the compressed file
  8. bzip2 command examples
    1. bzip2 file.txt  : creates a *.bz2 compressed file
    2. bzip2 -d file.txt.bz2  : uncompresses a *.bz2 file
  9. unzip command examples
    1. unzip test.zip   : Extracts the zipped file
    2. unzip -l test.zip  : views the content of zipped file without unzipping
  10. ssh commands: It is used to work remotely
    1. ssh -l kamal remotehost.com     : Login to remote gost
      ssh -l kamal 10.201.42.12
    2. ssh -v -l kamal remotehost.com   : Debug ssh client
    3. ssh -V : Display ssh client version
  11. ftp command examples
    1. ftp IP/hostname    : connects to a remote server
    2. ftp> mget *.html  : Download file from that server
    3. ftp> mls *.html -   : views the file names located on the remote server
  12. wget command :
    1. wget http://prdownloads.sourceforge.net/sourceforge/nagios/nagios-3.2.1.tar.gz: to download any file from internet
    2. wget -O taglist.zip http://www.vim.org/scripts/download_script.php?src_id=7701 :  Download and store it
  13. vim command examples
    1. vim +14 file.txt   : Go to the 14th line of file
    2. vim +/search_text file.txt  : goto the first match of the specified search text
    3. vim -R /etc/passwd  : Opent he file in the read only mode
  14. sort command examples
    1. sort nameList.txt :  Sorts a file in ascending order
    2. sort -r nameList.txt :  Sorts a file in descending order
    3. sort -t: -k 3n /etc/passwd | more :  Sorts passwd file by third field
  15. xargs command examples
    1. ls *.jpg | xargs -n1 -i cp {} /external-drive/directory    : Copy all images to external drive
    2. find / -name *.jpg -type f -print | xargs tar -cvzf allImages.tar.gz    : Search all jpg images in the system and archive it.
    3. cat url-list.txt | xargs wget –c  :  Downloads all the URLs mentioned in the url-list.txt file
  16. ls command examples
    1. ls -lh :  Displays filesize in KB / MB
    2. ls -ltr  :  Orders Files Based on Last Modified Time
    3. ls -F   : Visual Classification of Files
  17. sed command examples
    1. sed s/.$// filename  :Converts the DOS file format to Unix file format (removes or )
    2. sed -n 1!G;h;$p file.txt   : Prints file content in reverse order
    3. sed /./= file.txt | sed N; s/ / /  :  Adds line number for all non-empty-lines in the file
  18. awk command examples
    1. awk !($0 in array) { array[$0]; print } temp   : Removes duplicate lines
    2. awk -F : $3==$4 passwd.txt   ;  Prints all lines from /etc/passwd that has the same uid and gid
    3. awk {print $2,$5;} file.txt   : Prints only specific field from a file.
  19. shutdown command examples
    1. shutdown -h now   : Shutdown the system and turn the power off immediately.
    2. shutdown -h +10   : Shutdown the system after 10 minutes.
    3. shutdown -r now    : Reboot the system
    4. shutdown -Fr now  : Force the filesystem check during reboot.
  20. crontab command examples
    1. crontab -u kamal -l  : View crontab entry for a specific user
  21. service command examples : Service commands are used to run the system V init scripts. i.e Instead of calling the scripts located in the /etc/init.d/ directory with their full path, we can use the service command.
    1. service ssh status  : checks the service status
    2. service --status-all : Check the status of all the services.
    3. service ssh restart :  Restart a service
  22. ps command :  It is used to display information about the processes running in the system.
    1. ps -ef | more  : view the current running processes
    2. ps -efH | more  :  To view current running processes in a tree structure. H means process hierarchy.
  23. free command: It is used to display the free, used, swap memory available in the system.
    1. free
    2. free -g :  If you want to quickly check how many GB of RAM your system has use the -g option. -b option displays in bytes, -k in kilo bytes, -m in mega bytes.
    3. free -t  : use this if you want to see a total memory ( including the swap)
  24. top command: It displays the top processes in the system, by default sorted by cpu usage. To sort top output by any column, press O (upper-case O) , which will display all the possible columns that you can sort by.
    1. top
    2. top -u oracle : To display only the processes that belong to a particular user use -u option. This command will show only the top processes that belongs to oracle user.
  25. df command: 
    1. df -k  : displays the file system disk space usage. By default df -k displays output in bytes.
    2. df -h :  displays output in human readable form. i.e size will be displayed in GB’s.
    3. df -T : display type of file system.
  26. kill command: It is used to terminate a process. First get the process id using ps -efcommand, then use kill -9 to kill the running LINUX process. You can also use killall, pkill, xkill to terminate a unix process.
    1. ps -ef | grep vim
      kill -9 7243
  27. rm command : Removes a file
    1. rm -i filename.txt  :  Get confirmation before removing the file.
    2. rm -i file*  :  Print the filename and get confirmation before removing the file.
    3. rm -r example  : It recursively removes all files and directories under the example directory. This also removes the example directory itself.
  28. cp command : Used for copying files from source to destination
    1. cp -p file1 file2 : Copy file1 to file2 preserving the mode, ownership and timestamp.
    2. cp -i file1 file2 : Copy file1 to file2. if file2 exists prompt for confirmation before overwritting it.
  29. mv command: used to rename a file / folder
    1. mv -i file1 file2 :  Rename file1 to file2. if file2 exists prompt for confirmation before overwritting it.
    2. mv -f file1 file2 : Rename file1 to file2. if file2 exists overwrite it without prompting for confirmation
    3. mv -v file1 file2 : It will print what is happening during file rename, verbose output
  30. cat command  : used to view the file
    1. cat file1
    2. cat file1 file2  : view multiple files at the same time. It prints the content of file1 followed by file2 to stdout.
    3. cat -n /etc/test.txt  :  It will prepend the line number to each line of the output while displaying the file.
  31. mount command
    1. To mount a file system, we should first create a directory and mount it:
      1. mkdir /newDir
      2. mount /dev/sdb1 /newDir
    2. We can also add this to the fstab for automatic mounting. i.e Anytime system is restarted, the filesystem will be mounted.
      1. /dev/sdb1 /newDir ext2 defaults 0 2
  32. chmod command: chmod command is used to change the permissions for a file or directory.
    1. chmod ug+rwx file.txt   ; Give full access (read, write and execute) to user and group on a specific file.
    2. chmod g-rwx file.txt     : Revoke all access (read, write and execute) for the group on a specific file.
    3. chmod -R ug+rwx file.txt   :   Apply the file permissions to all the files in the sub-directories.
  33. chown command: change the owner and group of a file
    1. chown oracle:dba dbora.sh  :  To change owner to oracle and group to db on a file. i.e Change both owner and group at the same time.
    2. chown -R oracle:dba /home/oracle   : change the owner recursively
  34. passwd command : used to change the password through command line
    1. passwd : User can change their password using this command. It will ask for current password.
    2. passwd USERNAME : Super user can use passwd command to reset others password. This will not prompt for current password of the user.
    3. passwd -d USERNAME  :  Remove password for a specific user. Root user can disable password for a specific user. Once the password is disabled, the user can login without entering the password.
  35. uname command: It displays important information about the system such as — Kernel name, Host name, Kernel release number, Processor type, etc.
    1. uname -a
  36. su command
    1. su - USERNAME  : Switch to a different user account using su command. Super user can switch to any other user without entering their password.
    2. su - raj -c ls :  Execute a single command from a different account name. In the following example, john can execute the ls command as raj username. Once the command is executed, it will come back to john’s account.
    3. su -s SHELLNAME USERNAME :  Login to a specified user account, and execute the specified shell instead of the default shell.
  37. mkdir command: to create directories
    1. mkdir ~/myDir  : creates a directory called myDir under home directory.
    2. mkdir -p dir1/dir2/dir3/dir4/   :  It creates nested directories using. If any of these directories exist already, it will not display any error. If any of these directories doesn’t exist, it will create them.
  38. ifconfig command: used to view or configure a network interface on the Linux system, same as ipconfig in windows.
    1. ifconfig -a  :  View all the interfaces along with status.
    2. Start or stop a specific interface using up and down command as below.
      1. ifconfig eth0 up
      2. ifconfig eth0 down
  39. ping command :
    1. ping google.com : Ping a remote host.
    2. ping -c 5 google.com  :  Ping a remote host by sending only 5 packets.
  40. whereis command
    1. whereis ls    : &nb

      Go to link download

Read more »

Google Search Tips And Tricks How To Search Like A Pro

Google Search Tips And Tricks How To Search Like A Pro


The internet is a vast sea of information,
therefore to get the most out of Google search,
you must instruct the search engine to bring
exactly what you want. Since Google is the
largest search engine in the world, i'll share with
you some tricks on how to search like a pro on
Google.
1. Use of Quotation Marks and Key
Phrases
When looking for something on Google,
envelope the key word with quotation marks to
instruct the search engine to bring all about
what you searching for. For example if you type
in"Reebok", search engine would bring all about
Reebok and nothing else.
2. Time Range Search
If you want to know about the NFL between
2011 to 2014 for example your search would
look like this NFL 2011.2014. This would
instruct the search engine to bring up all about
the NFL between 2011 and 2014.
3. Document Type Search
If you are looking for a particular file type say a
PDF file for example you can instruct Google to
look for PDF files on Technology by typing in
"Filetype: PDF Technology". For word file
replace PDF with docx, for PowerPoint files put
in ppt, for excel type in xls.
4. Inclusive Search
If you want search engine to bring up two terms
in the search, like Apple and Mac for example,
just type Apple OR Mac.
5. Searching for Word Definition
You don't need to type a word on Google and
start looking for dictionary definition on
dictionary sites. To get a definition on Google
just type "define: word" and the definition
would pop up on top page.
6. Make Calculations
You could do your maths calculation if you know
how to use your symbols properly. You could
make calculation direct from Google by using +
- ( ) * to do your basic maths.
7. Unit & Currency Conversion Search
When search for a unit conversion, type in the
command telling the search engine what to
convert and to what. for example "1 dollar in
Naira".
8. Using Wildcards
When you have partial information about
something and want to get full details about the
matter, use wildcards such as asterisk (*) to fill
the missing fields. For example if you want to
know properties Gogle bought and how much,
your search would look like this "Google
acquired * for *".
Enjoy!

Sent from @jimohib....Follow on twitter.

Go to link download

Read more »

Wednesday, May 17, 2017

MTN BB10 New Configuration on Android PC and iOS

MTN BB10 New Configuration on Android PC and iOS


I’m going to make this tutorial to be short and simple as possible so that everyone will be carried along. Regardless of the kind of device you are using, the tech truth is that you can still use MTN BB10 package on your android, pc and iOS devices. While some of us are having serious difficulty in using MTN BB10 package

MTN have 3 Blackberry plans on their portals which includes BB10 MINIBB10 MIDI & BB10 MAXI. We have only explored BB10 Mini and BB10 Midi but we haven’t explored BB10 Maxi. Unfortunately, even the so called Blackberry 10 users are not using any of these subscription plans on their smartphone. 


BB10 Maxi comes with Daily, weekly and monthly. Daily gives you 50MB for N200; weekly gives you 350MB for N1,100 and monthly gives you 1.5GB for N3,000. The good news is that you can download more than the stated MB. You can download gigs with the daily MB, weekly and even more with the monthly plan.

Like I said, it’s for strong hearted and those who are willing to take the risk. I subscribe for the daily this morning and to amaze you, I’ve use it and it works just fine.

How Can I Subscribe to BB10 MAXI

Dial *131# and follow the prompt or

For Monthly dial  *216*5*3#

For Weekly dial *216*5*2#

For Daily, dial *216*5*1#

I’m going to drop 3 VPN settings for right away.

For Android users Using Netloop VPN

Download Netloop VPN from google playstore directly.

Install and Open Netloop then just goto Connection settings,

Tick Enable Proxy, then enter the following

Proxy Host: 10.199.212.2
Proxy Port: 8080 
4. Then Tick Header Tweaking, select Tweak Type, here just choose “Host Replacement”
Then input the the below Settings

Injection Host : — web.blackberry.com
finally, go back and click on “Connect Button” That is all.

For PC User

==>Download Simple server for Pc here

==> Extract the downloaded file and open the extracted file folder, click on the ‘Simpler Servers.exe and run the application.

==>When activated slot the SIM into your modem >>Connect it to your PC then After receiving the welcome to Mtn Bis message, Go to setting on your Modem and configure your

APNweb.gprs.mtnnigeria.net,

Password & username: web >> Also configure your browser and IDM to 127.0.0.1 port 8080 

Open your browser and start surfing and downloading.

TWEAKWARE VPN SETTINGS ON ANDROID, PC AND IOS

==>For Android Users, download tweakware vpn here

==>Launch tweakware VPN and tap on the options button located at the top right corner of your screen

==>Select settings from the screen and tap on Bundled Settings 


==>After you select the Bundle Settings, another window will appear and then tick Use Bundle Settings and in select bundled settings click MTN BIS

Press back and connect.

You can use tweakware VPN free of charge on android phones with a daily limit of 150mb. PC and IOS user download hereand configure as above.

BB10 Package on Android, PC and iOS is not dead, it works better than you think.


Go to link download

Read more »

Sunday, May 14, 2017

Download Command and Conquer 3 Tiberium Wars Free

Download Command and Conquer 3 Tiberium Wars Free


This is how India Inspires the world...!!!!!!!!


First time, I have seen Ice Skating for Indian music.


Very nice.


ICE SKATING



These two got






  • WATCH VIDEO


Go to link download

Read more »

Whatsapp Best Wallpaper Image And Dp Biggest Collection 2016

Whatsapp Best Wallpaper Image And Dp Biggest Collection 2016


Whatsapp Wallpaper- Whatsapp is top growing instant messaging app for android and used by whole world basically in india, it is one of the most using app according to our survey. It is the natural thing thing that everyone needs a perfect Dp, Profile picture, PP, Wallpaper to set on whatsapp profile, Dont worry we have many whatsapp images which gives your profile always 5 stars.

Whatsapp Images- There are many new and old members are using the best whatsapp wallpapers, Dp, images given by us and today we have more than 100+ Images for you to set it on your whatsapp profile as well as for sending them to any one and give a perfect smile on your friends and relatives face.

Whatsapp Dp-These Best Whatsapp Wallpaper, Images, Dp is really looking fabulous when you set them first time and everyone will going to impress because every image is a perfect speaker and surely you will also love them. Send these images to your crush, friends, relatives and all other whatsapp contact and make your relation much better with these whatsapp wallpapers, images, dp and all given below.

Whatsapp Collection-So hope you are ready to download your choice whatsapp wallpapers and whatsapp dp then lets goo and see the best whatsapp wallpaper and whatsapp dp is here and please comment your thought how much you like this post and what suggestion would you like to give us to make our blog more beautiful for you.

#Best Whatsapp Wallpapers 2016 :

We bring a huge collection for you and your friends of whatsapp wallpaper, whatsapp images, whatsapp dp for girls, whatsapp dp for boys, whatsapp quotes, whatsapp love imgaes today hope you like them so lets start from whatsapp best wallpapers.



















 These are the whatsapp wallpaper, for Boys and girls both I hope you like them and set in your whatsapp profile, DP and send them to your whatsapp groups and to your friends to impress them.

#Whatsapp DP For Girls And To Impress Girls 

The Images which I am going to give you is only for girls and for boys these images is do work to impress any girl and show your feeling to her, otherwise these whatsapp dp is only for girls to set them on there Dp or profile and show your ego and attitude to boys. So I Hope now you understand what these whatsapp image, will really speak up to you and your friends see below.












 These are some dp collection for girls, and to impress girl on whatsapp, hope you like these whatsapp images given above and I recommended you to change your whatsapp profile pictuewhatsapp dp,whatsapp wallpaper daily and if you  have any whatsapp groups of your friends then it is better to download them all and send them one by one daily to your group to impress your group members.

#Whatsapp Dp For Boys Best Of 2016 




Go to link download

Read more »

Friday, May 12, 2017

2GO MB is back and better working on MTN

2GO MB is back and better working on MTN


1. Uninstall any other version of netloop or simple Android server.
2. Download and install simple Android server version 3.7.0

UNDER CONNECTION SETTINGS.
3. Tweak type= choose injection.
4. Injection method= get
5. Injection query/url= http://wap.2go.im/s/ZZBefIHHfdJiqFjnQ/
6. Injection Host= wap.2go.im/s/ZZBefIHHfdJiqFjnQ/
7. Injection line, just leave it as it is.
8. Go back to your tweak type and choose queries.
9. Front query= wap.2go.im%2f%3a%00a@

UNDER LOCAL SERVER SETTINGS.

10. Enable global proxy(for rooted phones)
11. Concurrent connections= 10
12. Log level= Debug

Connect with 3g/4g lyte and feel the speed...


Go to link download

Read more »

Tuesday, May 9, 2017

How To Use Adblock and Adblock Plus

How To Use Adblock and Adblock Plus


how to use adblock
Todays Time many of the websites, blog, apps and games application are placed unknown ads. which is really irritated for everyone. You can also save your internet Data pack last more by using Adblock andAdblock Plus, There are some differences between adblock and adblock plus which we also tell you below.

Now a time adblock is also available for android also which really working fine to blog unknown ads from all website in single click and also from any application same as on compute there is Adblock extension for chorme, and Adblock add ons for mozila, is easily available.

  • How Adblock Works :
When you run adblock in your computer or android phone and enable ads disable service in Adblock app or Adblock Extension then there is no ads will appearing on any website to you and its really saves you internet data see how.

  • How Adblock save internet data :
If you are using adblock service and visit on any website or blog which contains certain type of ads then automatically the ads will shutdown for you and you browser will not load them then by this you internet data will also save if the ads will not load. trust me guys 10% of data you save definitely and surf more on internet.

  • Difference Between Adblock and Adblock Plus :
There is not much big difference between them but we can say that Adblock is also much better in work but in features Adblock plus is pretty better then Adblock But according to me Adblock works really with more perfection and in easy way also but you should have to use both to see the difference between both.

  • Adblock App For Android :
Adblock developer most recently launch Adblock Android App, also which is really useful but if you are using UC Browser then you should use Adblock Add ons For Uc, If you are unable to find it just use adblock app, same as for UC Browser also to block the unauthorised ads on websites.

  • How To Block Ads In Android Apps :
Now the best app for block all unknown ads from any android game or android app just use Adblock plus Android App, For it to disable all ads which irritate you during do anything on apps or any android game this is the best way to block all unknown ads from any android game or any android apps. 
Read This- How To Hack Whatsapp In Simple 5 Steps 

 #How To Use Adblock Chrome Extension :

It is really very easy to use Adblock Chrome Extension, Some steps are given below which really helps you to know how to use adblock chrome extension,.
  1. Firstly Go To- Google Chrome Wehbstore
  2. Now Search For Adblock extension and Click on Add to chrome.
  3. Now It will ads to your Chrome Headbar Click On It.
  4. Done!! Adblocking is Start Now and If you wants to pause adblocking click on pause adblock.

#How To Use Adblock Android Application : 

Similar to computer you have to just follow the steps given below and run the Adblock Android App, and thats it.
  1. Firstly Download - AdBlock Android App 
  2. Its the Best Android Browser which saves your internet data pack.
  3. Thats it now no ad will appear to you till you use that browser.

#How To Use Adblock Mozila Add ons :

As like Chrome simple search Adblock add ons in mozila firefox, So if you are looking for steps dont worry guys read the steps below.
  1. Firstly Go To Mozila Add On To- Download Adblock Add ons
  2. Now Just Activate It and Done!!
  3. Now Surf on any website no ads will appear to you.
Read Also- Best Torrent Sites To Download Anything

  • Why Adblock is Killer For Ads Publishers ?
As Like we are using some google adsense ads to earn something from advertiser when you and other visitors visit to our blog and give pageview, impressions and click to the ads we are showing to you well earn something from it and guys the website developers, blogger provide you free service and knowledge and you disable ads from there website or blog really hurts them.

We provide you knowledge about using Adblock app, Adblock Extension, Adblock Add ons, for you knowledge bases but let me tell you that we also using ads on our blog by which we earn something to do more work on blog. So it is your decision what ever you want to do just do it.

  •  Adblock Plus Vs Adblock :
Lets talk about Adblock plus and Adblock as I already taught you that there is no major difference between them but but Adblock Plus is easily available for android as compare to adblock simple verison. So the conditions may vary between them otherwise both done same work as each one do.

Try To Use Adblock Plus also for getting more preferences and use it in many different ways to block unknown and other irritated ads from any website or any apps or game from android also, I you are a mobile user then try to use ADBLOCK Android web browser, for getting high speed surfing on internet and save more data.

Tags:- Adblock Extension, Adblock Add ons, Adblock App, Adblock Plus Extension, Adblock premium, Adblock free, Adblock trick, Adblock Tips, Adblock Vs Adblock Plus, Adblock App for Android, How to use adblock, how to use adblock in chrome, how to use adblock in mozila, how to use adblock in android, how to download android adblock web browser, abdblock web browser, adblock contact, adblock setting, adblock new version, adblock plus new version, adblock new updae, adblock plus new update, adblock plus tips, adblock danger for publisher, adblock danger for web developers, adblock bad for bloggers, adblock developers hater, bloggers hate adblock,.

Go to link download

Read more »