View gist:e1ea386053ec25b612270b9aa2737a07
This file contains 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
carl@twist:~/src/evezor/Edge_Boards/poc$ git remote -v | |
carlfk git@github.com:CarlFK/Edge_Boards.git (fetch) | |
carlfk git@github.com:CarlFK/Edge_Boards.git (push) | |
origin git@github.com:evezor/Edge_Boards.git (fetch) | |
origin git@github.com:evezor/Edge_Boards.git (push) | |
carl@twist:~/src/evezor/Edge_Boards/poc$ git branch | |
feature/glossary | |
master | |
* poc/v1 |
View hmb.py
This file contains 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
import json | |
import os | |
from http.server import HTTPServer, BaseHTTPRequestHandler | |
from pprint import pprint | |
class web_server(BaseHTTPRequestHandler): | |
def do_POST(self): |