Have you ever wondered why you got so many likes on your one Facebook post whereas almost none on another? Lets dive deep into this and explore how this liking process works. Now this is not going to be an easy task. Moreover, the prediction accuracy might vary a lot. Lets start by dividing the [...]
Facebook is always a good source of traffic for many blogs. Hence, one can’t ignore promoting blog posts on Facebook. But manually updating the status with each blog post is such a headache. So, here I am going to discuss, how to update Facebook status randomly to old blog posts. This post is sequel to [...]
With Google Reader getting discontinued from 1st of July, every user is now looking for best possible alternative. With best possible option, people are also looking for the ease of switching. The Old Reader stands good on both the points. I made that transition today using the following simple steps, which I would like to [...]
For those who are starting with Machine Learning or Data Analysis, Octave is a nice language for numerical computation. Creating graphs/plots, dealing with matrices and assembling and dealing with data in various other forms is a lot convenient in Octave. I’ve recently started to use it, as I’m going through the Machine Learning course on [...]
Hi guys, today I’ve implemented Facebook Login Authentication system in Django using django-social-auth. I would like to share the experience with you in simplest possible way. So the steps I would mention here are for Windows users but would work as almost the same for Linux and Mac users. Objective – To implement a Facebook [...]
I know that many of you are fan of NYT(New York Times) articles, especially the Opinion section which lists articles from really great people, but you also might have faced the restriction of reading at most 10 articles a month i.e. NYT allows you to read at max 10 articles a month and if you [...]
Here I present some of the Python tips and tricks to get your work done in concise and quick way. I know that many experienced users will find it trivial, but for an beginner or average Python user, these can be way too helpful. So dive in – 1) Writing concise code using list comprehension [...]
I was trying to setup ssh connection to GitHub when I faced this error on Windows saying – bash-3.1$ ssh -Tv git@github.com OpenSSH_4.6p1, OpenSSL 0.9.8e 23 Feb 2007 debug1: Reading configuration data /c/Documents and Settings/hjha/.ssh/config debug1: Applying options for github.com debug1: Executing proxy command: exec C:/Git/bin/connect.exe -H xxxxxxxxxxxxxxxxxx debug1: permanently_drop_suid: 500 debug1: identity file C:\\Documents\\ [...]
This thing can be easily achieved in Python which in other languages usually require 3-4 lines. This is possible due to Python’s tuple data structure. So to interchange values of two variables ‘x’ and ‘y’ simply use – x, y = y, x “x, y” defines a new tuple which takes the values of old [...]
