Skip to content

Instantly share code, notes, and snippets.

View robertleeplummerjr's full-sized avatar

Robert Plummer robertleeplummerjr

View GitHub Profile
@robertleeplummerjr
robertleeplummerjr / index
Created February 9, 2015 16:39
stencila#3
<!DOCTYPE html>
<html>
<head>
<script src="https://raw.githubusercontent.com/jakiestfu/Medium.js/master/medium.js"></script>
<link href="https://raw.githubusercontent.com/jakiestfu/Medium.js/master/medium.css" type="text/css"/>
<style>
.green {
background-color: green;
}
</style>
@robertleeplummerjr
robertleeplummerjr / indexOfNearestLessThan.js
Last active January 4, 2023 18:41
Ultra performant binary search to find nearest less than a value
function indexOfNearestLessThan(array, needle) {
if (array.length === 0) return -1;
var high = array.length - 1,
low = 0,
mid,
item,
target = -1;
if (array[high] < needle) {