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
### Keybase proof | |
I hereby claim: | |
* I am codahale on github. | |
* I am codahale (https://keybase.io/codahale) on keybase. | |
* I have a public key whose fingerprint is 5D14 B50E 62D6 279D 6C41 52DC DC59 AFA3 840C 3C96 | |
To claim this, I am signing this object: |
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
pub fn estimate(&self, e: &E) -> u64 { | |
indexes(e, self.width) | |
.take(self.depth) | |
.enumerate() | |
.map(|(i, idx)| self.counters[i][idx]) | |
.min() | |
.unwrap() | |
} |
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
14:17:33 ~ $ rustc --version | |
rustc 1.0.0-nightly (44a287e6e 2015-01-08 17:03:40 -0800) | |
14:17:36 ~ $ cargo --version | |
cargo 0.0.1-pre-nightly (8c01b6b 2015-01-08 20:52:43 +0000) | |
14:17:47 ~ $ cd /tmp | |
14:17:49 /tmp $ cargo new --bin hello-world | |
14:18:00 /tmp $ cd hello-world/ | |
/tmp/hello-world | |
14:18:04 /tmp/hello-world [git:master?] $ cargo run | |
An unknown error occurred |
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
5.0 + | |
| | |
| | |
| +-----*-----+ | |
| | |
4.0 + | |
| | |
| | |
| +-----*-----+ |
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
package blah | |
import ( | |
"sync/atomic" | |
) | |
var ( | |
n uint64 | |
) |
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
fn main() { | |
let (port, chan): (Port<int>, Chan<int>) = stream(); | |
let mut i = 0; | |
while i < 30 { | |
do spawn { | |
chan.send(1); | |
} | |
i += 1; | |
} |
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
import com.google.caliper.Runner; | |
import com.google.caliper.SimpleBenchmark; | |
import java.util.HashSet; | |
import java.util.TreeSet; | |
public class SetBenchmark extends SimpleBenchmark { | |
// If you add a main function, you can run it from your IDE. | |
public static void main(String[] args) throws Exception { | |
new Runner().run( |
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
[INFO] +- com.sun.jersey.jersey-test-framework:jersey-test-framework-inmemory:jar:1.12:compile | |
[INFO] | \- com.sun.jersey.jersey-test-framework:jersey-test-framework-core:jar:1.12:compile | |
[INFO] | +- javax.servlet:javax.servlet-api:jar:3.0.1:compile | |
[INFO] | \- com.sun.jersey:jersey-client:jar:1.12:compile |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>com.example</groupId> | |
<artifactId>my-project</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<dependencies> | |
<!-- none yet --> |
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
//decompiled with JD-GUI | |
import scala.ScalaObject; | |
import scala.reflect.ScalaSignature; | |
@ScalaSignature(bytes="\006\00192A!\001\002\001\013\t9!+Z4vY\006\024(\"A\002\002\017q*W\016\035;z}\r\0011c\001\001\007\035A\021q\001D\007\002\021)\021\021BC\001\005Y\006twMC\001\f\003\021Q\027M^1\n\0055A!AB(cU\026\034G\017\005\002\020%5\t\001CC\001\022\003\025\0318-\0317b\023\t\031\002CA\006TG\006d\027m\0242kK\016$\b\"B\013\001\t\0031\022A\002\037j]&$h\bF\001\030!\tA\002!D\001\003\021\035Q\002\0011A\005\nm\t\021![\013\0029A\021q\"H\005\003=A\0211!\0238u\021\035\001\003\0011A\005\n\005\nQ![0%KF$\"AI\023\021\005=\031\023B\001\023\021\005\021)f.\033;\t\017\031z\022\021!a\0019\005\031\001\020J\031\t\r!\002\001\025)\003\035\003\tI\007\005C\003+\001\021\0051&A\002j]\016$\022A\t\005\006[\001!\taG\001\004O\026$\b") | |
public class Regular | |
implements ScalaObject | |
{ | |
private int i = 0; |
NewerOlder