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): |
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 [email protected]:CarlFK/Edge_Boards.git (fetch) | |
carlfk [email protected]:CarlFK/Edge_Boards.git (push) | |
origin [email protected]:evezor/Edge_Boards.git (fetch) | |
origin [email protected]:evezor/Edge_Boards.git (push) | |
carl@twist:~/src/evezor/Edge_Boards/poc$ git branch | |
feature/glossary | |
master | |
* poc/v1 |
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
# veyepar/dj/googauth/utils.py | |
import argparse | |
import json | |
import os | |
from http.server import HTTPServer, BaseHTTPRequestHandler | |
from pprint import pprint | |
from urllib.parse import urlparse, parse_qs |
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
# a2.sh | |
set -ex | |
echo i=0 s='00000' | |
gst-launch-1.0 videotestsrc \! jpegenc \! jpegparse \! v4l2jpegdec \! videoconvert \! video/x-raw, \! fakesink num-buffers=9000 | |
# | |
echo i=1 s='00001' | |
gst-launch-1.0 videotestsrc \! jpegenc \! jpegparse \! v4l2jpegdec \! videoconvert \! video/x-raw,colorimetry=bt709 \! fakesink num-buffers=9000 | |
# |