1
2
3
4
module Main where

import Graphics.UI.Gtk
...

Haskell Haskell walpaper slide

by https://me.yahoo.com/a/qdKngNhttsa6hMTIgvidvwP6cBSbEMaU6J9FYay5lNJXMn9X, August 03, 2010 17:04, No refactoring

The user gives minutes and ...

Avatar Talk
1
2
3
4
module Main where

import Text.XML.HaXml
...

Haskell Code from a novice Haskell ...

by jaewon.mp, February 03, 2010 10:21, No refactoring, tagged with haskell, HaXml, xml

It's a simple command-line ...

2f9c571c7d57b6e2170eae9a372e24b8 Talk
1
2
3
4
class IsComplex a where
    isComplex :: a -> Bool

...

Haskell Function to check the data ...

by headcrab.myopenid.com, December 08, 2009 18:03, 2 refactorings, tagged with types, polymorphism

For two given data types, S...

25c35e90595b236da0fee29edb70db7f Talk
1
2
3
4
import Control.Monad (mapM_, liftM)
import Data.List (sort)
import qualified Data.ByteString.Lazy.Char8 as L
...

Haskell radixSort algorithm

by roman, November 07, 2009 09:29, 6 refactorings, tagged with haskell radixSort

I'm trying to implement a s...

8d8978eba1922a74b91c4b361c7706cc Talk
1
2
3
4
compress :: [Int] -> [[Int]]
compress (x:xs) = let (y,ys) = walk x xs
                  in [x,y]:compress ys
...

Haskell compressing an array of int...

by sargon, April 15, 2009 16:52, 6 refactorings, tagged with short

I took the idea from "Alec ...

55ca8e1248605bf5e1819ce2c47c160f Talk
1
2
3
4
---
--- Tag
...

Haskell Tag

by Tj Holowaychuk, April 13, 2009 01:03, 3 refactorings, tagged with html tags

Just playing around, super ...

F1e3ab214a976a39cfd713bc93deb10f Talk
1
2
3
4
import Prelude hiding (lookup)
import System.Random
import Control.Monad
...

Haskell Pseudo Genetic Programming

by Jason Dew, February 02, 2009 19:06, No refactoring, tagged with ai

This code probably needs cl...

D16d53391068ff0830269149b060789d Talk
1
2
3
4
main = do s <- getContents
          putStr (unlines (reverse (rotate (lines s))))

...

Haskell Cat90

by jarkko, November 11, 2008 22:53, 3 refactorings, tagged with haskell

Rotates text given in stdin...

630067ad4c10410798d1550152f20d41 Talk
1
2
3
4
module Main where
import List
import Text.Regex.Posix
...

Haskell Graham scan

by jarkko, October 29, 2008 19:52, 2 refactorings, tagged with haskell, gtk, cairo, algorithm

My first experiment with Ha...

630067ad4c10410798d1550152f20d41 Talk
1
2
3
import System.IO
import Data.Word
...

Haskell Raytracer in haskell

by jaggederest, September 01, 2008 21:23, 1 refactoring, tagged with haskell, raytracer, vector, linear algebra

This is my first serious ha...

69c54cc530fa953e144771c03eccc5a9 Talk