Monday, April 30, 2012

Unlimited Storage on Google Picasa Web

Use Google Picasa to store unlimited photos and videos
Picasa Web provide 1GB of free storage for images and videos but it can be converted into unlimited space if we follow some constraints.
  1. If photo size is up to 2048 x 2048 pixels then space taken by photo does not take any space on picasaweb. i.e. it won't count towards your free storage(1 GB) quota.
  2. Videos up to 15 minutes also won't count towards your free storage quota
  3. Use Picasa software to upload photo albums on picasaweb because it automatically resized all the images into free size limit (2048 x 2048 pixels).
  4. Once you reach your storage limit, any new photos you upload to picasaweb larger than the free size limit will be automatically resized to 2048 pixels.
 I have uploaded aprox 15 GB of images and videos on picasaweb  and still total space used is 40 MB . \m/ \m/ \m/



Enjoy !!!!

Friday, April 20, 2012

Install libgraph library in GCC

Step #1.Install the following in Synaptic Package Manager
  • libsdl-image1.2
  • libsdl-image1.2-dev
  • guile-1.8-dev
  • guile-1.8 
Step #2. Download and install libgraph then
  • ./configure
  • sudo make
  • sudo make install
Step #3  Include graphics.h in your C program . Initialize the graphics system by
  • int gd=DETECT, gm=VGAMAX;
  • initgraph(&gd, &gm, NULL);

Step #4 you need to copy all the libgraph shared files from /usr/local/lib to /usr/lib
  •  sudo cp /usr/local/lib/libgraph.* /usr/lib

Now Compile the program  using following command : gcc filename.c -lgraph



Enjoy !!!!