Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View teto's full-sized avatar
👹
wrecking havoc

Matthieu Coudron teto

👹
wrecking havoc
  • /nix/store/candies
View GitHub Profile
@teto
teto / Hyperlinks_in_Terminal_Emulators.md
Created February 6, 2019 09:26 — forked from egmontkob/Hyperlinks_in_Terminal_Emulators.md
Hyperlinks in Terminal Emulators
@teto
teto / string-conversions.hs
Created October 21, 2020 10:30 — forked from dino-/string-conversions.hs
A handy illustration of converting between String, Text and ByteString in Haskell
#! /usr/bin/env stack
-- stack --resolver lts-12.14 script
{-# LANGUAGE OverloadedStrings #-}
{-
This is a handy illustration of converting between five of the commonly-used
string types in Haskell (String, ByteString, lazy ByteString, Text and lazy
Text).