Skip to content

Instantly share code, notes, and snippets.

View pchiusano's full-sized avatar

Paul Chiusano pchiusano

View GitHub Profile
@pchiusano
pchiusano / traverse.scala
Created March 23, 2017 15:02
Another encoding of `Traverse` in terms of `mapAccumulate`
/**
* In this version of `Traverse`, sequencing always goes through `List` (or some other canonical sequence type),
* which can be done in a stack-safe manner using a balanced fold as in https://gist.github.com/pchiusano/7667597.
* It's quite nice that `sequence` and `traverse` are now derived functions.
*/
trait Traverse[F[_]] extends Functor[F] {
/** Inefficient but correct implementation of `toList` in terms of `mapAccumulate`. */
def toList[A](f: F[A]): List[A] = mapAccumulate(f, List())((a, rbuf) => (a, a :: rbuf))._2.reverse
/** The only function that must be implemented. Must be consistent with `map`. */
@pchiusano
pchiusano / rfc.markdown
Created February 21, 2017 21:46
Rough draft of v3 of Unison distributed programming APIs

Unison computations can hop between nodes, can fail, can be forked to execute asynchronously, and can be supervised:

-- Promote a pure value to `Remote`
Remote.pure :  a . a -> Remote a

-- Sequencing of remote computations
Remote.bind :  a b . (a -> Remote b) -> Remote a -> Remote b

-- The current node where the computation is executing
@pchiusano
pchiusano / map-reduce.hs
Last active January 12, 2017 21:28
map reduce on as many nodes as you want in 10 lines of Unison code
-- note, syntax here is Unison, just using .hs extension to get some syntax highlighting
-- The mapping function may spawn subcomputations on different nodes,
-- and the reduction function is done in parallel, building a balanced tree
-- of operations. Computation fails if any step takes longer than timeout
mapreduce : forall a b
. Duration -> (a -> Remote b) -> b -> (b -> b -> b) -> Vector a
-> Remote b
mapreduce timeout f z op vs = do Remote
futures := Remote.traverse (f `and-then` Remote.start timeout) vs
@pchiusano
pchiusano / fs2-0.9-release-announcement.markdown
Last active September 20, 2016 12:46
FS2: Functional Streams for Scala 0.9 Official Release Announcement

Hi all!

After a very lengthy period of development and testing, FS2 (formerly scalaz-stream) version 0.9 is finally out! Here's how to get it.

For this release, the library has undergone a major redesign. Check out the migration guide for more info, and also the shiny new user guide. Going forward, we expect the API of the library will be quite stable and hope it becomes one of the bedrock libraries of the Scala ecosystem. The 0.9 series has already seen production use as well as a huge amount of testing during the development process; we feel very good about recommending people upgrade.

@pchiusano
pchiusano / mac.txt
Last active October 25, 2016 16:27
Schooling on message authentication codes in ##crypto
<pchiusano> Paul Chiusano hi, I have a question about stream ciphers - how do people usually go about adding tamper resistence? With a stream cipher used naively, the ciphertext could be truncated or otherwise tampered with, and this would not necessarily be detected, right? My first thought was to split plaintext into packets of some length and add a hash to each packet (seems like
3:39 PM R<Riastradh> Unknown pchiusano: Secret-key authenticators, or secret-key authenticated encryption.
3:40 PM R<Riastradh> Unknown pchiusano: Secret-key authenticators are also called message authentication codes, MACs. Typical examples are polynomial evaluation one-time authenticators such as Poly1305, and hash-based constructions such as HMAC, or prefix-MAC with modern `hash functions' like BLAKE2 and SHA-3.
3:40 PM ⇐ viccuad quit (~vic@unaffiliated/viccuad) Ping timeout: 244 seconds
3:41 PM P<pchiusano> Paul Chiusano Riastradh: why would you prefer one vs the other
3:42 PM R<Riastradh> Unknown pchiusano: Typical examples
@pchiusano
pchiusano / error-messages.markdown
Created August 21, 2016 19:46
I hate compiler error messages

GHC recently spit back a screenful of errors in response to a function call having an extra argument supplied (that had been refactored away).

That is, the incorrect line was:

action qp = attempt . scope "action" $ (interpretPure <$> term) -- incorrect

And the corrected version was:

@pchiusano
pchiusano / Stream.hs
Last active July 1, 2016 13:09
Effectful stream type supporting constant time append and bind
{-# Language ScopedTypeVariables #-}
{-# Language BangPatterns #-}
{-# Language ExistentialQuantification #-}
{-# Language Rank2Types #-}
{-# Language GADTs #-}
module Stream where
import Control.Applicative
import Control.Monad
@pchiusano
pchiusano / Cryptography.hs
Created June 25, 2016 03:13
Cryptography dependency
module Unison.Cryptography where
import Data.ByteString (ByteString)
type DoneHandshake = Bool
type Ciphertext = ByteString
data Cryptography key symmetricKey signKey signature hash cleartext =
Cryptography
-- public key
@pchiusano
pchiusano / Block.hs
Created June 24, 2016 04:21
BlockStore variables
module Unison.Runtime.Block where
import Data.Maybe
import Data.Bytes.Serial (Serial, serialize, deserialize)
import Data.ByteString (ByteString)
import Unison.BlockStore (BlockStore, Series)
import qualified Unison.BlockStore as BlockStore
import qualified Data.Bytes.Get as Get
import qualified Data.Bytes.Put as Put

Take-home functional programming interview

This document is licensed CC0.

These are some questions to give a sense of what you know about FP. This is more of a gauge of what you know, it's not necessarily expected that a single person will breeze through all questions. For each question, give your answer if you know it, say how long it took you, and say whether it was 'trivial', 'easy', 'medium', 'hard', or 'I don't know'. Give your answers in Haskell for the questions that involve code.

Please be honest, as the interviewer may do some spot checking with similar questions. It's not going to look good if you report a question as being 'trivial' but a similar question completely stumps you.

Here's a bit more guidance on how to use these labels: