Skip to content

Instantly share code, notes, and snippets.

View liang799's full-sized avatar

Neoh TP liang799

View GitHub Profile
@liang799
liang799 / Chpt1.md
Last active January 10, 2022 16:15
SP Computer Interfacing Tutorial Solutions

Section A

MCQ

d (correct)
c (correct)
a (wrong Ans:b)
d (wrong Ans:c)
c (correct)
d (correct)
? (Ans: D)
d (wrong Ans:a)

@liang799
liang799 / SP_CPR_CA2-presentation.md
Last active January 6, 2022 13:35
My notes for the briefing on LC0356 CA2 Presentation

Communication for Project Effectiveness CA2 Briefing

Background Info

Based on the content, the tech written in CA1, we need to present the contents of the tech in CA2. Presentation assessment.

Important Info

Read carefully

  • Juniors and their parents: they are people who are interested in Career in STEM --> how it can be applied
  • Don't focus on your diploma --> focus on stem
@liang799
liang799 / this.md
Last active February 20, 2025 00:49
Javascript this Notes

this

this is confusing, so I condesed what I have learned from MDN and Yehuda's Blog into a cheatsheet

Simple functions

function hello(thing) {
  console.log("Hello " + thing);
}

// this: