Skip to content

Instantly share code, notes, and snippets.

View noxecane's full-sized avatar
:shipit:
let's find out

Kunle Arewa noxecane

:shipit:
let's find out
View GitHub Profile
@noxecane
noxecane / sql_types.go
Created September 20, 2020 16:35
Postgres SQL type for postgis
package gis
import (
"bytes"
"database/sql/driver"
"encoding/binary"
"encoding/hex"
"fmt"
)
@noxecane
noxecane / TinyServant.hs
Created June 25, 2021 19:38
Small Implementation of servant haskell library
{-# LANGUAGE DataKinds, PolyKinds, TypeOperators #-}
{-# LANGUAGE TypeFamilies, FlexibleInstances, ScopedTypeVariables #-}
{-# LANGUAGE InstanceSigs #-}
module TinyServant where
import Control.Applicative
import GHC.TypeLits
import Text.Read
import Data.Time