https://github.com/srijanshetty/lecture-references
Lectures from Universities around the world which have helped me grok the concept
https://github.com/srijanshetty/lecture-references
Last synced: about 2 months ago
JSON representation
Lectures from Universities around the world which have helped me grok the concept
- Host: GitHub
- URL: https://github.com/srijanshetty/lecture-references
- Owner: srijanshetty
- Created: 2015-02-20T04:51:34.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-22T11:58:37.000Z (almost 10 years ago)
- Last Synced: 2025-01-17T19:51:20.759Z (3 months ago)
- Size: 156 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
papers
======A git-annex repository of resources for learning a multitude of topics.
Using
-----First install `git` and `git-annex`. Then:
```sh
git clone git://github.com/srijanshetty/lecture-references
git-annex init local
git-annex get .
```If you want just some particular lecture:
```
git-annex get databases/normalization/bcnf-3nf.pdf
```Please open an issue if you cannot download any lecture so that I can mirror them.
How I created this?
-------------------```sh
cd papers
git init
git remote add origin [email protected]/srijanshetty/lecture-references
git-annex init laptop
git annex addurl --file=databases/normalization/bcnf-3nf.pdf http://www2.cs.sfu.ca/CourseCentral/354/jpei/slides/BCNF-3NF.pdf
git-annex add .
git commit -m "lectures"
git config remote.origin.annex-ignore true # Because GitHub doesn't store annexed content.
git push origin master git-annex
```