In the literature of social science, no other text is known whose formal structure and substantive meaning are as controversial as the first four chapters of Capital. Marxist accounts of the theory of value, with few exceptions, would like to leave no doubt that the derivation of value is clearly and distinctly, as it were more geometrico accomplished. One and the same text, whose clarity and distinctness seem to be immediately evident to some, is regarded by others as the opposite of clarity and distinctness: as dark, confused, contradictory. Böhm-Bawerk considers it "completely impossible that this dialectical hocus-pocus was the reason and source of conviction for Marx himself. A thinker of Marx's caliber - and I esteem him a thinking power of the very first rank - could not possibly have searched along such a bent and unnatural path, he could not possibly have stumbled into all the described logical and methodological errors one after t
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 DataKinds, PolyKinds, TypeOperators #-} | |
{-# LANGUAGE TypeFamilies, FlexibleInstances, ScopedTypeVariables #-} | |
{-# LANGUAGE InstanceSigs #-} | |
module TinyServant where | |
import Control.Applicative | |
import GHC.TypeLits | |
import Text.Read | |
import Data.Time |
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
# unregister broken GHC packages. Run this a few times to resolve | |
# dependency rot in installed packages. ghc-pkg-clean -f | |
# cabal/dev/packages*.conf also works. | |
function ghc-pkg-clean() { | |
for p in `ghc-pkg check $* 2>&1 | grep problems | awk '{print $6}' | sed -e 's/:$//'` | |
do | |
echo unregistering $p; ghc-pkg $* unregister $p | |
done | |
} | |