Getting the data

This commit is contained in:
Booklordofthedings 2024-11-18 11:28:27 +01:00
commit 86070aa16b
7 changed files with 106 additions and 0 deletions

59
.gitignore vendored Normal file
View file

@ -0,0 +1,59 @@
# Just for this
data/
# Beef
build/
recovery/
BeefSpace_User.toml
#Everything R
# History files
.Rhistory
.Rapp.history
# Session Data files
.RData
.RDataTmp
# User-specific files
.Ruserdata
# Example code in package build process
*-Ex.R
# Output files from R CMD build
/*.tar.gz
# Output files from R CMD check
/*.Rcheck/
# RStudio files
.Rproj.user/
# produced vignettes
vignettes/*.html
vignettes/*.pdf
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
.httr-oauth
# knitr and R markdown default cache directories
*_cache/
/cache/
# Temporary files created by R markdown
*.utf8.md
*.knit.md
# R Environment Variables
.Renviron
# pkgdown site
docs/
# translation temp files
po/*~
# RStudio Connect folder
rsconnect/

0
Analyze.R Normal file
View file

View file

@ -0,0 +1,5 @@
FileVersion = 1
[Project]
Name = "ManagementScript"
StartupObject = "ManagementScript.Program"

View file

@ -0,0 +1,5 @@
FileVersion = 1
Projects = {ManagementScript = {Path = "."}}
[Workspace]
StartupProject = "ManagementScript"

View file

@ -0,0 +1,11 @@
namespace ManagementScript;
using System;
class Program
{
public static void Main()
{
}
}

13
Watchtower.Rproj Normal file
View file

@ -0,0 +1,13 @@
Version: 1.0
RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default
EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8
RnwWeave: Sweave
LaTeX: pdfLaTeX

13
get.data.bat Normal file
View file

@ -0,0 +1,13 @@
@ECHO OFF
SET repo=https://code.booklordofthe.dev/Booklordofthedings/GMTK-2024
::https://github.com/beefytech/Beef
echo Data repository: %repo%
mkdir data
cd data
git clone %repo% target
cd target
git log --pretty=format:"%%H,%%an,%%ae,%%at,%%G?" --numstat > ../data.txt