Skip to content

Instantly share code, notes, and snippets.

@ocramz
ocramz / gist:56bb62e139321a204df2
Created November 6, 2015 13:31 — forked from debasishg/gist:8172796
A collection of links for streaming algorithms and data structures
  1. General Background and Overview
@ocramz
ocramz / Success.hs
Last active August 29, 2015 14:25 — forked from ekmett/Success.hs
{-# LANGUAGE DeriveFunctor, TypeFamilies #-}
module Success
( Parser(..)
, parse
) where
import Control.Applicative
import Control.Monad
import Data.Bifunctor
import Data.Profunctor
$ sudo easy_install pymc
Password:
Searching for pymc
Reading http://pypi.python.org/simple/pymc/
Best match: pymc 2.3.3
Downloading https://pypi.python.org/packages/source/p/pymc/pymc-2.3.3.tar.gz#md5=99645bf558a41376be0e687ccf90a39f
Processing pymc-2.3.3.tar.gz
Running pymc-2.3.3/setup.py -q bdist_egg --dist-dir /tmp/easy_install-ef6ul2/pymc-2.3.3/egg-dist-tmp-VEL4jG
IOError: [Errno 2] No such file or directory: 'skip:ppnd7'. Skipping file "skip:ppnd7".
Reading fortran codes...
@ocramz
ocramz / sch48h_ch4.hs
Last active March 1, 2019 16:43
sch48h_ch4
module Main where
import Control.Monad
import Text.ParserCombinators.Parsec hiding (spaces)
import System.Environment
import Control.Monad.Error
data LispVal = Atom String
| List [LispVal]
| DottedList [LispVal] LispVal
| Number Integer