Hello folks, This blog was more or less dormant, as I was cofounding and tinkering with this awesome new site for all foodie lovers and wannabe chefs to showcase their talent ! And now after months of work, the site is ready for ya! Head …
read onGoogle Finance is a product of Google, that tracks everything related to the Stock market and manage your Portfolio etc. It has access to realtime data of various stock exchanges around the world like NASDAQ, NSE of India etc. We can use this to get … read on
PyFacebook is the official Facebook API Library written in Python. It is maintained in github, I have attached a snapshot of the master trunk zip file with this post.
read onDjango Social auth is a package that enables login to your django website with Facebook, Google, Yahoo and Twitter. Allowing authentication from 3rd party websites which supports open authentication helps users easy to register to your website without filling too much details. Easier signup makes …
read onThe printf or sprintf function is used to format strings in PHP and C programming constructs. sprintf in php returns the formatted string whereas printf just prints the output.
$variable = sprintf("%d %s %d = %d",4,"+",5,9);
print $variable;
//OR
printf("%d %s %d = %d",4,"+",5,9);
//Both …