/README.md (27500c73cdde3d30d803760f78a1e2b5d2b0b096) (4342 bytes) (mode 100644) (type blob)
---
title: Readme for Lecture Notes for CSCI 3410 -- Database Systems
author: Clément Aubert
lang: en
fontsize: 10pt
documentclass: scrartcl
numbersections: true
papersize: letter
geometry: margin=1in
---
Here are the lecture notes, code, exercises and problems for a lecture on database taught at [Augusta University](https://www.augusta.edu/) by C. Aubert.
The webpage for this project is at <http://spots.augusta.edu/caubert/db/ln/>, and it contains a compiled version of the notes.
## Getting Started
The source code, hosted at <https://rocketgit.com/user/caubert/CSCI_3410>, is organized as follows:
~~~{.plain}
.
├── install/ -- How to install the requirements to compile the document.
├── notes/
│ ├── bib/ -- References (including reference to the document).
│ ├── code/ -- Source code included in the document.
│ ├── fig/ -- Source code for various figures used in the document.
│ ├── filters/ -- Pandoc filters.
│ ├── img/ -- Various image files integrated in the document.
│ ├── latex/ -- Latex configuration file.
│ ├── lib/ -- Various libraries
│ ├── style/ -- css style used for the web page.
│ ├── lectures_notes.md -- The main file for the lecture notes.
│ ├── Makefile -- Directives to generate the lecture notes.
│ └── temp.md -- Temporary file, for debugging purposes
├── CONTRIB.md -- A guide on how to contribute
├── KNOWN_BUGS.md -- A list of possible bugs, improvments, things to check, ...
├── LICENSE.md -- The licence of those notes.
├── README.md -- The present file
└── WORKFLOW.md -- An step-by-step guide on how to edit those notes.
~~~
Before compiling this document, you will need to install LaTeX, pandoc, and several other programs.
Refer to `install/install.md` for instructions on how to compile this document.
To clone the source, use git and the command
~~~{.bash}
git clone https://rocketgit.com/user/caubert/CSCI_3410
~~~
To compile this document, simply change directory to `notes` and run
- `make fig`, then `make pdf`, to obtain the pdf version,
- `make fig_svg`, then `make html` to obtain the html version,
- `make fig_svg`, then `make odt` to obtain the odt version.
The Makefile in the `notes` folder is commented.
## Contributing
The simplest way to contribute is to report typos, errors or misleading statements.
- You can submit bug reports at <https://rocketgit.com/user/caubert/CSCI_3410/bug> (requires an account).
- You can contact or visit me, cf. <http://spots.augusta.edu/caubert/#contact>.
Refer to [`CONTRIB.md`](CONTRIB.html) for more information.
## Authors and Contributors
- **Clément Aubert** - *Initial work* - <http://spots.augusta.edu/caubert/>
- **Crystal Anderson** - *Revisions*
- **Bobby Mcmanus**, **Minh Nguyen** and **Poonam Veeral** - *Installation guide and quality control*
Those notes would not have been without the constant support, curiosity, and remarks from my students.
Crystal was supported by an [Affordable Learning Georgia](https://www.affordablelearninggeorgia.org/) "Mini-Grant for Ancillary Materials Creation and Revision" ([Proposal M71](https://www.affordablelearninggeorgia.org/documents/M71_Augusta_Aubert.pdf)).
Bobby, Minh and Poonam benefited from the support and guidance of Dr. Onyeka Ezenwoye in the CSCI 4712 - Senior Capstone Project class.
## License
This project is licensed under the [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/) licence: you are free to share and adapt this document, as long as you give proper credit.
Refer to [`LICENSE.md`](LICENSE.html) for the complete licence.
The files in the `lib` sub-folder comes from:
- <https://github.com/google/google-java-format/releases>, released under the Apache 2.0 license.
- <https://dev.mysql.com/downloads/connector/j/>, released under version 2 of the GNU General Public License (GPLv2).
and are redistributed as is, in agreement with their respective licences.
Mode |
Type |
Size |
Ref |
File |
100644 |
blob |
66 |
dfe0770424b2a19faf507a501ebfc23be8f54e7b |
.gitattributes |
100644 |
blob |
2004 |
bc812ab8cb5f7c667981a30e936d7cf44fd20cae |
CONTRIB.md |
100644 |
blob |
17391 |
ee4f999692dd06cb3fb247c76961eb937a4b61f8 |
KNOWN_BUGS.md |
100644 |
blob |
17370 |
88336d7c15e68de644f6ece046e4ed3a2fa6d563 |
LICENSE.md |
100644 |
blob |
3304 |
2e1c11f676276c8df78d7bf3e2ccac46a8e30829 |
Naming Convention.md |
100644 |
blob |
4342 |
27500c73cdde3d30d803760f78a1e2b5d2b0b096 |
README.md |
100644 |
blob |
977 |
588857854369059aedc86cfc40b7dfce0d9b9b07 |
TO_DO.md |
100644 |
blob |
2675 |
4bc53f72a0bf4d859a0bc8cf7a7cb65c5fe751f0 |
WORKFLOW.md |
040000 |
tree |
- |
7c8169dc2a61ede5ae3bd4b3171514b4ded52c81 |
install |
040000 |
tree |
- |
b0b985a0fb78df8b9d27618560046ed54404f0ff |
notes |
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"
Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/caubert/CSCI_3410
Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/caubert/CSCI_3410
Clone this repository using git:
git clone git://git.rocketgit.com/user/caubert/CSCI_3410
You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a
merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main