- Her Smell 6.2
- The Dead Don’t Die 5.5
- Fast Color 5.9
- Skin 7.4
- It Chapter Two 6.7
- Dolemite is My Name 7.3
- Tigers Are Not Afraid 7.1
- One Cut of the Dead 7.7
- Invisible Life 8.0
This file contains hidden or 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
#!/usr/bin/env python | |
# -*- coding: UTF-8 -*- | |
from __future__ import print_function, absolute_import, unicode_literals, division | |
with open ("input.txt") as f: | |
xs = f.read().strip().split("\n") | |
vals = [int(x) for x in xs] | |
vals |> sum |> print |
I hereby claim:
- I am mfirry on github.
- I am mfirry (https://keybase.io/mfirry) on keybase.
- I have a public key whose fingerprint is 139A FAEB 86CD E9C0 E126 68E3 CDFE 8735 DB12 85EA
To claim this, I am signing this object:
This file contains hidden or 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
export OPENSSL_INCLUDE_DIR=`brew --prefix openssl`/include | |
export OPENSSL_LIB_DIR=`brew --prefix openssl`/lib |
This file contains hidden or 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
class BigDecimalGroup extends CommutativeGroup[BigDecimal] { | |
def combine(x: BigDecimal, y: BigDecimal): BigDecimal = x + y | |
def empty: BigDecimal = 0 | |
def inverse(x: BigDecimal): BigDecimal = -x | |
override def remove(x: BigDecimal, y: BigDecimal): BigDecimal = x - y | |
} | |
implicit val catsKernelStdGroupForBigDecimal: CommutativeGroup[BigDecimal] = new BigDecimalGroup |
This file contains hidden or 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
export class Ticket extends Object {} | |
var tickets = []; | |
(function() { | |
var t1 = new Ticket(); | |
t1.id = '1'; | |
t1.from = 'CTA'; | |
t1.via = 'FCO'; | |
t1.to = 'JFK'; | |
t1.airports = ['CTA', 'FCO', 'JFK']; |
This file contains hidden or 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 { | |
graphql, | |
GraphQLSchema, | |
GraphQLObjectType, | |
GraphQLString, | |
GraphQLEnumType, | |
GraphQLInterfaceType, | |
GraphQLList, | |
GraphQLNonNull, | |
GraphQLInt |
This file contains hidden or 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
(ns test123.core | |
(:require [test123.limo :as l])) | |
(defn -main [] (l/foo "Marco")) |
I hereby claim:
- I am mfirry on github.
- I am mfirry (https://keybase.io/mfirry) on keybase.
- I have a public key whose fingerprint is 4622 0E9C F178 AD98 3037 41CA DAEE B33F 8538 91C9
To claim this, I am signing this object:
This file contains hidden or 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.twitter.bijection.twitter_util.UtilBijections._ | |
import com.twitter.bijection.{ AbstractBijection, Bijection, ImplicitBijection } | |
import com.twitter.util.Future | |
import scala.concurrent._ | |
import scala.concurrent.ExecutionContext.Implicits.global | |
//let's create two futures and put them in a List | |
val a = com.twitter.util.Future(1) |
NewerOlder