This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://benchmarksgame.alioth.debian.org/u64q/knucleotide-description.html#knucleotide | |
extern crate fnv; | |
use std::thread; | |
use std::sync::Arc; | |
use std::collections::HashMap; | |
use std::hash::BuildHasherDefault; | |
use fnv::FnvHasher; | |
const SEQ_LENS: [usize; 7] = [1, 2, 3, 4, 6, 12, 18]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
macro_rules! max { | |
($x:expr) => ( $x ); | |
($x:expr, $($xs:expr),+) => { | |
{ | |
use std::cmp::max; | |
max($x, max!( $($xs),+ )) | |
} | |
}; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* bling.js | |
* | |
* Original Author: Paul Irish | |
* Fetched from https://gist.github.com/paulirish/12fb951a8b893a454b32/fe4fa7794b6575d8356ac73a79b0aefd75ffacbb | |
*/ | |
/** | |
* Select elements with CSS-style selector syntax | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Foo</title> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" /> | |
<style type='text/css'> | |
body { | |
font-family: 'Helvetica Neue'; | |
background:#000; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.extend $.expr[":"], | |
inView: (a) -> | |
# cf. http://remysharp.com/2009/01/26/element-in-view-event-plugin/#comment-127058 | |
st = (document.documentElement.scrollTop or document.body.scrollTop) | |
ot = $(a).offset().top | |
wh = (if (window.innerHeight and window.innerHeight < $(window).height()) then window.innerHeight else $(window).height()) | |
ot > st and ($(a).height() + ot) < (st + wh) | |
$.fn.scroll_if_necessary = -> | |
if this.length && not @is(":inView") |