File size: 622 Bytes
d5bfab8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Resources used by LODA Rust

When the "LODA Lab" executable is running, it makes use of the files in this dir.


### The `program_creation_dates.csv` file

Date when a LODA program got added to the git repository.

This is useful when randomly picking a fairly recent `program_id`.

This task is VERY time consuming. It took 15 hours to extract creation date from 28k files.

To rebuild this file follow these steps:

```
PROMPT> pwd
/Users/JOHNDOE/git/loda-rust/script
PROMPT> rake data/program_creation_dates.csv
PROMPT> cd ..
PROMPT> cp script/data/program_creation_dates.csv resources/program_creation_dates.csv
```