text
stringlengths
0
834k
",26.7539267016,79,0.6988258317
219971,f3344b33e0e0178a5d2c57956c8ce64d91441edc,184,bat,Batchfile,duck program/frame164.bat,chunky-funky/duck,c79bdfb33e8110fed21f0f54ac24d6e14dae5fad,['MIT'],,,,duck program/frame164.bat,chunky-funky/duck,c79bdfb33e8110fed21f0f54ac24d6e14dae5fad,['MIT'],,,,duck program/frame164.bat,chunky-funky/duck,c79bdfb33e8110fed21f0f54ac24d6e14dae5fad,['MIT'],,,,"@echo off
reg add ""HKCU\Control Panel\Desktop"" /v Wallpaper /f /t REG_SZ /d d:\Pictures\ezgif-frame-164.png
RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters
TIMEOUT /t 3
EXIT /B",30.6666666667,97,0.777173913
219972,f3347ca5738f2eeeaa54785e084d811746293e29,76,bat,Batchfile,scripts/build_vs2015_win64.bat,RaymondMcGuire/sph_seepage_flows,2b135a609abaca4cf02e0538b2818db21478f3f3,['MIT'],2.0,2021-10-02T15:23:27.000Z,2022-03-14T07:16:58.000Z,scripts/build_vs2015_win64.bat,RaymondMcGuire/sph_seepage_flows,2b135a609abaca4cf02e0538b2818db21478f3f3,['MIT'],,,,scripts/build_vs2015_win64.bat,RaymondMcGuire/sph_seepage_flows,2b135a609abaca4cf02e0538b2818db21478f3f3,['MIT'],,,,"cd ..
mkdir build
cd build
cmake .. -G""Visual Studio 14 2015"" -A x64
pause
",10.8571428571,41,0.6842105263
219973,f33495945051a46e214aa1ab9469a3ff405f1433,196,cmd,Batchfile,JSONStream.cmd,digiExaminer/neera,de69bf38cbe806f7b7e3101414c0ca7640e25c5d,['Apache-2.0'],,,,JSONStream.cmd,digiExaminer/neera,de69bf38cbe806f7b7e3101414c0ca7640e25c5d,['Apache-2.0'],,,,JSONStream.cmd,digiExaminer/neera,de69bf38cbe806f7b7e3101414c0ca7640e25c5d,['Apache-2.0'],,,,"@IF EXIST ""%~dp0\node.exe"" (
""%~dp0\node.exe"" ""%~dp0\node_modules\JSONStream\bin.js"" %*
) ELSE (
@SETLOCAL
@SET PATHEXT=%PATHEXT:;.JS;=;%
node ""%~dp0\node_modules\JSONStream\bin.js"" %*
)",28.0,61,0.6224489796
219974,f334a1b0ee6c6a5b53d9fc378c0639e313fff20c,138,cmd,Batchfile,build.cmd,can3ry/iyzipay-dotnet,165bd90a02b8e7f7b2be1a354bc284bac3cc12f8,['MIT'],3.0,2018-10-12T05:52:08.000Z,2019-05-15T07:23:13.000Z,build.cmd,can3ry/iyzipay-dotnet,165bd90a02b8e7f7b2be1a354bc284bac3cc12f8,['MIT'],,,,build.cmd,can3ry/iyzipay-dotnet,165bd90a02b8e7f7b2be1a354bc284bac3cc12f8,['MIT'],,,,"copy .\Iyzipay\bin\Release\Iyzipay.dll .\Iyzipay\build\net45\Iyzipay.dll /Y
cd Iyzipay\build
del *.nupkg
nuget pack Iyzipay.nuspec
pause",19.7142857143,75,0.7826086957
219975,f334a34f518210b45feb4b7436b7d9e5b968e301,9367,bat,Batchfile,scalikejdbc-cli/scripts/setup.bat,tsatow/scalikejdbc,0035c9d73f09754e405cd9acc8dbf26690e9ada2,['Apache-2.0'],2.0,2020-11-09T02:42:41.000Z,2021-09-09T04:25:31.000Z,scalikejdbc-cli/scripts/setup.bat,tsatow/scalikejdbc,0035c9d73f09754e405cd9acc8dbf26690e9ada2,['Apache-2.0'],,,,scalikejdbc-cli/scripts/setup.bat,tsatow/scalikejdbc,0035c9d73f09754e405cd9acc8dbf26690e9ada2,['Apache-2.0'],,,,"@if (@_win32==@_win16) /*
@echo off
setlocal
set root_dir=%userprofile%\bin\scalikejdbc-cli
if not exist ""%root_dir%"" ( mkdir ""%root_dir%"" )
set config_props=%root_dir%\config.properties
set dbconsole_command=%root_dir%\dbconsole.bat
set build_sbt=%root_dir%\build.sbt
set self_path=%~f0
pushd ""%root_dir%""
if exist ""sbt-launch.jar*"" ( del /f /q ""sbt-launch.jar*"" )
call cscript ""%self_path%"" //E:JScript //Nologo https://oss.sonatype.org/content/repositories/releases/org/scala-sbt/sbt-launch/1.1.6/sbt-launch.jar
popd
set db_dir=%root_dir%\db
if not exist ""%db_dir%"" ( mkdir ""%db_dir%"" )
pushd ""%db_dir%""
if exist ""sandbox.h2.db"" ( del /f /q ""sandbox.h2.db"" )
call cscript ""%self_path%"" //E:JScript //Nologo https://raw.github.com/scalikejdbc/scalikejdbc/master/scalikejdbc-cli/db/sandbox.h2.db sandbox.h2.db
popd
if not exist ""%config_props%"" (
>>""%config_props%"" echo sandbox.jdbc.url=jdbc:h2:file:./db/sandbox
>>""%config_props%"" echo sandbox.jdbc.username=
>>""%config_props%"" echo sandbox.jdbc.password=
>>""%config_props%"" echo #mysql.jdbc.url=jdbc:mysql://localhost:3306/dbname
>>""%config_props%"" echo #postgres.jdbc.url=jdbc:postgresql://localhost:5432/dbname
>>""%config_props%"" echo #oracle.jdbc.url=jdbc:oracle:thin:@localhost:1521:dbname
)
if exist ""%dbconsole_command%"" ( del /f /q ""%dbconsole_command%"" )
>>""%dbconsole_command%"" echo @echo off
>>""%dbconsole_command%"" echo setlocal
>>""%dbconsole_command%"" echo.
>>""%dbconsole_command%"" echo pushd ""%%~dp0""
>>""%dbconsole_command%"" echo.
>>""%dbconsole_command%"" echo if ""%%1"" == ""-e"" (
>>""%dbconsole_command%"" echo call :edit_config
>>""%dbconsole_command%"" echo exit /b 0
>>""%dbconsole_command%"" echo )
>>""%dbconsole_command%"" echo if ""%%1"" == ""--edit"" (
>>""%dbconsole_command%"" echo call :edit_config
>>""%dbconsole_command%"" echo exit /b 0
>>""%dbconsole_command%"" echo )
>>""%dbconsole_command%"" echo.
>>""%dbconsole_command%"" echo if ""%%1"" == ""-c"" (
>>""%dbconsole_command%"" echo call :run_sbt clean
>>""%dbconsole_command%"" echo exit /b 0
>>""%dbconsole_command%"" echo )
>>""%dbconsole_command%"" echo if ""%%1"" == ""--clean"" (
>>""%dbconsole_command%"" echo call :run_sbt clean
>>""%dbconsole_command%"" echo exit /b 0
>>""%dbconsole_command%"" echo )
>>""%dbconsole_command%"" echo.
>>""%dbconsole_command%"" echo if ""%%1"" == ""-h"" (
>>""%dbconsole_command%"" echo call :show_help
>>""%dbconsole_command%"" echo exit /b 0
>>""%dbconsole_command%"" echo )
>>""%dbconsole_command%"" echo if ""%%1"" == ""--help"" (
>>""%dbconsole_command%"" echo call :show_help
>>""%dbconsole_command%"" echo exit /b 0
>>""%dbconsole_command%"" echo )
>>""%dbconsole_command%"" echo.
>>""%dbconsole_command%"" echo set _arg=%%1
>>""%dbconsole_command%"" echo if ""%%_arg:~0,1%%"" == ""-"" (
>>""%dbconsole_command%"" echo echo.
>>""%dbconsole_command%"" echo echo ERROR: Unknown option ^^(%%_arg%%^^)
>>""%dbconsole_command%"" echo call :show_help
>>""%dbconsole_command%"" echo exit /b 1
>>""%dbconsole_command%"" echo )