Gisting Day


Today is a Gist day for me. I was trying to embed my GitHub Gists in this website, and I did it. How?

At first, I must to say that this website is working on the Mediawiki platform. I am using an extension to embed Gists into my website (eg. Supply_Chain_Markup_Language_(SCML)) named GistHub, created by Adam Meyer and Jan Musinsky. And the second there are two Chrome extensions (by https://app.gistboxapp.com) to manage my gists. I am happy to be able to integrate these two. Yay! Today is the Gist'ing Day.

Here the code:

1 def quickSort(arr):
2 	less = []
3 	pivotList = []
4 	more = []
5 	if len(arr) <= 1:
6 		return arr
7 	else:
8 		pass

And here the example: