I hereby claim:
- I am kintaro on github.
- I am rootnode (https://keybase.io/rootnode) on keybase.
- I have a public key ASDs54j2HlkNb-XRPlEi7G9t5CT3nrhC0-OSfF61vRkQMwo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Config { | |
font = "xft:Envy Code R for Powerline:pixelsize=12", | |
bgColor = "#1f1f2c", | |
fgColor = "#c7c9cb", | |
border = FullB, | |
borderColor = "#1f1f1f", | |
pickBroadest = True, | |
iconRoot = "/home/wollwage/.xmonad" | |
-- position = Static { xpos = 1920, ypos = 0, width = 1920, height = 16 }, | |
lowerOnStart = True, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pub fn main() { | |
let f = action(floats(), p); | |
let parser = spaces() << string_s("vertex") << string_s("[") << | |
f << spaces() << f << spaces() << f << spaces() << string("]"); | |
let input = ParserInput::new(std::os::args()[1]); | |
let result = parser.parse(&input); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE DeriveDataTypeable #-} | |
import System.IO | |
import System.Environment | |
import Control.Monad | |
import Control.Monad.Maybe | |
import Control.Monad.IO.Class | |
import Control.Applicative | |
import Text.Regex.Posix | |
import qualified Data.Text as T |