sudo apt-get update
sudo apt-get install zlib1g-dev
sudo apt-get -t experimental install ghc ghc-prof cabal-install alex happy
cabal update
echo "require-sandbox: True" >> ~/.cabal/config
- General Background and Overview
- Probabilistic Data Structures for Web Analytics and Data Mining : A great overview of the space of probabilistic data structures and how they are used in approximation algorithm implementation.
- Models and Issues in Data Stream Systems
- Philippe Flajolet’s contribution to streaming algorithms : A presentation by Jérémie Lumbroso that visits some of the hostorical perspectives and how it all began with Flajolet
- Approximate Frequency Counts over Data Streams by Gurmeet Singh Manku & Rajeev Motwani : One of the early papers on the subject.
- [Methods for Finding Frequent Items in Data Streams](http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.187.9800&rep
You can access the cached version for any page that has been saved by Google with this: http://webcache.googleusercontent.com/search?q=cache:http://example.com/
Have you ever had to write code that made a complex series of succesive modifications to a single piece of mutable state? (Almost certainly yes.)
Did you ever wish you could make the compiler tell you if a particular operation on the state was illegal at a given point in the modifications? (If you're a fan of static typing, probably yes.)
If that's the case, the indexed state monad can help!
Motivation
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
{-# LANGUAGE DeriveDataTypeable #-} | |
{-# LANGUAGE OverloadedStrings #-} | |
-- Overloaded strings is just for "api.twitter.com" | |
-- DerieDataTypeable should be removed after clearing | |
-- the aeson warning to switch to GHC Generics or Template Haskell | |
import Data.Data | |
import System.Environment | |
import Web.Authenticate.OAuth |
$ systemd-analyze # Analyze system boot-up performance
$ dmesg # display contents of kernel ring buffer
$ sudo dpkg -i /path/to/deb/file; sudo apt-get install -f
# install a .deb file with it's dependencies
$ dpkg -l | grep '^.i' # list installed packages