Find the correct driver name
wmic sysdriver get name
Then use this to delete the driver
wmic sysdriver where "name=drivernamehere" call delete
docker run --name carnd -it -p 4567:4567 -v /c/Users/Test/project:/work udacity/controls_kit:latestdbgmachinebcdedit /debug on
bcdedit /bootdebug on // <-- Optional. Only required to debug boot related issues.
bcdedit /dbgsettings usb targetname:TargetName
| bcdedit.exe -set loadoptions DISABLE_INTEGRITY_CHECKS | |
| bcdedit.exe -set TESTSIGNING ON |
bootstrap.batproject-config.jam and add path to MSVC 2017 like belowimport option ;
using msvc : 14.0 : "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.10.25017\bin\HostX86\x86\cl.exe";
option.set keep-going : false ;
| unit AhoCorasick; | |
| interface | |
| uses Classes, Generics.Collections; | |
| type | |
| ptrNode = ^TNode; | |
| TNode = record | |
| id: Cardinal; // Node Id for debugging |
| import csv, re, traceback | |
| # Read category file to dict | |
| categoryFile = open('categories.csv', 'rb') | |
| try: | |
| categoryDict = csv.DictReader(categoryFile); | |
| cDesc = [] | |
| mainCat = [] | |
| secondCat = [] | |
| thirdCat = [] |