text
stringlengths
0
834k
function echo( s ) {
WScript.Echo( s || """" );
}
function wget( url, filename ) {
var client = WScript.CreateObject( ""Msxml2.XMLHTTP"" );
var outStream = WScript.CreateObject( ""Adodb.Stream"" );
var typeBinary = 1;
var createOverWrite = 2;
try {
client.open( ""GET"", url, false );
client.send();
} catch (e) {
echo( e.message );
return 1;
}
outStream.type = typeBinary;
outStream.Open();
outStream.Write( client.responseBody );
outStream.SaveToFile( filename, createOverWrite );
return 0;
}
var args = WScript.Arguments;
var url = args(0);
var filename = args(1);
echo( ""Downloading "" + filename + "" ..."" );
echo( "" from: "" + url );
var rc = wget( url, filename );
if ( rc == 0 ) {
echo( ""Download success!\n"" );
} else {
echo( ""Download failed...\n"" );
}
WScript.Quit( rc );
",44.1839622642,150,0.6649941283
219976,f334c04afcca9adfa55847befe1990aa45b7ff6f,330,bat,Batchfile,ReluplexCav2017/glpk-4.60/w32/Build_GLPK_with_VC9_DLL.bat,minimario/CNN-Cert,0dd60a8e8277cfecef3ab4d1ed055e62f92fd71c,['Apache-2.0'],54.0,2020-09-09T12:43:43.000Z,2022-03-17T17:31:19.000Z,ReluplexCav2017/glpk-4.60/w32/Build_GLPK_with_VC9_DLL.bat,minimario/CNN-Cert,0dd60a8e8277cfecef3ab4d1ed055e62f92fd71c,['Apache-2.0'],63.0,2021-05-04T15:05:30.000Z,2022-03-23T14:32:29.000Z,ReluplexCav2017/glpk-4.60/w32/Build_GLPK_with_VC9_DLL.bat,minimario/CNN-Cert,0dd60a8e8277cfecef3ab4d1ed055e62f92fd71c,['Apache-2.0'],16.0,2019-02-17T03:02:36.000Z,2021-05-17T13:59:07.000Z,"rem Build GLPK DLL with Microsoft Visual Studio Express 2008
rem NOTE: Make sure that HOME variable specifies correct path
set HOME=""C:\Program Files\Microsoft Visual Studio 9.0\VC""
call %HOME%\bin\vcvars32.bat
copy config_VC config.h
%HOME%\bin\nmake.exe /f Makefile_VC_DLL
%HOME%\bin\nmake.exe /f Makefile_VC_DLL check
pause
",27.5,61,0.7909090909
219977,f33520c3d3735c66e26d8fbc41230fdcbc632bf5,18,bat,Batchfile,run-server.bat,woikerl/se-monitor,6f840f390f0ff963616a066663ec948a56574a8e,['MIT'],,,,run-server.bat,woikerl/se-monitor,6f840f390f0ff963616a066663ec948a56574a8e,['MIT'],,,,run-server.bat,woikerl/se-monitor,6f840f390f0ff963616a066663ec948a56574a8e,['MIT'],,,,node testserver.js,18.0,18,0.8888888889
219978,f3358538660c44b89be35ab4c23367a1dbcc82e9,51,bat,Batchfile,run.bat,Jaggler3/lua-boilerplate,a41589df68c8ebee6b15b27ee6fdc3988e6799ba,['MIT'],,,,run.bat,Jaggler3/lua-boilerplate,a41589df68c8ebee6b15b27ee6fdc3988e6799ba,['MIT'],,,,run.bat,Jaggler3/lua-boilerplate,a41589df68c8ebee6b15b27ee6fdc3988e6799ba,['MIT'],,,,"@echo OFF
cd src
""./../bin/lua53.exe"" app.lua
cd ..",12.75,28,0.6078431373
219979,f335cb9924df735a136b4776e6db549b027a576e,434,bat,Batchfile,inetcore/outlookexpress/wabw/wabapi/lego/bbt2.bat,npocmaka/Windows-Server-2003,5c6fe3db626b63a384230a1aa6b92ac416b0765f,['Unlicense'],17.0,2020-11-13T13:42:52.000Z,2021-09-16T09:13:13.000Z,inetcore/outlookexpress/wabw/wabapi/lego/bbt2.bat,sancho1952007/Windows-Server-2003,5c6fe3db626b63a384230a1aa6b92ac416b0765f,['Unlicense'],2.0,2020-10-19T08:02:06.000Z,2020-10-19T08:23:18.000Z,inetcore/outlookexpress/wabw/wabapi/lego/bbt2.bat,sancho1952007/Windows-Server-2003,5c6fe3db626b63a384230a1aa6b92ac416b0765f,['Unlicense'],14.0,2020-11-14T09:43:20.000Z,2021-08-28T08:59:57.000Z," @echo off
if ""%1"" == """" goto usage
if exist %1.dll set ext=dll
if exist %1.exe set ext=exe
bbmerge /idf %1.bbi %1.bbf
bbopt /odb %1.opt.bbl %1.bbf
bblink /o %1.opt.%ext% %1.opt.bbl
if exist %1.%ext% ren %1.%ext% %1.bak
ren %1.opt.%ext% %1.%ext%
splitsym %1.%ext%
goto end
:usage
echo.
echo Please give the prefix of the bbi file which you are working with.
echo.
:end
",20.6666666667,75,0.564516129
219980,f335e334be7680b6350560dcfd9529d50fa07bdc,278,cmd,Batchfile,node_modules/.bin/zos.cmd,ISHaNT-CHaHaR/Open-zeppelin_TODO_list,5e5e782d332130a0c4908b6ba2f8557a46de958d,['MIT'],,,,node_modules/.bin/zos.cmd,ISHaNT-CHaHaR/Open-zeppelin_TODO_list,5e5e782d332130a0c4908b6ba2f8557a46de958d,['MIT'],1.0,2020-05-24T10:35:42.000Z,2020-05-24T10:35:42.000Z,node_modules/.bin/zos.cmd,ISHaNT-CHaHaR/Open-zeppelin_TODO_list,5e5e782d332130a0c4908b6ba2f8557a46de958d,['MIT'],,,,"@ECHO off
SETLOCAL
CALL :find_dp0
IF EXIST ""%dp0%\node.exe"" (
SET ""_prog=%dp0%\node.exe""
) ELSE (
SET ""_prog=node""
SET PATHEXT=%PATHEXT:;.JS;=;%
)
""%_prog%"" ""%dp0%\..\@openzeppelin\cli\lib\bin\oz-cli.js"" %*
ENDLOCAL
EXIT /b %errorlevel%
:find_dp0
SET dp0=%~dp0
EXIT /b
",15.4444444444,60,0.6402877698
219981,f335f818c30e933be8cdf4141f742db6212c29ee,2146,cmd,Batchfile,node_modules/.pnpm/rollup-plugin-terser@7.0.2_rollup@2.58.3/node_modules/rollup-plugin-terser/node_modules/.bin/terser.cmd,DellyFan8/mun-tools,9eeaa6e15566e988c65b86703205b96c2666815b,['Unlicense'],,,,node_modules/.pnpm/rollup-plugin-terser@7.0.2_rollup@2.58.3/node_modules/rollup-plugin-terser/node_modules/.bin/terser.cmd,DellyFan8/mun-tools,9eeaa6e15566e988c65b86703205b96c2666815b,['Unlicense'],,,,node_modules/.pnpm/rollup-plugin-terser@7.0.2_rollup@2.58.3/node_modules/rollup-plugin-terser/node_modules/.bin/terser.cmd,DellyFan8/mun-tools,9eeaa6e15566e988c65b86703205b96c2666815b,['Unlicense'],,,,"@SETLOCAL
@IF NOT DEFINED NODE_PATH (
@SET ""NODE_PATH=C:\Users\Aaron\Downloads\mun-tools (4)\mun-tools\node_modules\.pnpm\terser@5.9.0\node_modules\terser\bin\node_modules;C:\Users\Aaron\Downloads\mun-tools (4)\mun-tools\node_modules\.pnpm\terser@5.9.0\node_modules\terser\node_modules;C:\Users\Aaron\Downloads\mun-tools (4)\mun-tools\node_modules\.pnpm\terser@5.9.0\node_modules;C:\Users\Aaron\Downloads\mun-tools (4)\mun-tools\node_modules\.pnpm\node_modules;C:\Users\Aaron\Downloads\mun-tools (4)\mun-tools\node_modules;C:\Users\Aaron\Downloads\mun-tools (4)\node_modules;C:\Users\Aaron\Downloads\node_modules;C:\Users\Aaron\node_modules;C:\Users\node_modules;C:\node_modules;C:\Users\Aaron\Downloads\mun-tools (4)\mun-tools\node_modules\.pnpm\rollup-plugin-terser@7.0.2_rollup@2.58.3\node_modules\rollup-plugin-terser\node_modules;C:\Users\Aaron\Downloads\mun-tools (4)\mun-tools\node_modules\.pnpm\rollup-plugin-terser@7.0.2_rollup@2.58.3\node_modules""
) ELSE (