Souhail HANFI

simple Boto examples with S3

Requirements all you need is python, boto and filechunkio for easy multipart-upload Creating connection import boto import boto.s3.connection access_key = 'put your acces key here' secret_key = 'put your secret key here' con = boto.connect_s3(access_key,secret_key) you can create ~/.boto file and add your credentials on it : [Credentials] aws_access_key_id =...


Social integration in Jekyll

The problem with jekyll, everybody will tell you, it’s the comments. The biggest advantage of the blogging framework is that it has no need for a Data base, but in the case it becomes it’s weakness. No Data Base = No Dynamic Data = No Comments But discuss, facebook and...


Blogging made easy with github.io and jekyll

In this article i will briefly explain how to crate a YourUserName.github.io page and use jekyll to blog. For more informations RTFM : jekyll Doc First of all we will start by creating our github Repository: You need a Github Account if you don’t already have one. Create a new...