Getting the data
This commit is contained in:
commit
86070aa16b
7 changed files with 106 additions and 0 deletions
59
.gitignore
vendored
Normal file
59
.gitignore
vendored
Normal 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
0
Analyze.R
Normal file
5
ManagementScript/BeefProj.toml
Normal file
5
ManagementScript/BeefProj.toml
Normal file
|
@ -0,0 +1,5 @@
|
|||
FileVersion = 1
|
||||
|
||||
[Project]
|
||||
Name = "ManagementScript"
|
||||
StartupObject = "ManagementScript.Program"
|
5
ManagementScript/BeefSpace.toml
Normal file
5
ManagementScript/BeefSpace.toml
Normal file
|
@ -0,0 +1,5 @@
|
|||
FileVersion = 1
|
||||
Projects = {ManagementScript = {Path = "."}}
|
||||
|
||||
[Workspace]
|
||||
StartupProject = "ManagementScript"
|
11
ManagementScript/src/Program.bf
Normal file
11
ManagementScript/src/Program.bf
Normal file
|
@ -0,0 +1,11 @@
|
|||
namespace ManagementScript;
|
||||
|
||||
using System;
|
||||
|
||||
class Program
|
||||
{
|
||||
public static void Main()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
13
Watchtower.Rproj
Normal file
13
Watchtower.Rproj
Normal 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
13
get.data.bat
Normal 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
|
Loading…
Add table
Reference in a new issue