Skip to content

Instantly share code, notes, and snippets.

View Bernardoow's full-sized avatar

Bernardo Gomes Bernardoow

  • Belo Horizonte - Brazil
View GitHub Profile
class NB:
def __init__(self,Lista):
self.ListaDeCaminho = Lista
self.Direcao = None
self.Custo = 0
def addUmaListaDeCaminho(self,Lista):
for e in Lista:
self.ListaDeCaminho.append(e)
def addUmPasso(self,Passo):
@Bernardoow
Bernardoow / example.html
Created June 10, 2016 17:06 — forked from leonardocouy/example.html
Trigger Tap Event - Leonardo Flores
<button class="button button-balanced" id="tap1" on-tap="execute()">Tap</button>
@Bernardoow
Bernardoow / ExternalCSS.elm
Created January 30, 2017 15:46
Load external CSS in Elm
{--
You *can* load an external CSS file in Elm, but currently,
in Pure Elm that means adding a style element to the body instead of the head.
It does cause a flash of unstyled content, so I think it's only useful
for testing in Reactor.
--}
import Html exposing (..)
def _send_post(self, url, params, headers):
req = urllib2.Request(url, json.dumps(params), headers)
response = urllib2.urlopen(req)
result = response.read()
@Bernardoow
Bernardoow / gist:fff41d366e7fc192da00755585a25db2
Created February 20, 2018 09:07 — forked from CristinaSolana/gist:1885435
Keeping a fork up to date

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
import betamax
from betamax.fixtures import unittest
import requests
def function():
response = requests.get('https://httpbin.org/get')
return response.json().get('url')
@Bernardoow
Bernardoow / docker-compose-node-mongo.yml
Created June 30, 2018 22:52 — forked from wesleybliss/docker-compose-node-mongo.yml
Docker Compose with example App & Mongo
version: '2'
services:
myapp:
build: .
container_name: "myapp"
image: debian/latest
environment:
- NODE_ENV=development
- FOO=bar
volumes:

Performance of Flask, Tornado, GEvent, and their combinations

Wensheng Wang, 10/1/11

Source: http://blog.wensheng.org/2011/10/performance-of-flask-tornado-gevent-and.html

When choosing a web framework, I pretty much have eyes set on Tornado. But I heard good things about Flask and Gevent. So I tested the performance of each and combinations of the three. I chose something just a little more advanced than a "Hello World" program to write - one that use templates. Here are the codes:

1, Pure Flask (pure_flask.py)

Performance of Flask, Tornado, GEvent, and their combinations

Wensheng Wang, 10/1/11

Source: http://blog.wensheng.org/2011/10/performance-of-flask-tornado-gevent-and.html

When choosing a web framework, I pretty much have eyes set on Tornado. But I heard good things about Flask and Gevent. So I tested the performance of each and combinations of the three. I chose something just a little more advanced than a "Hello World" program to write - one that use templates. Here are the codes:

1, Pure Flask (pure_flask.py)

@Bernardoow
Bernardoow / Sync gh-pages + master branches
Created July 26, 2018 15:22 — forked from mandiwise/Sync gh-pages + master branches
Keep gh-pages up to date with a master branch
// Reference: http://lea.verou.me/2011/10/easily-keep-gh-pages-in-sync-with-master/
$ git add .
$ git status // to see what changes are going to be commited
$ git commit -m 'Some descriptive commit message'
$ git push origin master
$ git checkout gh-pages // go to the gh-pages branch
$ git rebase master // bring gh-pages up to date with master
$ git push origin gh-pages // commit the changes