Repo Type: Public or Private (adjust here)
origin PASTE-HTTP-LINK-HERE
origin PASTE-GIT-LINK-HERE
# Brad adding this file to deal with issues of Windows and Linux line endings | |
# on the project basis. | |
# ********************************************************* | |
# * NO ONE BUT BRAD SHOULD EDIT THIS FILE! | |
# ********************************************************* | |
# @create: 5/13/2017 | |
# @modified: 9/21/2019 | |
# Details per file setting: | |
# text These files should be normalized (i.e. convert CRLF to LF). |
{ | |
// See https://go.microsoft.com/fwlink/?LinkId=733558 | |
// for the documentation about the tasks.json format | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Sphinx", | |
"type": "shell", | |
"command": "make clean && make html", | |
"script": "build", |
{ | |
"folders": [ | |
{ | |
"path": "." | |
} | |
], | |
"settings": {} | |
} |
{ | |
"restructuredtext.builtDocumentationPath": "${workspaceRoot}/_build/html", | |
"restructuredtext.updateOnTextChanged" : "true", | |
"restructuredtext.updateDelay" : 300, | |
"restructuredtext.languageServer.disabled": false, | |
//"restructuredtext.sphinxBuildPath": "${workspaceFolder}/source/_build/html" | |
"restructuredtext.confPath": "${workspaceFolder}/source", | |
"restructuredtext.linter.extraArgs": [ | |
"--ignore D001" | |
] |
styles: | |
blue: | |
textColor: #011daa | |
fontName: stdBold |
.blue { | |
color: blue; | |
} |
import sys | |
import pprint | |
import struct | |
import socket | |
import ssl | |
from time import sleep | |
# Standard "HELLO" message for TDS | |
prelogin_msg = bytearray([ 0x12, 0x01, 0x00, 0x2f, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x06, 0x01, 0x00, 0x20, | |
0x00, 0x01, 0x02, 0x00, 0x21, 0x00, 0x01, 0x03, 0x00, 0x22, 0x00, 0x04, 0x04, 0x00, 0x26, 0x00, |