https://github.com/ricco386/cyber502x-computer-forensics
RITx: CYBER502x Computer Forensics - Personal study notes
https://github.com/ricco386/cyber502x-computer-forensics
mooc security study-notes
Last synced: 6 months ago
JSON representation
RITx: CYBER502x Computer Forensics - Personal study notes
- Host: GitHub
- URL: https://github.com/ricco386/cyber502x-computer-forensics
- Owner: ricco386
- License: mit
- Created: 2019-09-01T21:04:44.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-10T07:05:53.000Z (over 5 years ago)
- Last Synced: 2025-03-26T03:33:12.574Z (6 months ago)
- Topics: mooc, security, study-notes
- Language: Python
- Homepage: https://ricco386.github.io/CYBER502x-Computer-Forensics/
- Size: 5.74 MB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
RITx: CYBER502x Computer Forensics - Personal study notes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~This are my personal notes taken during the course `RITx: CYBER502x Computer Forensics `_ at `edx.org `_.
* `CYBER501x Cybersecurity Fundamentals notes `_
* `CYBER502x Computer Forensics notes `_
* `CYBER503x Cybersecurity Risk Management `_Feel free to use them during your study and if you find it useful you can star this repository. If you find a mistake or you think I have missed something important I am more than happy to accept RP on this repo.
Notes are written in `Sphinx `_ documentation format. You can visit build notes at url: https://ricco386.github.io/CYBER502x-Computer-Forensics/
How to build the notes
======================Create Python virtual environments and activate them::
python3 -m venv envs3
source envs3/bin/activateInstall the requiremetns::
pip install -r requirements.txt
Build the Sphinx docs::
make html
Run Python build-in webserver and open the build documentation in browser::
cd docs/html
python -m http.server 8000
firefox http://localhost:8000/All of my study notes are released under `MIT license `_, there is no guarantee anything here will work (for you), and I take **NO responsibility** for any illegal actions made after reading my notes.
Richard von Kellner