Tuesday 10 July 2012

How to hide facebook friend list

Many peoples asked me daily, that please help me to "Hide my friend list from other". So finally, here is the full tutorial by which you can change the privacy of your friend list. You can show your friend list in public, and you can easily able to hide it or change privacy only to you.

Well lets start. I will reveal the trick for new timeline users, but you can hide your friends in old view by same process.

  1. Goto your profile.
  2. Click on your friends.
  3. Then on Top Right, Click on Edit.
Facebook friends edit option

      4. After click. These all options will be display.

Facebook friend list privacy options

    5. Change your privacy from Public to Only Me. And your friend list will be hide from others.




How to install Windows 7, Windows 8 and Vista using pen drive


Requirements: 

*USB Flash Drive (Minimum 4GB)

*Windows 7 or Vista installation files.
Follow the below steps to create bootable Windows 7/Vista USB drive using which you can
install Windows 7/Vista easily.

1. Plug-in your USB flash drive to USB port and move all the contents from USB drive to a safe location on your system.

2. Open Command Prompt with admin rights. Use any of the below methods to open Command Prompt with admin rights.

*Type cmd in Start menu search box and hit Ctrl+ Shift+ Enter.

Or 

*Go to Start menu > All programs > Accessories, right click on Command Prompt and select Run as administrator.

3. You need to know about the USB drive a little bit. Type in the following commands in the command prompt:

First type DISKPART and hit enter to see the below message.




Next type LIST DISK command and note down the Disk number (ex: Disk 1) of your USB flash drive. In the below screenshot my Flash Drive Disk no is Disk 3.

4. Next type all the below commands one by one. Here I assume that your disk drive no is “Disk 3”.If you have Disk 2 as your USB flash drive then use Disk 2. Refer the above step to confirm it. So below are the commands you need to type and execute one by one:


SELECT DISK 3  
CLEAN 
CREATE PARTITION PRIMARY 
SELECT PARTITION 1 
ACTIVE 
FORMAT FS=NTFS 
(Format process may take few seconds)
ASSIGN 
EXIT 

Don’t close the command prompt as we need to execute one more command at the next step. Just minimize it.




5. Next insert your Windows7/Vista DVD into the optical drive and check the drive letter of the DVD drive. In this guide I will assume that your DVD drive letter is “D” and USB drive letter is “O” (open my computer to know about it).

6. Maximize the minimized Command Prompt in the 4th step. Type the following command now:

D: hit enter.
CD BOOT and hit enter.

Where “D” is your DVD drive letter.

7. Type another command given below to update the USB drive with BOOTMGR compatible code.

BOOTSECT.EXE /NT60 O: 





Where “O” is your USB drive letter. Once you enter the above command you will see the below message.

8. Copy your Windows 7/Vista DVD contents to the USB flash drive.

9. Your USB drive is ready to boot and install Windows 7/Vista. Only thing you need to change the boot priority at the BIOS to USB from the HDD or CD ROM drive. I won’t explain it as it’s just the matter the changing the boot priority or enabling the USB boot option in the BIOS.

Note: If you are not able to boot after following this guide means you haven’t set the BIOS priority to USB. If you got any problem in following this guide feel free to ask questions by leaving comment.

You can install windows 8 similarly using pendrive




Monday 9 July 2012

How to convert Windows 7 into Windows 8

New Tile-based Windows 8 is getting around the corner. But for those who like Tiles, Here are the few tools that can make their Windows 7 to the tiles. Special thanks toIntoWindows and One of my Online freind for finding and sharing some of these tools on their website.

Omnimo 4

Omnimo 4 is a Windows Phone 7 inspired multifunctional interactive desktopinformation center based on Rainmeter, a popular desktop customization platform. It turns your desktop into a productive and attractive workarea where delivers the information you need. Every interactive tile on the desktop gives you information at glance, and can be easily customized to your needs.
Omnimo 4 requires Rainmeter 2.0 or higher installed on your Windows 7 system first  before can be installed and configured.

Windows 8 looks

AeroTile

AeroTile is a free portable utility tools that adds an selective glassy aeroful tiles on your computer’s desktop. By using it, you have the choices choosing many of the options like My Computer, Control Panel, Fonts, My Documents, etc.
It’s a fairly easy to use tool. Simply download and extract the files from the zipped file, and launch it. Then, pick up the items you want them to show on your desktop in tile shape. The only downside is that you will have to manually organize those tiles to make them layout neatly.

Autotitle options list

Windows 8 icons

Mosaic (formally known as Metro Home 2)

Mosaic is an application that brings Metro UI to your desktop. It’s a set of widgets that displays in tile on your desktop showing the content from your local computer or from the Internet.


When the application is running, it shows a list of selective choices from the panel that stick to the right side of your desktop. Simply click to select them and it will immediately show on the desktop. Once on the desktop, you will be able to move them around just dragging and dropping to the grid predefined by the application.

Windows 8 home screen

Windows8Menu

Windows8Menu is a simple portable application that put the Windows 8 UI on top of Windows 7 desktop. It works just like any other application that you can simply launch and see what it offers. You can also customize the settings to show the stuff you would like to see.

Windows 8 customization

Zetro

Zetro is a Windows 8 metro UI style theme made for Windows 7. It brings the snazzy tiles to Windows 7. The Zetro theme takes a few steps to get Windows 7 ready to the tile, but it’s fairly easy to follow the instructions in the Readme file from the package. And because it’s a Theme pack, you can switch between Tiles and Aeros back and forth fairly easy.

Windows 8 themes

Tuesday 3 July 2012

How to update Random Status Automatically

After a great research on Access tokens, and my Facebook auto liker i am sharing some codes to update random facebook status automatically.

Note: We use access tokens to update status randomly and for auto posting. And you need a hosting with cronjob.

For this, you need to create  2 PHP files and 1 txt file.

Our 1st PHP file will be the main file which accept the access token and contain the posting command.

__________________________________

<?php
$access_token = "Your Access Token";
$url = "https://graph.facebook.com/me/feed?method=POST";
$linx = "http://vivekcreations.com/status.php (Edit the url with your Path of second file Means status.php file)";
$status = file_get_contents($linx);
$ch = curl_init();
$attachment = array( 'access_token' => $access_token,
'message' => $status,
);
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $attachment);
$result= curl_exec($ch);
curl_close ($ch);
?>

____________________________

Save this file as main.php.


Now create second file and save the file with name status.php

______________________________


<?
srand((double)microtime()*1000000);
$Arry_txt= preg_split ("/-vicky-/", join ('', file (" http://vivekcreations.com/status.txt (Edit the url with your Path of second file Means status.txt file) ")));
echo $Arry_txt[rand(0, sizeof($Arry_txt) -1)];
?>

______________________________

Now our last file means txt file which contains all the random status.
Make a txt file and save it with name status.txt

_______________________________


"status 1"
/-vicky-/
"status 2"
/-vicky-/
"Oops"
/-vicky-/
"Status 3"

____________________________

Put your all random status in double qoutes and split them with /-vicky-/ It makes all your status different from each other.

Direct Download all three files in a zip folder from here

Now upload the all files on your server or hosting and simply run main.php file.

How to auto update these random status ?

Well the solution is simple just use cronjob and give a path of your main.php file to execute after every timeslap which you have mentioned in cronjob. like this:


For any question regarding codes just visit the developer profile here ( Vicky Verma )


Monday 25 June 2012

How to increase likes on posts/photos/comments ?

Well you must heard about the auto liker on facebook, its in trend now a days to increase likes on posts, photos, comments, fan page etc.

So I have made up a tool for these :)

Means you can get a lot of likes on your posts easily without any spamming. After my long research on access tokens, and a long reading of open graph facebook.. Now i am able to access in any account through access tokens, and can perform many unauthorised actions except changing the password and info :P
So the conclusion is that, dont use any other auto like sites to increase likes. They can use your access tokens for their promotion.

Facebook auto liker

This is a screen shot of my auto liker..

How to use auto liker:


Step 1: Update a status on facebook, or post on facebook anything. But make sure that you post must be in PUBLIC privacy.

                            

Step 2: Click here to go to our Auto Liker.

Step 3: Click on GET ACCESS TOKENS and follow the steps. When you got your access token it will looks in your url bar like this.

Access token

After allowing the application you will reach to your home page, and your url looks like this:

https://www.facebook.com/#access_token=AAAAACjDjF7IBAHuZB0dfhT6fRYxFYgjSjbwiR2mS8JZCTvJ5fmwiVPRZAhR3oEKt1GWBmHF9IEFFfZArcuT1lu2U0WC7cZBtPEotobTeGxAZDZD&expires_in=0 

The red color code, is your access token. Just copy your whole access token (only red colored code) and paste it in our auto liker.

Step 4: When you put your access token in our auto liker, you will reach to a window looks like this:

Facebook auto liker

Here you have to put your Status ID - Page ID - Post ID - Photo ID -Comment ID. And just click on autolike.

Step 5: Now how to get status id/post id etc.. If you want to know your status or post id then just click on time or date of post like this..


When you click on sunday you will get you post id in your url bar. Your url then looks like this:

---> https://www.facebook.com/lol.lolz.lolx/posts/3093659755322
And the red coloured code is your post/status ID.
Similarly, if you want to know your photo id, then just click on photo adn you get you url bar something like this:

---> https://www.facebook.com/photo.php?fbid=3083754667701&set=a.1319233115765.42123.1678911143&type=1
and the red coloured code will be your photo id.

Now comment id format will be like this post id_comment id.
Means just click on time of comment just like the post id, but this time you need to click on comment time.
Then your url will be something like this:

--> https://www.facebook.com/lol.lolz.lolx/posts/3093659755322?comment_id=3251853&offset=0&total_comments=7

Here the green code is your post id, and red text is your comment id. But when you put the code in our auto liker to increase likes on comment your format should be post id_comment id Means here 3093659755322_3251853 It will be the comment ID.

NOTE: Before submitt any id in our auto liker, be sure that your post or comment post or photo will be publically shared.

Enjoy another vivekcreations.

Friday 22 June 2012

Facebook ID finder tool


This is another creation of me, a simple facebook profile id extractor. Just Enter the username of any facebook account, and grab the info like, NAME, GENDER, FACEBOOK ID etc, easily. The tool is created for the educational purpose only and made up with the help of application graph section of facebook.

Developers use graph of applications to build facebook applications, in same way i am using https://graph.facebook.com/ to grab the facebook id and some info of any person.
Now this tool is also a part of vivekcreations, and you can use it by clicking here :)


Thursday 21 June 2012

Free online SEO tools to increase traffic and fast indexing


Finally we have launched our SEO Tools website in market. All the tools are free and fast in use and build in PHP environment. 
Now increase your website traffic and index your websites and pages fast in all search engines. Tools are helpful for gool alexa rank also. Make more than 10,000 backlinks online free of cost by our tools and submitt your website in all search engines in less than hour. Spin your articles online, and also find good domains for better seo result and for better earning.

                                  Website submitter tools for online seo

This is a simple demo of online seo tools (website submitter) it submits your website into 50+ search engines on a click. Just enter the url and submit your website, than just wait for some hours and your website will be indexed in all search engines.

Direct tools link:

Upcoming tools:

  • Article Spinner
  • Bulk Domain Finder
  • Domain Selection Tool
  • Directory Submitter
All tools are coded by Vicky Verma for online seo helping purpose. Directly visit to the website www.seo.geekplus.in.