Victor Wallace Germains
Victor Wallace Germains (born June 1888 in the Fulham district of London)[1] was an English writer. He wrote several books on the military and foreign policy, including on Kitchener and Churchill.[2]
In 1954, Germains wrote Crusoe Warburton, a lost world novel.[3][4]
During World War I, Germains served as a spy in Austria.[5]
Writings
As a military writer, Germains was classed by Michael Howard with Bernard Acworth and Lionel Charlton as a lesser figure typical of his time.[6]
Books
- The Struggle for Bread, 1913 (free text version); a reply under the pseudonym "Rifleman" to Norman Angell's The Great Illusion (1910).[7]
- The Gathering Storm, 1913 (free text version; under the pseudonym "Rifleman"
- Austria of Today: with a special chapter on the Austrian police, 1923 (later editions up to 1932)
- The Truth about Kitchener, 1925
- The "Mechanization" of War, 1927; a contribution to the "tank debate", arguing that anti-tank weapons had greater potential for development, foreword by Frederick Barton Maurice.[8][9] The work was critical of the approach of J. F. C. Fuller, presaging later British doctrine, and was serialized abroad.[10][11]
- The Kitchener Armies: the story of a national achievement, 1930
- The Tragedy of Winston Churchill, 1931
- Colonel to Princess. A novel., 1936. A dying princess gets a brain transplant from a colonel. He enjoys being a woman.[12]
- Crusoe Warburton, 1954
Articles
gollark: WHY(JIT) is capable of arbitrary IO.
gollark: Er, you'd need to sandbox it.
gollark: ```python#!/usr/bin/env python3import argparseimport subprocessimport randomimport stringparser = argparse.ArgumentParser(description="Compile a WHY program using WHYJIT.")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 randomword(length): letters = string.ascii_lowercase return ''.join(random.choice(letters) for i in range(length))def which(program): proc = subprocess.run(["which", program], stdout=subprocess.PIPE) if proc.returncode == 0: return proc.stdout.replace(b"\n", b"") else: return Nonedef find_C_compiler(): compilers = ["gcc", "clang", "tcc", "cc"] for compiler in compilers: path = which(compiler) if path != None: return pathdef 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}}} """ heredoc = randomword(100) devnull = "2>/dev/null" shell_script = f"""#!/bin/shTMP1=/tmp/ignore-meTMP2=/tmp/ignore-me-tooTMP3=/tmp/dont-look-here cat << {heredoc} > $TMP1{C_code}{heredoc}sed -e '1,/^exit \$?$/d' "$0" > $TMP3chmod +x $TMP3$TMP3 -x c -o $TMP2 $TMP1chmod +x $TMP2$TMP2exit $?""".encode("utf-8") with open(find_C_compiler(), "rb") as f: return shell_script + f.read()input = 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, "wb") as out: out.write(code)```
gollark: I mean, it uses (y, x) coordinates, if I remember correctly!
gollark: Where n = infinity.
References
- FreeBMD. England & Wales, FreeBMD Birth Index, 1837-1915 [database on-line]. General Registry Office files.
- "Mystery (novelist) solved!".
- Lardner, Rex (20 June 1954). "Master Carpenter in Utopia; CRUSOE WARBURTON. By Victor W. Germains. 250 pp. New York: Coward-McCann. $3.50". The New York Times.
- "CRUSOE WARBURTON by Victor Germains".
- Germains, Victor (1954). Crusoe Warburton. New York: Coward-McCann. pp. dustcover.
- Michael Howard, Review of The Military Intellectuals in Britain: 1918-1939 by Robin Higham, International Journal Vol. 22, No. 2 (Spring, 1967), pp. 324-325. Published by: Canadian International Council. Stable URL: https://www.jstor.org/stable/40200099
- nobelprize.org, The Nobel Peace Prize 1933:Sir Norman Angell.
- John Stone (1 October 2000). The Tank Debate: Armour and the Anglo-American Military Tradition. Harwood Academic. pp. 58–9. ISBN 978-90-5823-045-4. Retrieved 11 February 2013.
- Roger Chickering; Stig Forster (16 January 2003). The Shadows of Total War: Europe, East Asia, and the United States, 1919-1939. Cambridge University Press. p. 53. ISBN 978-0-521-81236-8. Retrieved 11 February 2013.
- Brian Holden Reid (1998). Studies in British Military Thought: Debates With Fuller and Liddell Hart. U of Nebraska Press. p. 39. ISBN 978-0-8032-3927-2. Retrieved 11 February 2013.
- Azar Gat (2001). A History of Military Thought: From the Enlightenment to the Cold War. Oxford University Press. pp. 558–9. ISBN 978-0-19-924762-2. Retrieved 11 February 2013.
- https://www.scribd.com/doc/71474482/1/INTRODUCTION
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.