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
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
- grep command: Searches for given string in files
- grep -i "search_text" file_name
- 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
- find command: Finds files using file-name
- find -iname "MyTextFile.c"
- find -iname "MyTextFile.c" -exec md5sum {} ; :Executes commands on files found by the find command
- find ~ -empty :Finds all empty files in home directory
- pwd command: pwd is Present working directory. It prints the current directory.
- cd command: It is used to change the directory.
- Use cd - to toggle between the last two directories
- Use shopt -s cdspell to automatically correct mistype directory names on cd
- diff command: compares two files
- diff -w file1.txt file2.txt
- tar command examples:
- tar cvf archive_name.tar dirname/ :Creates a new tar archive
- tar xvf archive_name.tar : Extracts from existing tar archive
- tar tvf archive_name.tar : view an existing tar archive
- gzip command examples
- gzip file.txt : creates a *.gz compressed file
- gzip -d file.txt.gz : Uncompress a *.gz file
- gzip -l *.gz : Displays the compression ratio of the compressed file
- bzip2 command examples
- bzip2 file.txt : creates a *.bz2 compressed file
- bzip2 -d file.txt.bz2 : uncompresses a *.bz2 file
- unzip command examples
- unzip test.zip : Extracts the zipped file
- unzip -l test.zip : views the content of zipped file without unzipping
- ssh commands: It is used to work remotely
- ssh -l kamal remotehost.com : Login to remote gostssh -l kamal 10.201.42.12
- ssh -v -l kamal remotehost.com : Debug ssh client
- ssh -V : Display ssh client version
- ftp command examples
- ftp IP/hostname : connects to a remote server
- ftp> mget *.html : Download file from that server
- ftp> mls *.html - : views the file names located on the remote server
- wget command :
- wget http://prdownloads.sourceforge.net/sourceforge/nagios/nagios-3.2.1.tar.gz: to download any file from internet
- wget -O taglist.zip http://www.vim.org/scripts/download_script.php?src_id=7701 : Download and store it
- vim command examples
- vim +14 file.txt : Go to the 14th line of file
- vim +/search_text file.txt : goto the first match of the specified search text
- vim -R /etc/passwd : Opent he file in the read only mode
- sort command examples
- sort nameList.txt : Sorts a file in ascending order
- sort -r nameList.txt : Sorts a file in descending order
- sort -t: -k 3n /etc/passwd | more : Sorts passwd file by third field
- xargs command examples
- ls *.jpg | xargs -n1 -i cp {} /external-drive/directory : Copy all images to external drive
- find / -name *.jpg -type f -print | xargs tar -cvzf allImages.tar.gz : Search all jpg images in the system and archive it.
- cat url-list.txt | xargs wget c : Downloads all the URLs mentioned in the url-list.txt file
- ls command examples
- ls -lh : Displays filesize in KB / MB
- ls -ltr : Orders Files Based on Last Modified Time
- ls -F : Visual Classification of Files
- sed command examples
- sed s/.$// filename :Converts the DOS file format to Unix file format (removes or )
- sed -n 1!G;h;$p file.txt : Prints file content in reverse order
- sed /./= file.txt | sed N; s/ / / : Adds line number for all non-empty-lines in the file
- awk command examples
- awk !($0 in array) { array[$0]; print } temp : Removes duplicate lines
- awk -F : $3==$4 passwd.txt ; Prints all lines from /etc/passwd that has the same uid and gid
- awk {print $2,$5;} file.txt : Prints only specific field from a file.
- shutdown command examples
- shutdown -h now : Shutdown the system and turn the power off immediately.
- shutdown -h +10 : Shutdown the system after 10 minutes.
- shutdown -r now : Reboot the system
- shutdown -Fr now : Force the filesystem check during reboot.
- crontab command examples
- crontab -u kamal -l : View crontab entry for a specific user
- 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.
- service ssh status : checks the service status
- service --status-all : Check the status of all the services.
- service ssh restart : Restart a service
- ps command : It is used to display information about the processes running in the system.
- ps -ef | more : view the current running processes
- ps -efH | more : To view current running processes in a tree structure. H means process hierarchy.
- free command: It is used to display the free, used, swap memory available in the system.
- free
- 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.
- free -t : use this if you want to see a total memory ( including the swap)
- 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.
- top
- 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.
- df command:
- df -k : displays the file system disk space usage. By default df -k displays output in bytes.
- df -h : displays output in human readable form. i.e size will be displayed in GBs.
- df -T : display type of file system.
- 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.
- ps -ef | grep vimkill -9 7243
- rm command : Removes a file
- rm -i filename.txt : Get confirmation before removing the file.
- rm -i file* : Print the filename and get confirmation before removing the file.
- rm -r example : It recursively removes all files and directories under the example directory. This also removes the example directory itself.
- cp command : Used for copying files from source to destination
- cp -p file1 file2 : Copy file1 to file2 preserving the mode, ownership and timestamp.
- cp -i file1 file2 : Copy file1 to file2. if file2 exists prompt for confirmation before overwritting it.
- mv command: used to rename a file / folder
- mv -i file1 file2 : Rename file1 to file2. if file2 exists prompt for confirmation before overwritting it.
- mv -f file1 file2 : Rename file1 to file2. if file2 exists overwrite it without prompting for confirmation
- mv -v file1 file2 : It will print what is happening during file rename, verbose output
- cat command : used to view the file
- cat file1
- cat file1 file2 : view multiple files at the same time. It prints the content of file1 followed by file2 to stdout.
- cat -n /etc/test.txt : It will prepend the line number to each line of the output while displaying the file.
- mount command
- To mount a file system, we should first create a directory and mount it:
- mkdir /newDir
- mount /dev/sdb1 /newDir
- We can also add this to the fstab for automatic mounting. i.e Anytime system is restarted, the filesystem will be mounted.
- /dev/sdb1 /newDir ext2 defaults 0 2
- chmod command: chmod command is used to change the permissions for a file or directory.
- chmod ug+rwx file.txt ; Give full access (read, write and execute) to user and group on a specific file.
- chmod g-rwx file.txt : Revoke all access (read, write and execute) for the group on a specific file.
- chmod -R ug+rwx file.txt : Apply the file permissions to all the files in the sub-directories.
- chown command: change the owner and group of a file
- 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.
- chown -R oracle:dba /home/oracle : change the owner recursively
- passwd command : used to change the password through command line
- passwd : User can change their password using this command. It will ask for current password.
- passwd USERNAME : Super user can use passwd command to reset others password. This will not prompt for current password of the user.
- 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.
- uname command: It displays important information about the system such as Kernel name, Host name, Kernel release number, Processor type, etc.
- uname -a
- su command
- su - USERNAME : Switch to a different user account using su command. Super user can switch to any other user without entering their password.
- 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 johns account.
- su -s SHELLNAME USERNAME : Login to a specified user account, and execute the specified shell instead of the default shell.
- mkdir command: to create directories
- mkdir ~/myDir : creates a directory called myDir under home directory.
- 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 doesnt exist, it will create them.
- ifconfig command: used to view or configure a network interface on the Linux system, same as ipconfig in windows.
- ifconfig -a : View all the interfaces along with status.
- Start or stop a specific interface using up and down command as below.
- ifconfig eth0 up
- ifconfig eth0 down
- ping command :
- ping google.com : Ping a remote host.
- ping -c 5 google.com : Ping a remote host by sending only 5 packets.
- whereis command
- whereis ls : &nb
Go to link download
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
Wednesday, May 17, 2017
MTN BB10 New Configuration on Android PC and iOS
MTN BB10 New Configuration on Android PC and iOS
Im 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 MINI, BB10 MIDI & BB10 MAXI. We have only explored BB10 Mini and BB10 Midi but we havent 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, its for strong hearted and those who are willing to take the risk. I subscribe for the daily this morning and to amaze you, Ive 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#
Im 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
APN: web.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
Sunday, May 14, 2017
Download Command and Conquer 3 Tiberium Wars Free
Download Command and Conquer 3 Tiberium Wars Free
First time, I have seen Ice Skating for Indian music.
Very nice.
ICE SKATING
These two got

- WATCH VIDEO
Related articles
- MapmyIndia Maps Apk Free Download
- Gaana Hindi Songs Online Apk Free
Go to link download
Whatsapp Best Wallpaper Image And Dp Biggest Collection 2016
Whatsapp Best Wallpaper Image And Dp Biggest Collection 2016
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 :




















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.












#Whatsapp Dp For Boys Best Of 2016




Go to link download
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
Tuesday, May 9, 2017
How To Use Adblock and Adblock Plus
How To Use Adblock and Adblock Plus

- How Adblock Works :
- How Adblock save internet data :
- Difference Between Adblock and Adblock Plus :
- Adblock App For Android :
- How To Block Ads In Android Apps :
Read This- How To Hack Whatsapp In Simple 5 Steps
#How To Use Adblock Chrome Extension :
- Firstly Go To- Google Chrome Wehbstore
- Now Search For Adblock extension and Click on Add to chrome.
- Now It will ads to your Chrome Headbar Click On It.
- Done!! Adblocking is Start Now and If you wants to pause adblocking click on pause adblock.
#How To Use Adblock Android Application :
- Firstly Download - AdBlock Android App
- Its the Best Android Browser which saves your internet data pack.
- Thats it now no ad will appear to you till you use that browser.
#How To Use Adblock Mozila Add ons :
- Firstly Go To Mozila Add On To- Download Adblock Add ons
- Now Just Activate It and Done!!
- 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 ?
- Adblock Plus Vs Adblock :
Go to link download