Skip to content

Instantly share code, notes, and snippets.

View ErinLMoore's full-sized avatar
💭
🦑 ✨ 🏃🏻‍♀️

Erin Moore ErinLMoore

💭
🦑 ✨ 🏃🏻‍♀️
View GitHub Profile

About

Interpolating between things using lerp.

function lerp (start, end, t) {
  return start * (1 - t) + end * t;
}
@michaelrauh
michaelrauh / Dockerfile
Created August 12, 2016 00:53
Builds ubuntu 14.04 with C unit testing framework Check ready to run, and current dir mounted. Build with: docker build -t [name] . Run with: docker run --rm --name [name] -it -v $(pwd):/code [name]
FROM ubuntu:14.04
RUN apt-get update && apt-get install -y make gcc check git
VOLUME ["/code"]
WORKDIR /code
CMD 'bash'
@alexlafroscia
alexlafroscia / build.gradle
Last active December 21, 2020 10:31
JUnit Testing with Gradle
/*
* This build file was auto generated by running the Gradle 'init' task
* by 'alex' at '1/27/15 7:02 PM' with Gradle 2.2.1
*
* This generated file contains a commented-out sample Java project to get you started.
* For more details take a look at the Java Quickstart chapter in the Gradle
* user guide available at http://gradle.org/docs/2.2.1/userguide/tutorial_java_projects.html
*/
// Apply the java plugin to add support for Java