Coder Social home page Coder Social logo

cheatsheets's Introduction

I am looking to handover this repository to a current student! Since I graduated, I can't find the time to maintain this repository, nor am I able to persuade anyone to contribute their cheatsheets (because, y'know, I am not taking classes @ NUS). If you are interested in taking over, please:

  1. Clone this repository and push it as your own (don't fork it)
  2. Have your repository be more updated than this one, e.g. with new or updated cheatsheets
  3. Open an issue in this repository stating your intention to takeover

I will then add a link from this repository to yours, then archive this repository. It would be great if you are neat and organised with your commits, enthusiastic about and experienced with OSS.

Cheatsheets

  1. CS1101S Midterms (AY19/20)
  2. CS1101S Finals
  3. CS1231 Finals
  4. CS1231 Midterms
  5. CS2100 Finals
  6. CS2105 Midterms
  7. MA1101R Finals
  8. ST2132 Midterms
  9. ST2132 Finals
  10. UQF2101I Test 1
  11. UQF2101I Test 2

CS1101S Midterms (AY19/20)

docs/cs1101s-midterms-2019s1-0.png

docs/cs1101s-midterms-2019s1-1.png

Prepared for AY2019/20 Sem 1 by Christopher Goh. Was updated from the CS1101S Finals cheatsheet. This version is written for the version of Source used in CS1101S AY19/20 (i.e. the one where empty list is null). Written for a single piece of double-sided A4 paper, as per the limitation. Download the PDF here.

CS1101S Finals

docs/cs1101s-finals-2017s1-0.png

docs/cs1101s-finals-2017s1-1.png

Prepared for AY2017/18 Sem 1. Includes documentation for inbuilt source functions, as it was announced that the exam paper would not provide said documentation. Written for a single piece of double-sided A4 paper, as per the limitation then. Download the PDF here.

CS1231 Finals

docs/cs1231-finals-2018s1-0.png

docs/cs1231-finals-2018s1-1.png

docs/cs1231-finals-2018s1-2.png

docs/cs1231-finals-2018s1-3.png

docs/cs1231-finals-2018s1-4.png

docs/cs1231-finals-2018s1-5.png

docs/cs1231-finals-2018s1-6.png

Prepared for AY2018/19 Sem 1. Does not cover Epp Appendix A. Download the PDF here.

CS1231 Midterms

docs/cs1231-midterms-2018s1-0.png

docs/cs1231-midterms-2018s1-1.png

Prepared for AY2018/19 Sem 1. Does not cover Epp Appendix A. Download the PDF here.

CS2100 Finals

docs/cs2100-finals-2017s2-0.png

docs/cs2100-finals-2017s2-1.png

Prepared for AY2017/18 Sem 2. Written for a single piece of double-sided A4 paper, as per the limitation then. Download the PDF here.

CS2105 Midterms

docs/cs2105-midterms-2018s1-0.png

docs/cs2105-midterms-2018s1-1.png

Prepared for AY2018/19 Sem 1. Written for a single piece of double-sided A4 paper, as per the limitation then. Download the PDF here.

MA1101R Finals

docs/ma1101r-finals-2017s1-0.png

docs/ma1101r-finals-2017s1-1.png

Prepared for AY2017/18 Sem 1. Written for a single piece of double-sided A4 paper. Download the PDF here.

ST2132 Midterms

docs/st2132-midterms-2018s2-0.png

docs/st2132-midterms-2018s2-1.png

Prepared for AY2018/19 Sem 2. Written for a single peice of double-sided A4 paper, as per the limitation then. Download the PDF here.

ST2132 Finals

docs/st2132-finals-2018s2-0.png

docs/st2132-finals-2018s2-1.png

Prepared for AY2018/19 Sem 2. Written for a single peice of double-sided A4 paper, as per the limitation then. Download the PDF here.

UQF2101I Test 1

docs/uqf2101i-test1-2018s2-0.png

docs/uqf2101i-test1-2018s2-1.png

Prepared for AY2017/18 Sem 2. Written for a single piece of double-sided A4 paper for convenience (there was no restriction on amount of reference material). Download the PDF here.

UQF2101I Test 2

docs/uqf2101i-test2-2018s2-0.png

docs/uqf2101i-test2-2018s2-1.png

Prepared for AY2017/18 Sem 2. Written for a single piece of double-sided A4 paper for convenience (there was no restriction on amount of reference material). Download the PDF here.

cheatsheets's People

Contributors

chrisgzf avatar ning-y avatar remo5000 avatar rish-16 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

cheatsheets's Issues

Use travis

Once #6 is implemented, travis should run make all and compare the diffs to make sure docs/*.png and pdf/*.pdf have been updated.


Looks like two compiled pdfs can't be the same, because the cdate and mdate are embedded in the file:

ning:~/temp $ diff test.pdf  test1.pdf --text
57,58c57,58
< /CreationDate (D:20180922113906+08'00')
< /ModDate (D:20180922113906+08'00')
---
> /CreationDate (D:20180922113859+08'00')
> /ModDate (D:20180922113859+08'00')
84c84
< /ID [<09E48BCF9B8804B9F2D051A74DE46D23> <09E48BCF9B8804B9F2D051A74DE46D23>]
---
> /ID [<F1EE7BE89A8172899D208856FCCB9E28> <F1EE7BE89A8172899D208856FCCB9E28>]

I can probably write a script to do this diff --text and parse its output to make sure nothing but cdate, mdate, and id has changed.

Use Makefile

Makefile should

  1. clean: remove pdflatex output
  2. docs: does pdf, then uses pdfseparate and convert to create respective docs/*.png
  3. pdf: compiles src/*.tex to pdf/*.tex
  4. all: all of the above, excluding clean

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.