Skip to content

Instantly share code, notes, and snippets.

<div class="welcome-banner" style="background-color: #337ab7;
color: white;
min-height: 70px;
line-height: 70px;
text-align: center;
font-size: 58px;">WELCOME TO BC30</div>
<div class="welcome-logobox" style="text-align:center;
border: 1px solid white;
background-color: black;
margin: 20px 0px 25px 0px;

Films releases that are new in the UK (or have not yet been released here)

To find where to watch, use https://justwatch.com/uk or https://justwatch.com/us

Roughly in order of newest at the top

  • Extraction
  • Time to Hunt
  • Swallow
  • The Silence of the Marsh
### Keybase proof
I hereby claim:
* I am garyfleming on github.
* I am garyfleming (https://keybase.io/garyfleming) on keybase.
* I have a public key whose fingerprint is 25D7 92A4 8E32 EE0F E061 6D83 E146 359E D181 1A66
To claim this, I am signing this object:
@garyfleming
garyfleming / game-of-life.js
Last active November 9, 2015 17:02
Naive Game Of Life in JS/Canvas
/* An intentionally naive (brute-force), declarative version of Conway's Game
* of Life.
*
* The aim was to write it as quickly as possible, with no tests, and as little
* regard for developing a domain as possible. That is, it is intentionally
* naive in as many ways as I could muster. It consequently looks like
* JavaScript from the early 2000s.
*
* The only concession I made was to put sizing and initial population controls
* near the top, to help me play with it.

Keybase proof

I hereby claim:

  • I am garyfleming on github.
  • I am garyfleming (https://keybase.io/garyfleming) on keybase.
  • I have a public key whose fingerprint is F74F 00E2 5D66 393B 7024 1CC1 4037 3EA0 1E7C 00D2

To claim this, I am signing this object:

@garyfleming
garyfleming / RepeatRule.java
Created June 2, 2011 19:44
JUnit RepeatRule.java
import java.math.BigDecimal;
import java.math.MathContext;
import java.math.RoundingMode;
import org.junit.rules.MethodRule;
import org.junit.runners.model.FrameworkMethod;
import org.junit.runners.model.Statement;
public class RepeatRule implements MethodRule {