Samuel Kendrick

Samuel Kendrick @adnauseum

Joined:
Jun 4, 2018

Samuel Kendrick
articles - 12 total

A math game called 0-20

I take my 4 year old to a math circle at a nearby university. If you don't know what a math circle...

Learn More 0 2Oct 9 '24

?? in JavaScript: the nullish coalescing operator.

0 ?? "default"; // 0 false ?? "default"; // false [] ?? "default" // [] /** ⚠️ Pay attention. ...

Learn More 0 0May 2 '23

A rambling test-first example

You've been assigned at ticket! Check it out:...

Learn More 0 0Apr 26 '23

How can I get draggable items to stack on top of each other using react-draggable?

Hey! Check out my PR: https://github.com/VEuPathDB/CoreUI/pull/140/files In it I've added a general...

Learn More 0 0Feb 2 '23

Rubber Duck Driven Development: A general purpose draggable menu.

Song I listened to while starting:...

Learn More 0 0Feb 1 '23

The number of elements in a power set of size <= 1 is the size of the original set + 1 more element: the empty set .

Suppose ∣A∣=m|A|=m∣A∣=m . What is the size of this set: ∣{X∈P(A)∈:∣X∣≤1}∣ | \{X \in \maths...

Learn More 1 0Jul 16 '20

Sorting ISO 8601 timestamps

Let's suppose I have a list of timestamps: timestamps = [ '2020-06-02T16:47:50Z', '2020-05-08T0...

Learn More 6 3Jul 16 '20

The Cartesian product of a set and the empty set

The cartesian product of a set and the empty set, but why?

Learn More 1 0Jul 16 '20

Any tree with at least two vertices must have at least two vertices of degree one.

Let's prove this proposition about trees by contradiction.

Learn More 1 0May 28 '20

Exploring the definition of a tree

Let's look at why trees are defined the way they are in graph theory.

Learn More 1 0May 25 '20

Handshaking lemma / Degree sum formula

Exploring the degree sum formula and what it tells us about simple graphs.

Learn More 2 0May 23 '20

How many squares of any size are there on an 8x8 chessboard?

A problem illustrating some principles of discrete math

Learn More 6 0Feb 4 '20