I use open source to help people evolve, I take pleasure in seeing people evolve

Open Source Contributions - February 2015


February 2015 saw 8 repositories with 19 contributions, including 5 pull requests and 6 issues, showcasing vibrant collaboration in the open-source community.
Read more ⟶

Go vs Python more request per second


not everyt hing is nail, to use hammer

I use python because it is a simple and powerful language, but never used by be excellence in performance (But for python web serves very well)! I know that benchmark based on "Hello World" does not want to say too much, but it's interessanta we know what technology (framework) is more time to answer performance web support request.

There is a python framework named Falcon (Falcon follows the REST architectural style, meaning (among other things) that you think in terms of resources and state transitions, which map to HTTP verbs) which is extremely performance, even using asynchronous backup processing library (as gevent, is a coroutine-based Python networking library that uses greenlet to provide a high-level asynchronous API on top of the libev event loop).

Read more ⟶

Open Source Contributions - January 2015


January 2015 saw 22 repositories with 48 contributions, including 11 pull requests and 22 issues, showcasing vibrant community engagement.
Read more ⟶

Bottle, full stack without Django


This blogpost is based in a lecture I presented here in Brazil, follows the slides!

Bottle micro framework web

Bottle is a micro web framework compatible with WSGI, depends only on the Python standard library is compatible with python 2.6, 2.7, 3.2, 3.3 and 3.4, single source file. It was created by Marcel Hellkamp (@defnull) and maintained by the community that raised surrounding framework.

Django is a framework for rapid development for web, written in Python, which uses the standard MTV (model-template-view) and pragmatic. Was originally created as a system to manage a journalistic site in the city of Lawrence, Kansas. Became an open source project and was published under a BSD license in 2005. The name Django was inspired by the jazz musician Django Reinhardt. Django became very known for having included batteries, i.e. several distributed libraries join the Centre of the framework for simplicity work (called "full stack").

Read more ⟶