Skip to content
View DanielRHolland's full-sized avatar

Block or report DanielRHolland

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
DanielRHolland/README.md

Pinned Loading

  1. mini-forth mini-forth Public

    JavaScript 1

  2. haskell-actor-model haskell-actor-model Public

    Haskell

  3. simple-comments-widget simple-comments-widget Public

    JS comments widget with Chicken Scheme backend

    Scheme

  4. Game of Life Haskell Game of Life Haskell
    1
    module Main where
    2
    
    
    3
    import Control.Concurrent (threadDelay)
    4
    import Data.Map ((!?))
    5
    import qualified Data.Map as M
  5. Feistel Cipher Haskell Feistel Cipher Haskell
    1
    module Main where
    2
    
    
    3
    import Data.Bits
    4
    
    
    5
    type HashFunction = Int -> [Int] -> [Int]