Skip to content

Instantly share code, notes, and snippets.

View michaelt's full-sized avatar

michaelt michaelt

  • twitter antiphasis_
View GitHub Profile
@michaelt
michaelt / I.md
Last active February 20, 2024 00:51
Backhaus 'Materials for the Reconstruction of Marx's Theory of Value'/'Materialien zur Rekonstruktion der Marxschen Werttheorie' I-IV from the collection 'Dialektik der Wertform' by stage-managed machine translation

Materials for the Reconstruction of Marx's Theory of Value

I.

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

@michaelt
michaelt / nota.md
Last active January 3, 2022 20:02
Renan Ferreira de Araujo & Alex Wilhans Antonio Palludeto "Uma nota sobre dinheiro e dinheiro creditício: uma interpretação da teoria do valor de Marx"/ "A note on money and credit money: an interpretation of Marx's value theory"

A note on money and credit money: an interpretation of Marx's theory of value

Renan Ferreira de Araujo, Alex Wilhans Antonio Palludeto

https://doi.org/10.1590/0103-6351/6484

Submitted on: 2021-12-24 Posted on: 2021-12-25 (version 1) (YYYY-MM-DD)

A note on money and credit money: an interpretation of Marx's value theory

@michaelt
michaelt / Backhaus_de.md
Last active January 3, 2022 18:26
Backhaus, "Zuvor: Die Anfänge der neuen Marx-Lektüre" to Dialektik der Wertform

Zuvor: Die Anfänge der neuen Marx-Lektüre

Trifft der Zusammenbruch des theoretischen und realen »MarxismusLeninismus« - d. h. der marxistischen Orthodoxie überhaupt - nicht auch die Grundprinzipien der Marxschen Theorie, so daß selbst in einer modernisierten Gestalt die Marx-Lektüre buchstäblich gegenstandslos geworden ist? Dies schien in der Tat der »dominierende Diskurs«;1 in scheinbar »betäubender Einstimmigkeit« wurde darauf gedrungen, daß Marx »tot sei, auch tot bleibe« und tot bleiben müsse. Doch solcherlei »Beschwörungen«2 fanden sich nahezu ausschließlich in der politischen Tagesliteratur, kaum in der wissenschaftlichen. Hier erfährt gerade in jüngster Zeit die Marxsche Theorie sogar von Autoren Zuspruch, die sich, wie Jacques Derrida, als »Nicht-Marxisten«1 begreifen. So insistiert auch Karl Otto Hondrich darauf, daß die Marxsche »Analyse selbstzerstörerischer Prozesse des Kapitalismus (...) durch die Selbstzerstörung des Staatssozialismus keineswegs widerlegt wurde«.4 Und Derrida konstatiert, daß d

@michaelt
michaelt / Was_ist_Geld.md
Last active August 17, 2022 16:43
Kant, Metaphysics of Morals, What is Money?

I Was ist Geld?

I. What is Money?

Geld ist eine Sache, deren Gebrauch nur dadurch möglich ist, daß man sie veräußert.

Money is a thing that can be used only by being alienated.

Dies ist eine gute Namenerklärung desselben (nach Achenwall), nämlich hinreichend zur Unterscheidung dieser Art Gegenstände der Willkür von allen andern; aber sie giebt uns keinen Aufschluß über die Möglichkeit einer solchen Sache.

Masks Could Help Stop Coronavirus. So Why Are They Still Controversial?

Confusing government advice at the start of the pandemic and cultural misgivings may have limited acceptance

Medical experts say even handmade or cheap surgical masks can block droplets emitted by speaking, coughing and sneezing, making it harder for the virus to spread.

Bojan Pancevski in Berlin
Jason Douglas in London
June 29, 2020 3:54 am ET

# The Polemics About the Historicity of Jesus Christ in the Religious Studies of the Soviet Period
A. ANDREEV
*Abstract*
The article discusses the history of the controversy regarding the historicity of Jesus Christ in the academic literature of the Soviet period. It summarizes the position of the classics of Marxism-Leninism on the issue, which for many decades served for scientists as «starting point» in their studies. The article outlines the main work of Soviet religious scholars, historians and philologists, engaged in the research of the New Testament. It presents the basic arguments for and against a real earthly existence of Jesus Christ. It identifies the major milestones in the development of this issue throughout the Soviet period: the period from 20’s, which is characterized by the dominance of the ideas of the so-called «Mythological school» and tough anti-religious propaganda; the period from the late 50’s to early 80’s, when the mythological nature of Jesus was questioned; and the third peri
@michaelt
michaelt / freer_transformer.hs
Created February 12, 2017 23:38
some freer manipulations
{-#LANGUAGE GADTs, TypeApplications, DataKinds, TypeOperators #-}
import Control.Monad.Freer
import qualified Control.Monad.Freer as F
import Control.Monad.Trans.Writer
import Control.Monad.IO.Class
type Loc = Int
type LogSource = Int
type LogLevel = Int
type LogStr = String
import Control.Concurrent (threadDelay)
import Control.Concurrent.Async (race)
import Control.Monad
marika = forever $ do
threadDelay (10^6)
putStrLn "Marika Boo!!!"
s = do
c <- getChar
@michaelt
michaelt / oneshot.hs
Created October 31, 2016 22:47
oneShot rule for `await`
{-#LANGUAGE BangPatterns, MagicHash, UnboxedTuples #-}
import Pipes
import qualified Pipes.Prelude as P
import Control.Monad.Trans.State.Strict
import GHC.Magic
import qualified Pipes.Internal as I
import Data.IORef
import Control.Monad
import GHC.Types
import GHC.Prim
@michaelt
michaelt / IxFunctor.hs
Created October 23, 2016 05:36
little 'indexed' library
{-# LANGUAGE PolyKinds #-}
{-# LANGUAGE DataKinds #-}
{-# LANGUAGE TypeOperators #-}
{-# LANGUAGE TypeFamilies #-}
{-# LANGUAGE GADTs #-}
{-# LANGUAGE RankNTypes #-}
{-# LANGUAGE Trustworthy #-}
{-# LANGUAGE ScopedTypeVariables #-}
{-# LANGUAGE DeriveDataTypeable #-}
{-# LANGUAGE DefaultSignatures #-}