Skip to content

Repository for Security Management & Computer Forensics

Notifications You must be signed in to change notification settings

KavitaSah/SecurityManagement

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 

Repository files navigation

Security Management & Computer Forensics

Github for Beginners

  1. Install Git
    Follow the instructions here: https://git-scm.com/book/en/v1/Getting-Started-Installing-Git

  2. Checkout our Class Repository In terminal, run the following to copy the released homework directory to your desktop.
    $ git clone https://github.com/carriegardner428/SecurityManagement.git

  • To Update,
    Run a Git Pull
$ git pull origin master
  • To Revert a File...
    Let's say you make a mistake on a file and want to bring back the original copy...
$ git checkout -- <filename>
  • To Commit (Save) Your Changes
    To log checkpoints for things done
$ git add <filename>  
$ git commit -m 'your commit message'  

Environment Set-Up

Online with Google Colab

  1. Create a google account
    You probably already have one :)

  2. Go to http://colab.research.google.com You can create new notebooks, or open a notebook from Github, Google Drive, or your local host

You can open one of the notebooks in this repo by either:

Locally with Conda

  1. Create Conda Environment
$ conda create -n sec python=3.5 anaconda
  1. Activate Environment
$ source activate sec
  1. (OPTIONAL) Install New Packages
$ conda install <packagename>
$ pip install <packagename>
  1. Deactivate Environment
$ source deactivate

General Requirements:

  • python==3.5.4
  • pandas==0.22
  • jupyter==1.0.0
  • geoip2

Additional Requirements for Lab 1

Assignment Submission

After you have complted the assignment, you must turn in the .ipynb notebook and PDF copy to Courseweb.

  • *.pdf - Export the *.ipynb jupyter notebok as a PDF
  • Login to Courseweb and upload the PDF of the assignment

About

Repository for Security Management & Computer Forensics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Jupyter Notebook 100.0%