{"id":19146609,"url":"https://github.com/theroughcode/course-notes","last_synced_at":"2025-05-07T02:04:48.239Z","repository":{"id":112476611,"uuid":"87015343","full_name":"theRoughCode/Course-Notes","owner":"theRoughCode","description":":books: Open-Source Course Notes for UW Students","archived":false,"fork":false,"pushed_at":"2018-01-08T00:30:04.000Z","size":1757,"stargazers_count":6,"open_issues_count":2,"forks_count":7,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-07T02:04:43.065Z","etag":null,"topics":["code-prettify","html","latex","mathjax","notes","university"],"latest_commit_sha":null,"homepage":"http://raphaelkoh.me/Course-Notes/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/theRoughCode.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-04-02T20:50:28.000Z","updated_at":"2023-10-09T06:47:27.000Z","dependencies_parsed_at":"2023-05-15T03:30:22.941Z","dependency_job_id":null,"html_url":"https://github.com/theRoughCode/Course-Notes","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theRoughCode%2FCourse-Notes","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theRoughCode%2FCourse-Notes/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theRoughCode%2FCourse-Notes/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/theRoughCode%2FCourse-Notes/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/theRoughCode","download_url":"https://codeload.github.com/theRoughCode/Course-Notes/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252798855,"owners_count":21805887,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["code-prettify","html","latex","mathjax","notes","university"],"created_at":"2024-11-09T07:47:29.925Z","updated_at":"2025-05-07T02:04:48.230Z","avatar_url":"https://github.com/theRoughCode.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Course-Notes\nHey everyone!  This repo was created initially for me to study/increase the lifespan and legacy of my notes.  However, I realized that I could go further and make this open-source.  So, here it is!\n\n## How Do I Contribute?\n If you find a typo or an error or if you have suggestions on something to add, you can:\n 1. Check the [issue tracker](https://github.com/theRoughCode/Course-Notes/issues) to make sure that it hasn't been logged already.  If not, create a [new issue](https://github.com/theRoughCode/Course-Notes/issues/new) and someone else can pick it up!\n 2. [Fork the repo](https://help.github.com/articles/fork-a-repo/) following the instructions below and submit a pull request with the change!\n \n### Forking The Repo\nIf you found an issue you can fix or implement, you should contribute directly to the code base!\n1. Fork this repo.\n2. Create a branch with a descriptive name.  For example, if you're fixing issue #5:\u003cbr /\u003e\n```git checkout -b 5-fix-styling-for-math-146```\n3. If you're creating a new course, create a new file \"courses/\\\u003csubject in lower-case\\\u003e\\\u003ccourse-number\\\u003e.html\"\n4. Implement your feature.  Don't be afraid to ask questions!\n5. Once you've finished implementing your changes, make sure that your master branch is up-to-date with the remote master branch\n```\ngit remote add upstream git@github.com:theroughcode/Course-Notes.git\ngit checkout master\ngit pull upstream master\n```\n6. Update your feature branch with your master branch.\n```\ngit checkout 5-fix-styling-for-math-146\ngit rebase master\ngit push --set-upstream origin 5-fix-styling-for-math-146\n```\n7. Create a [pull request](https://github.com/theRoughCode/Course-Notes/pulls)\n8. Your PR will be merged once a project maintainer approves it and merges it!\n\n## What Should I Take Note Of?\n### Math-Related Courses\nFor math-related courses, we will be making use of [MathJax](https://www.mathjax.org/) to embed LaTeX into our html.  \nIf you are creating a new html file that requires MathJax, include the following script tags into the \\\u003chead\\\u003e of your document.\n```html\n\u003cscript type=\"text/javascript\" async\n  src=\"https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML\"\u003e\n\u003c/script\u003e\n\u003cscript type=\"text/x-mathjax-config\"\u003e\n  MathJax.Hub.Config({\n    tex2jax: {inlineMath: [['$','$'], ['\\\\(','\\\\)']]}\n  });\n\u003c/script\u003e\n```\n#### Tips for MathJax\n - To in-line LaTeX: use $\\\u003cmath\\\u003e$\n - To centre on page (equation-style): use $$\\\u003cmath\\\u003e$$\n### CS-Related Courses\nFor CS-related courses, we will be using Google's [Code-Prettify](https://github.com/google/code-prettify) to format and provide syntax highlighting for our code.  To embed it in your code, use either ```\u003cpre\u003e``` or ```\u003ccode\u003e``` with ```class=\"prettyprint\"``` and enclose your code segment in it.\n\n## Contributors [![All Contributors](https://img.shields.io/badge/all_contributors-5-orange.svg?style=flat-square)](#contributors)\n\u003c!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section --\u003e\n| [\u003cimg src=\"https://avatars1.githubusercontent.com/u/3231840?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eClayton Halim\u003c/b\u003e\u003c/sub\u003e](https://github.com/clayton-halim)\u003cbr /\u003e[💻](https://github.com/theRoughCode/Course-Notes/commits?author=clayton-halim \"Code\") | [\u003cimg src=\"https://avatars1.githubusercontent.com/u/20635630?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eAnamaya Garodia\u003c/b\u003e\u003c/sub\u003e](https://github.com/anamayagarodia)\u003cbr /\u003e[💻](https://github.com/theRoughCode/Course-Notes/commits?author=anamayagarodia \"Code\") | [\u003cimg src=\"https://avatars1.githubusercontent.com/u/18239310?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eTate Lok-Chun Cheng\u003c/b\u003e\u003c/sub\u003e](https://github.com/tate1010)\u003cbr /\u003e[💡](#example-tate1010 \"Examples\") | [\u003cimg src=\"https://avatars0.githubusercontent.com/u/19877964?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eHassaan Sami\u003c/b\u003e\u003c/sub\u003e](https://github.com/hsami10)\u003cbr /\u003e[🐛](https://github.com/theRoughCode/Course-Notes/issues?q=author%3Ahsami10 \"Bug reports\") | [\u003cimg src=\"https://avatars0.githubusercontent.com/u/5943822?v=4\" width=\"100px;\"/\u003e\u003cbr /\u003e\u003csub\u003e\u003cb\u003eDomingo\u003c/b\u003e\u003c/sub\u003e](https://github.com/domingohui)\u003cbr /\u003e[💻](https://github.com/theRoughCode/Course-Notes/commits?author=domingohui \"Code\") |\n| :---: | :---: | :---: | :---: | :---: |\n\u003c!-- ALL-CONTRIBUTORS-LIST:END --\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheroughcode%2Fcourse-notes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftheroughcode%2Fcourse-notes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftheroughcode%2Fcourse-notes/lists"}