Friedrich Wilhelm Krummacher

Friedrich Wilhelm Krummacher (born in Moers, France (now Germany), 28 January 1796; died in Potsdam, Prussia (now Germany), 10 December 1868) was a German Reformed clergyman.

Friedrich Wilhelm Krummacher

Biography

His father, Friedrich Adolf Krummacher, was a noted German theologian and writer, and his uncle, also a German theologian, was Gottfried Daniel Krummacher. The son, after attending the gymnasiums in Duisburg and Bernburg, studied theology at Halle and Jena, and became pastor successively at Frankfurt am Main (1819), Ruhrort (1823), Gemarke, near Barmen (1825), and Elberfeld (1834).[1] He came to New York in 1843, declined a theological professorship in Mercersburg, Pennsylvania, and afterward returned to Germany, eventually settling in Berlin, Prussia. In 1847, the Evangelical State Church in Prussia appointed him to the Trinity Church in Berlin, and in 1853 he became court chaplain at Potsdam.[2] He was an influential promoter of the Evangelical Alliance. Although a minister of the Reformed Church, he was a zealous advocate of the older Lutheranism, and gave great offence by his denunciation of rationalists. He was a regular participant of the Evangelical Church Conferences.

Literary works

Among his numerous works, many of which have been translated into English and Dutch, are:

  • Salomo und Sulamith (1827, 9th ed. 1875)
  • Flying Roll of Free Grace Displayed (New York, 1841)
  • Elijah the Tishbite (German: Elias der Thisbiter; 1828-1833; 6th ed. 1874; Eng. trans. 1838)
  • The Martyr Lamb (1849)
  • The Last Days of Elisha (German: Elisa; 1852)
  • The Risen Redeemer (1863)
  • The Suffering Saviour (German: Das Passionsbuch, der leidende Christus; 1854, Eng. trans. 1870)
  • Bunsen and Stahl (Berlin, 1856)

Among his later devotional works are:

  • Gottes Wort (Berlin, 1865)
  • David, der König von Israel (1866; English translation, 1870)

His sermons were published (Berlin, 1868), and his autobiography (1869) edited by his daughter, which was translated into English (London, 1871).

Notes

gollark: _continues WHYJIT development_
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessparser = argparse.ArgumentParser(description="Compile a WHY program")parser.add_argument("input", help="File containing WHY source code")parser.add_argument("-o", "--output", help="Filename of the output executable to make", default="./a.why")parser.add_argument("-O", "--optimize", help="Optimization level", type=int, default="0")args = parser.parse_args()def build_output(code, mx): C_code = f"""#define QUITELONG long long intconst QUITELONG max = {mx};int main() {{ volatile QUITELONG i = 0; // disable some "optimizations" that RUIN OUR BEAUTIFUL CODE! while (i < max) {{ i++; }} {code}}} """ shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-too cat << EOF > $TMP1{C_code}EOF gcc -x c -o $TMP2 $TMP1 chmod +x $TMP2 $TMP2 """ return shell_scriptinput = args.inputoutput = args.outputwith open(input, "r") as f: contents = f.read() looplen = max(1000, (2 ** -args.optimize) * 1000000000) code = build_output( contents, looplen ) with open(output, "w") as out: out.write(code)```
gollark: I give you... WHYJIT.
gollark: Trouble is that bundling TCC would require *building* it and that'd increase WHY compile times significantly.
gollark: So how does one actually go around packaging binaries with the program?

References

  •  Ripley, George; Dana, Charles A., eds. (1879). "Krummacher, Friedrich Adolf" . The American Cyclopædia.
  • Gilman, D. C.; Peck, H. T.; Colby, F. M., eds. (1905). "Krummacher, Friedrich Adolf" . New International Encyclopedia (1st ed.). New York: Dodd, Mead.

Attribution

This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.