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
@echo off | |
SETLOCAL | |
set LOGFILE=%temp%\%random%.log | |
if exist %LOGFILE% ( | |
del /f /s /q %LOGFILE% > nul | |
) |
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
@echo off | |
chcp 65001 > nul | |
set E1C_RAS=localhost:3545 | |
set E1C_RAC=C:\Program Files\1cv8\current\bin\rac.exe | |
set DB_SERVER=localhost:3541 | |
set DB_NAME=1C_DATABASE | |
set DB_USER=1C_ADMINISTRATOR | |
set DB_PWD=1C_PASSWORD | |
set PGUSER=PG_ADMINISTRATOR |
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
@echo off | |
chcp 65001 > nul | |
if /%1 == / goto help | |
pushd "C:\Program Files\1cv8\current\bin" | |
1cv8.exe ENTERPRISE /F %2 /N %3 /P %4 /WA- /AU- /DisableStartupMessages /C ЗавершитьРаботуПользователей | |
pushd %2 | |
"C:\Program Files\7-Zip\7z.exe" a -t7z %1 1Cv8.1CD 1Cv8Log\* -ms -mmt |
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
#!/usr/bin/env python | |
# use as: | |
# python -u junit_to_console.py print junit.xml | |
import argparse | |
from junitparser import JUnitXml | |
from tabulate import tabulate |
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
var ecmaScriptInfo = (function() { | |
// () => { is not allowed | |
function getESEdition() { | |
var array = []; | |
switch (true) { | |
case !Array.isArray: | |
return 3; | |
case !window.Promise: | |
return 5; | |
case !array.includes: |