Browse Source

update README Project Information & Project/Environment Set-up.

master
Craig Oates 1 year ago
parent
commit
815db6721a
  1. 93
      README.org

93
README.org

@ -1,3 +1,92 @@
* CO-Data
#+options: ':nil *:t -:t ::t <:t H:3 \n:nil ^:t arch:headline author:t
#+options: broken-links:nil c:nil creator:nil d:(not "LOGBOOK") date:t e:t
#+options: email:nil f:t inline:t num:t p:nil pri:nil prop:nil stat:t tags:t
#+options: tasks:t tex:t timestamp:t title:t toc:t todo:t |:t
#+title: CO-Date: README
#+date: \today
#+author: Craig Oates
#+email: craig@craigoates.net
#+language: en
#+select_tags: export
#+exclude_tags: noexport
#+creator: Emacs 29.0.60 (Org mode 9.6.1)
#+cite_export:
#+export_file_name: ./exported/readme.html
A data exploration project using data from [[https://www.craigoates.net][craigoates.net]].
* <2023-03-26 Sun> Project Information
This is a data exploration project using data from [[https://www.craigoates.net][craigoates.net]]. It goes about
this using the [[https://en.wikipedia.org/wiki/Literate_programming][Literate Programming]] Approach. If are you unfamiliar with
Literate Programming, you might find the lack of /code/ files unusual but don't
worry. This is normal when approaching programming this way. Also, if you are
unfamiliar with the /.org/ file extension, think of it as a expanded version of a
markdown (.md) file. The /code blocks/ in these .org files are what are executed
and the text surrounding them bring extra context and help explain what the code
is doing.
The project assumes familiarity with the following:
- Emacs
- Org-Mode
- Org-Babel
- Common Lisp
- Bash
- Linux (Ubuntu/Debian)
/The code in this project should run on a Mac and Windows, it just hasn't been
tested on those systems./
To get the project onto your machine,
#+begin_src shell :results code
cd <PATH TO PLACE YOU WANT TO CLONE REPO. TO>
git clone https://git.abbether.net/craig.oates/co-data.git
cd co-data
#+end_src
Let the exploration begin...
* <2023-03-26 Sun> Project/Environment Set-up
Before you start opening the other files, you need to make sure you have set-up
you environment properly -- after a fresh clone of the repository.
#+begin_src shell :results code
# Make sure you are at the project's root.
mkdir output exported
#+end_src
Your version of the repository should look something like the following,
#+begin_src shell :results code
tree -L 2
#+end_src
#+RESULTS:
#+begin_src shell
.
├── artwork.html
├── artwork.org
├── data
│ └── co-production-2023-03-14.db
├── exported
│ └── readme.html
├── LICENSE
├── output
│ └── readme.html
└── README.org
3 directories, 7 files
#+end_src
- =data/= contains all the /input/ data you want to process and you shouldn't need
to write anything to here -- only read.
- =output/= is where all the (transformed) data from =data/= goes; Consider this the
project's /workbench/.
- =exported/= is used for exporting/converting the .org files (E.G. into PDF or
HTML files); The contents of this directory will be ignored by ~git~ so it does
not clog-up the commit history. I tend to view it as a place to store files
you intend to share with others in a more conventional format.
In an attempt to reduce the amount of duplicated information, the contents of
=data/= will be expanded upon in the other .org files and not here.

Loading…
Cancel
Save