Skip to content
View cbaatz's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report cbaatz

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

Pinned

  1. build-a-haskell-web-framework build-a-haskell-web-framework Public

    Slides from a talk on how to build a simple Haskell web framework

    Haskell 25 2

  2. damerau-levenshtein damerau-levenshtein Public

    JavaScript implementation of the Damerau-Levenshtein edit distance algorithm

    JavaScript 27 5

  3. purescript-intro purescript-intro Public

    An introduction to PureScript for those familiar with Haskell and JavaScript

    PureScript 8

  4. PostgreSQL function to generate a ra... PostgreSQL function to generate a random ID using [0-9A-Za-z] with a fixed prefix.
    1
    -- SELECT gen_prefixed_id('account_', 20);
    2
    -- account_9f2oOuK23Xpv3rdtHnQY
    3
    
                  
    4
    -- Example usage in a table column definition:
    5
    -- id text DEFAULT gen_prefixed_id('account_', 16) PRIMARY KEY