Skip to main content

Instagram Iphone Application



Mobile phones have surely changed the way we click pictures.The quality of picture has also significantly improved over the years.I fact for most people,the only camera they have built is the in -built mobile camera.It would not be completely crazy to say that the convergence of mobile phones and camera has truly taken place.
Instagram is an easy way to share pictures with rest of the world through the social website of your choice.This a a cool application.The application works in iPhone platform and makes it very easy to share your pictures with friends on Facebook,Flicker and other social websites.
Instagram also allows you to do basic edting of your pictures and add some cool special effects to them before sharing them with the world.The best feature about Instagram is that it adds a special social networking element to your picture.It also allows you to tag your location to the phone and share them on the Instagram network.
Obviously,if you want to keep your picture private or share them with only certain people,Instagram gives you that option as well.Sharing pictures with your friends or people close by has never been easier.On the flip side,Instagram allows you to see pictures of other people who are close to you.Imagine going to the local shopping mall or in college and being able to see all other shared picture of that area.Although this tool opens up various privacy issue,but it defenitly add a very interesting twist to social networking on the go.

Comments

Popular posts from this blog

C programing : File

/* Program to take lines 1,4,7,10.... from a text file and to write into a new file. It is written in c with platform devcpp*/ /* eg:- input file -> ab.txt contain 1 lady gaga sdrgrg ergerg 2 oraph winfrey dfgdr dfgdf . output file neww.txt 1 lady gaga 2 oraph winfrey . . */ #include #include #include using namespace std; main() { char c; FILE *fp1,*fp2; if(fp1=fopen("e:\\ab.txt","r")) { cout<<"\n opened fp1"; } else { cout<<"\n failed fp1"; } if( fp2=fopen("e:\\neww.txt","w") ) { cout<<"\n opened fp2"; } else { cout<<"\n failed fp2"; } while(!feof(fp1)) { c=getc(fp1); while(c!='\n') { putc(c,fp2); c=getc(fp1); } putc('\n',fp2); c=getc(fp1); while(c!='\n') { c=getc(fp1); } c=getc(fp1); while(c!='\n') { c=getc(fp1); } } cout<<"\n End"; getch(); return 0; }

OpenCV installation with Visual Studio 2010

Hi all.I will show you how to install OpenCV library in windows with Visual Studio 2010 to use with Visual C++ Here I am show to install OpenCV Ver 2.2. 1. Download the OpenCV from source forge     The link is : http://sourceforge.net/projects/opencvlibrary/files/opencv-win/ 2. Install the OpenCV to any drive.I have installed as C:\OpenCV2.2 3. Next open Visual Studio 2010.Select New>Project 4. Select Win32 Console Application from Visual C++ popup. 5. Give the project a name and press OK . I gave as 'helloworld' 6. Click Finish to continue.You can see a new file has opened where you can type your code. 7. Next select Project> <your project name> Properties . 8. Go to VC++ Directories and select Include Directories.There add the two links to that     a) C:\OpenCV2.2\include     b) C:\OpenCV2.2\include\opencv 9. Next Go to Library Directories and add the following link     a) C:\OpenCV2.2\lib 10. Now Go to Linker option from the left

How to share blog post ?

Hi.I will show you how to add social network sites icon to your blog post in Blogger.For that follow the steps. 1. Login to your Blogger. 2.Go to design tab. 3.Take Edit HTML tab. 4.You my expand the widget option.Give the check option on ' Expand Widget Templates' 5.Find the tag  <data:post.body/>