Skip to content

Instantly share code, notes, and snippets.

View matthieualouis's full-sized avatar

Matthieu Louis matthieualouis

  • Stepsize
  • London
View GitHub Profile

blabla

lots of new lines


with br tags

@matthieualouis
matthieualouis / skype.txt
Created May 18, 2016 09:22
Skype username
Skype: alexandre.omeyer
@matthieualouis
matthieualouis / flask_simple_server.py
Created April 21, 2016 09:46
Hello world flask example
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello World!'
if __name__ == '__main__':
app.run()
<script src="https://js.moltin.com/v1"></script>
<script type="text/javascript">
var moltin = new Moltin({publicId: 'api_client_id'});
moltin.Authenticate(function() {
// Code here...
});
</script>
my_project
+-- api/
+-- v1/
+-- __init__.py
+-- routes.py
+-- v1_1/
+-- __init__.py
+-- routes.py
+-- v2/udhsa
+-- __init__.py
@app.route('/<version>/users')
def users(version):
# do something
return jsonify(response)fdsfajoisjf
<img src="/static/img/">
@matthieualouis
matthieualouis / script_tag.html
Last active April 6, 2016 08:55
Javascript script tag
<script type="text/javascript">
</script>
@matthieualouis
matthieualouis / ui_item.html
Last active April 6, 2016 09:30 — forked from jaredjburgess/ui_item.html
Semantic ui item in a div tag.
<div class="ui item">
<div class="content">
<div class="ui header"></div>
<div class="meta"></div>
<div class="description"></div>
</div>
</div>