Skip to content

Instantly share code, notes, and snippets.

View rdjpalmer's full-sized avatar
🌻

Richard Palmer rdjpalmer

🌻
View GitHub Profile
@rdjpalmer
rdjpalmer / timer.js
Created July 9, 2019 20:07
Timo's timer class
class Timer {
constructor(startTime = 0, onUpdate = () => {}) {
this.startTime = startTime;
this.onUpdate = onUpdate;
}
offset = null;
interval = null;
recording = false;

Keybase proof

I hereby claim:

  • I am rdjpalmer on github.
  • I am rdjpalmer (https://keybase.io/rdjpalmer) on keybase.
  • I have a public key ASAlK86y14LJB3f3MKJoahI6MvOt34ZIAIWlt6tk1IzUDgo

To claim this, I am signing this object:

@rdjpalmer
rdjpalmer / ricks-guide-to-markdown-at-appearhere.md
Last active August 15, 2017 09:13
Rick's rough guide to writing markdown @ Appear here

Rick’s guide to writing Markdown @ Appear Here

What is Markdown?

Markdown is a form of markup which allows you to add semantics to your content.

Technically speaking it:

is a text-to-HTML conversion tool for web writers. Markdown allows you to write using an easy-to-read, easy-to-write plain text format, then convert it to structurally valid XHTML (or HTML).