Skip to content

Instantly share code, notes, and snippets.

View ChristophP's full-sized avatar

ChristophP

View GitHub Profile
@ChristophP
ChristophP / ElmParser.elm
Last active January 30, 2019 22:41
Trying to parse Elm's internal data stucture
module Main exposing (main)
import Char
import Html exposing (Html)
import Json.Encode as JE
import Parser exposing (..)
import Set
main : Html Never
@ChristophP
ChristophP / SimpleJson.hs
Last active January 1, 2019 19:07
Haskell JSON
module SimpleJson
( JValue(..)
, put
) where
import Data.List (intercalate)
-- union type
data JValue
= JString String
import Data.List.Split
import Text.Read
main :: IO ()
main = do
contents <- readFile "/home/deedo/Desktop/times.txt"
let line = getSecondLine $ splitOn "\n" contents
putStrLn $ prepareOutput $ calcDay <$> line
calcDay :: String -> Int
@ChristophP
ChristophP / .vimrc
Last active October 12, 2021 10:04
My .vimrc file
set nocompatible " Disable vi-compatibility
set nomodeline " good practice to disable because of security issues
set t_Co=256
" Disable safe write
set backupcopy=yes
" With a map leader it's possible to do extra key combinations
" like <leader>w saves the current file
let mapleader = "\<space>"