This file contains 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
#!/bin/bash | |
# codec configuration from | |
# http://code.google.com/p/bencos/source/browse/trunk/out/presets/libx264-lossless_ultrafast.ffpreset?r=156 | |
cat > libx264-lossless_ultrafast.ffpreset <<EOF | |
coder=0 | |
flags=+loop | |
cmp=+chroma | |
partitions=-parti8x8-parti4x4-partp8x8-partp4x4-partb8x8 |
This file contains 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
-- written for a puzzle presented by John D. Cook: | |
-- http://www.johndcook.com/blog/2012/01/14/roman-numeral-puzzle/ | |
-- | |
-- Copyright (C) 2012, John Bartholomew. | |
-- You may use this code for any purpose, WITHOUT WARRANTY. | |
module Main where | |
import Control.Monad | |
import Data.Char |
NewerOlder