Skip to content

Instantly share code, notes, and snippets.

View cjoy's full-sized avatar

Chris Joy cjoy

View GitHub Profile
@cjoy
cjoy / flagbase-cla.md
Last active November 1, 2020 06:51
Flagbase CLA

In order to clarify the intellectual property license granted with Contributions from any person or entity, Flagbase ("Flagbase") must have a Contributor License Agreement ("CLA") on file that has been signed by each Contributor, indicating agreement to the license terms below. This license does not change your rights to use your own Contributions for any other purpose.

You accept and agree to the following terms and conditions for Your present and future Contributions submitted to Flagbase. Except for the license granted herein to Flagbase and recipients of software distributed by Flagbase, You reserve all right, title, and interest in and to Your Contributions.

  1. Definitions. "You" (or "Your") shall mean the copyright owner or legal entity authorized by the copyright owner that is making this Agreement with Flagbase. For legal entities, the entity making a Contribution and all other entities that control, are controlled by, or are under common control with that entity are considered to be a single Contri
@cjoy
cjoy / math1231-maple-lab-exam-solutions.md
Created June 15, 2020 07:45
Math1231: Maple Lab Test Questions & Solutions

Math1231: Maple Lab Test Questions & Solutions

These solutions have been extracted from the 2016s2 maple lab practice test. These notes are in no way affiliated with UNSW's School of Mathematics nor UNSW's MathSoc. I highly recommend you try doing the practice questions yourself and use these notes if your really stuck. Maple 18 was used to generate the solutions.

Question 1

q1

with(LinearAlgebra): # Include the LinearAlgebra package, if not already loaded.
A := <<6534, 37886, 17462, -3738, 4430> | <32490, -26590, -49930, 21570, 51050> | <21912, -6552, -10284, -84984, -72360> | <-14745, -25505, -21035, 6315, 14575> | <26985, 26065, -20645, 16605, 24025>>;
@cjoy
cjoy / data-structures-notes.md
Last active April 19, 2020 14:52
Data-structures Notes

ADTs

  • ADT Interfaces:
    • Opaque view of a data structure (eg. typedef struct t *T, we don't know struct t)
    • Function signatures for all operations
    • Semantics of operations (via documentation, etc)
    • A contract between ADT and clients
  • ADT implementations
    • Concrete defintion of the data structures
    • Function implementations for all operations
@cjoy
cjoy / decision-tree-using-sklearn.ipynb
Last active April 21, 2020 04:05
Decision Tree using Sklearn.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.