Sublime Editor
Finally, time to move from Gedit to Sublime! I love this editor http://www.sublimetext.com, check out the mini zoomed out scroll on the right:
Finally, time to move from Gedit to Sublime! I love this editor http://www.sublimetext.com, check out the mini zoomed out scroll on the right:
My free time digital art =)
This is how you can create a widget that displays your latest tweets using python-twitter. It will look like this:

Step 1 Download the following python packages using easy-install or pip installer: python-twitter, oauth, httplib2
Step 2 This is the python code you need which will create a list of tweets that have embeded URLs (includes #hashtags, @mentions, URL's, and time of post)
Step 3 This is an idea of the Django template tags you need to display the list of tweets and the approximate CSS.
_________N_____
j0 j1 j2 j3 j4
i0 1 1 1 1 1
i1 1 1 1 1 1 ... |
i2 1 1 1 1 1 N
i3 1 1 1 1 1 |
i4 1 1 1 1 1 <--O(N*N ) = O(N^2)
|
/\ (exploding a step)
/ \
_
k0 1 | <--O(N)
k1 1 N
k2 1 |
k3 1 So O(N * N^2) = O(N^3)________________N______
j0 j1 j2
i0 ( 2N+1) ( 2N+1) ( 2N+1)
i1 ( 2N+1) ( 2N+1) ( 2N+1) |
i2 ( 2N+1) ( 2N+1) ( 2N+1) N
i3 ( 2N+1) ( 2N+1) ( 2N+1) |
i4 ( 2N+1) ( 2N+1) ( 2N+1) <-- O((2N+1)*(N)) = O(N^2)
|
/\ (exploding a step)
/ \
k0 1+N | <-- O(N*(N+1)) = O(N^2)
k1 1+N N
k2 1+N |
k3 1+N
So O(N^2 * N^2) = O(N^4)