This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Roman Masse", | |
"label": "Software engineer", | |
"image": "https://gravatar.com/avatar/cbf5e1b4bf5853952395395d6cdaeaadd03dade02aebfe047de1093aabe368b8", | |
"email": "roman.masse@gmail.com", | |
"phone": "+33750492813", | |
"url": "https://romanmasse.com", | |
"summary": "Curious, passionate, dynamic, bon vivant and now father of two, after a career in gastronomy, it's another passion that I wanted to professionalize by joining 42 school when it opened in 2013", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"paths": {"/examples": {"get": {"operationId": "get_examples", "tags": ["example"], "parameters": [], "summary": "Retrieve a list of example"}, "post": {"operationId": "post_examples", "tags": ["example"], "parameters": [], "summary": "Post a new example"}}, "/example/{id}": {"patch": {"operationId": "patch_example", "tags": ["example"], "parameters": [{"required": true, "in": "path", "name": "id", "type": "ObjectId"}], "summary": "Patch the example ('id') with the given data"}, "get": {"operationId": "get_example", "tags": ["example"], "parameters": [{"description": "ObjectId of the campaign you want to retrieve", "required": true, "in": "path", "type": "ObjectId", "name": "id"}, {"description": "test pour duplicate id", "name": "uid", "in": "query"}, {"description": "loremm ipsum", "name": "filter", "in": "query"}], "responses": {"405": {"description": "Oups"}, "200": {"description": "Successful operation"}, "404": {"description": "The example doesn't exist"}}, "summary": "Retrieve the example ('id')"}, "p |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"quote" : "Life isn’t about getting and having, it’s about giving and being.", | |
"name": "Kevin Kruse" | |
}, | |
{ | |
"quote" : "Whatever the mind of man can conceive and believe, it can achieve.", | |
"name" : "Napoleon Hill" | |
}, | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3.5 | |
# -*- coding: utf-8 -*- | |
def vanotate(**dwargs): | |
""" | |
@vanotate validate the decorated function's arguments | |
regarding her specified annotations, if there have. | |
:Arguments: |