Replication Package for "The Secret Life of Hackathon Code Where does it come from and where does it go?"
Only the scripts are available in the replication package. The underlying dataset used in the study is the World of Code (WoC) dataset, and it is too large to share here. Please check the WoC Tutorial for details of how to access and use the dataset.
Command for getting required data from WoC
$ cat hack_projects | ~/lookup/getValues -f p2c > p2c.csv
$ cat p2c.csv | cut -d\; -f2 | sort -u | ~/lookup/getValues -f c2b > c2b.csv
$ cat c2b.csv | cut -d\; -f2 | sort -u > Bs
$ cat Bs | ~/lookup/getValues -f b2a | awk -F\; '{OFS=";"; $2=strftime("%Y-%m-%d %H:%M:%S", $2); print $0}' > b2a.csv
$ cat hack_projects | ~/lookup/getValues p2a | sed -e 's/;/,/g' -e 's/,/;/1' > p2a.csv
$ cat Bs | ~/lookup/getValues -f b2c > b2c.csv
$ cat b2c.csv | cut -d\; -f2 | sort -u -T. > CsAll
$ cat CsAll | ~/lookup/getValues -f c2P > c2P.csv
$ cat CsAll | ~/lookup/getValues c2ta | awk -F\; '{OFS=";"; $2=strftime("%Y-%m-%d %H:%M:%S", $2); print $0}' > c2ta.csv