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
using System; | |
using System.IO; | |
using System.Linq; | |
namespace WordCountCS | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ |
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
import Control.Monad (liftM) | |
import Data.Complex (Complex(..)) | |
import Data.List (foldl, lookup, words) | |
import Text.Printf (printf) | |
data Direction = N | E | S | W deriving (Show,Read,Eq) | |
data Instruction = R | L | M deriving (Show,Read) | |
data Vector = Vector (Complex Double) (Complex Double) | |
-- map directions to Complex numbers |
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
withArgsM :: Monad m | |
=> Expression | |
-> (forall a . StructFields a => a -> m s) | |
-> m s | |
withArgsM exp f = inner vars f where | |
vars = nub [ x :: Factor | x <- universeBi exp ] | |
inner :: Monad m => [Factor] -> (forall a . StructFields a => a -> m s) -> m s | |
inner (x:xs) f = inner xs (\ x -> f ((undefined::Double) & x)) | |
inner [] f = f () |
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
import Data.Binary.Get | |
import qualified Data.ByteString as B | |
import qualified Data.Enumerator as E | |
import qualified Data.Enumerator.Binary as EB | |
import qualified Codec.Zlib.Enum as Z | |
unzipStream :: E.Iteratee B.ByteString IO b | |
-> E.Iteratee B.ByteString IO b | |
unzipStream sink = do | |
-- read four bytes off the wire into a bytestring |
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
{-# OPTIONS_GHC -fno-warn-deprecations #-} | |
{-# OPTIONS_GHC -fno-warn-orphans #-} | |
{-# LANGUAGE OverloadedStrings #-} | |
{-# LANGUAGE RecordWildCards #-} | |
{-# LANGUAGE TemplateHaskell #-} | |
module Main (main) where | |
import Control.Monad (when) | |
import qualified Data.ByteString.Lazy as BL |
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
#line 1 "ParseInt64.rl" | |
#include <HsFFI.h> | |
#line 7 "ParseInt64.c" | |
static const int ParseInt64_start = 1; | |
static const int ParseInt64_first_final = 3; | |
static const int ParseInt64_error = 0; |
This file has been truncated, but you can view the full file.
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
.file "/tmp/ghc20442_0/ghc20442_0.bc" | |
.file 1 "/home/nhowell/source/ghc-profiling/libraries/unix/dist-install/build/System/Posix/User.hs" | |
.section .debug_info,"",@progbits | |
.Lsection_info: | |
.section .debug_abbrev,"",@progbits | |
.Lsection_abbrev: | |
.section .debug_aranges,"",@progbits | |
.section .debug_macinfo,"",@progbits |
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
import Data.Aeson | |
import Data.Attoparsec | |
import qualified Data.Enumerator as E | |
import qualified Data.Enumerator.Binary as Eb | |
import qualified Data.Enumerator.List as El | |
import qualified Data.ByteString as BS | |
byteLines :: Monad m => E.Enumeratee BS.ByteString BS.ByteString m b | |
byteLines = Eb.splitWhen (== 10) -- 10 is LF |
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 OverloadedStrings #-} | |
{-# LANGUAGE RankNTypes #-} | |
{-# LANGUAGE ScopedTypeVariables #-} | |
module Forall where | |
import Control.Applicative | |
import Data.Aeson | |
import Control.Monad | |
data Bar = Bar Int | |
data Baz = Baz Int Int |
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
int someCall(int x) | |
{ | |
return x * x; | |
} |
OlderNewer