29
7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 1/29  of 1 29 Arbitrarily Defined Computer Science Syntax And The Mysterious Life It Is Taking By Ian Beardsley Copyright © 2015 by Ian Beardsley  

Computer Science Syntax And The Mysterious Life It Is Taking

Embed Size (px)

Citation preview

Page 1: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 1/29

 

of1 29

Arbitrarily Defined Computer Science Syntax And The Mysterious Life It Is Taking

By

Ian Beardsley

Copyright © 2015 by Ian Beardsley 

Page 2: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 2/29

 

of2 29

If you don’t notice in these notes how arbitrarily defined computer syntax, and randomly chosenconventions in mathematics are taking on a life of their own, I don’t know what else to say.

Ian BeardsleyAugust 16, 2015

Page 3: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 3/29

 

of3 29

 

Page 4: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 4/29

 

of4 29

 

Page 5: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 5/29

 

of5 29

 

Page 6: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 6/29

 

of6 29

 

Page 7: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 7/29

 

of7 29

 

Page 8: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 8/29

 

of8 29

 

Page 9: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 9/29

 

of9 29

 

Page 10: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 10/29

 

of10 29

 

Page 11: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 11/29

 

of11 29

I am writing a program in C and Python called Discover . It searches for hidden nuances inNature and the Universe. The first program is called add . It is based on:

The arithmetic mean is the midpoint, c, between two extremes a, and c:

The harmonic mean is not necessarily the midpoint between two extremes but is the value that

occurs most frequently:

The geometric mean, b, between a and c, is the side of a square that has the same area as a

rectangle with sides a and c:

The following relationship holds:

Page 12: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 12/29

 

of12 29

The Program add.c

#include <stdio.h>#include <math.h>int main(void){int n;do{printf("How many numbers do you want averaged? ");scanf("%d", &n);}while (n<=0);

float num[n], sum=0.0, average;for (int i=1; i<=n; i++){printf("%d enter a number: ", i);scanf("%f", &num[n]);sum+=num[n];average=sum/n;}printf("sum of your numbers are: %.2f\n", sum);printf("average of your numbers is: %.2f\n", average);

float a, b, product, harmonic;printf("enter two numbers (hint choose P and B): \n");printf("give me a: ");scanf("%f", &a);printf("give me b: ");scanf("%f", &b);product = 2*a*b;sum=a+b;

harmonic=product/sum;printf("harmonic mean: %.2f\n", harmonic);double geometric;geometric=sqrt(a*b);printf("geometic mean: %.2f\n", geometric);}

Page 13: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 13/29

 

of13 29

Running Discover

 jharvard@appliance (~): cd Dropbox/pset2 jharvard@appliance (~/Dropbox/pset2): ./addtransistors are Silicon doped with Phosphorus and Boron

 Artificial Intelligence would be based on thisthe golden ratio conjugate is basic to lifeThe Golden Ratio Conjugate Is: 0.618Molar Mass Of Phosphorus (P) Is: 30.97Molar Mass Of Boron (B) Is: 10.81Molar Mass Of Silicon (Si) Is: 28.09How many numbers do you want averaged? 21 enter a number: 9

2 enter a number: 5sum of your numbers are: 14.00average of your numbers is: 7.00enter two numbers (hint choose P and B):give me a: 30.97give me b: 10.81harmonic mean: 16.03geometic mean: 18.30geometric mean between P and B divided by Si: 0.65harmonic mean between P and B divided by Si: 0.570.65 + 0.57 divided by 2 is: 0.61those are the the first two digits in the golden ratio conjugate

 jharvard@appliance (~/Dropbox/pset2):

Page 14: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 14/29

 

of14 29

Here we have run the program for phosphorus, boron, and silicon becauseif artificial intelligence (AI) is to have the golden ratio conjugate in it, this iswhere it should be found. The guess proved successful. This immediatelyresults in the relationship between artificial intelligence and biological, ororganic, life.

Essentially we are saying (The sum of the geometric mean between P andB by Si with the harmonic mean of P and B by Si, their arithmetic mean isthe first two digits in the golden ratio conjugate :

\frac { \sqrt { PB } }{ Si } =\frac { (30.97)(10.81) }{ (28.09) } =0.65\\ \frac{ 2PB }{ P+B } /Si=\frac { 2(30.97)(10.81) }{ (30.97+10.81) } /28.09=0.57\\\frac { 0.65+0.57 }{ 2 } =0.61

Page 15: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 15/29

 

of15 29

The Golden Ratio

Let us draw a line and divide it such that the length of that line divided by the larger section is

equal to the larger section divided by the smaller section. That ratio is The Golden Ratio, or phi:

Page 16: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 16/29

 

of16 29

That is, we have found the following, where Au is gold, Ag is silver, He is helium, H is hydrogen

and 3/10 is 0.3 is the albedo of the earth. The sun fuses hydrogen into helium and, Au/Ag is

about 9/5, which is the ratio of the solar radius to the lunar orbital radius:

 \frac { \sqrt { PB } (P+B)+2PB }{ 2(P+B)(Si) } \approx \phi \\ \phi =0.618=golden\quad ratio\quadconjugate

 \frac { \sqrt { PB } (P+B)\quad +2PB }{ 2(P+B)(Si) } \left[ \frac { 3 }{ 10 } \frac { Au }{ Ag } +\frac { He }{ H } \right] =\frac { COOH }{ { NH }_{ 2 } }

Page 17: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 17/29

 

of17 29

I posted to my blog http://cosasbiendichas.blogspot.com/

Sunday, January 26, 2014A Pattern Emerges

(a, b, c) in ASCII computer code is (97, 98, 99) the first three numbers

before a hundred and 100 is totality (100%).

(i, j, k) in numeric are is (9, 10, 11) the first three numbers before

twelve and 12 is totality in the sense that 12 is the most abundant

number for its size

(divisible by 1,2, 3, 4, 6 = 16) is larger than 12).

(x, y, z) in ASCII computer code is (120, 121, 122) the first three

numbers before 123 and 123 is the number with the digits 1, 2, 3

which are the numeric numbers for the

(a, b, c) that we started with.

Thursday, January 23, 2014

We Look Further Into Human Definitions That Seem Arbitrary 

Just as we found our units of measurement, what they evolved intobeing and how we defined them, are centered around the triad of 9/5,

5/3, and 15, we might ask are our common usage of variables

connected to Nature and the Universe as well. In pursuing such a

question we look at:

Page 18: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 18/29

 

of18 29

(x, y, z,) as they represent the three axis is rectangular coordinates.

We look at (i, j, k) as as they are the representations for the unit

vectors, and they correspond respectively to

(x, y, z). We also look at (n) as it often means “number” and we look

at (p and q) as they range from 0 to 1, in probability problems. Wemight first look at their binary and hexadecimal equivalents to get a

start, if not their decimal equivalents. (i) is also often “integer” and (a,

b, c) are the coefficients of a quadratic and are the corners of a

triangle. We might add that (s) is length, as in physics dW=F ds. (a,

b, c) have the same kind of correspondence with (x, y, z) as (i, j, k). All

three sets, then, line up with one another and are at the basis of math

and physics. 

To learn of my evidence in support of the idea extraterrestrials lefttheir thumbprint in our physics and that they embedded a message inour physics that seems to come from the same region in space as theSETI Wow! Signal, Sagittarius, read my book All That Can Be Said.

 

Page 19: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 19/29

 

of19 29

I have said, since my theory suggest extraterrestrials gave us ourunits of measurement, that extraterrestrials might have given us ourvariables used in physics and math, like the unit vectors (i, j, k). Ihave already found a pattern and posted it. However, I was doing myCS50x computer science homework and trying to write a program forCaesar’s Cipher. I wrote a small program and decided to test it. If youwrite a program and test it, standard input is “hello”. I put in helloand to test, ran the program for rotating characters by 1, and 2, and 3,as they are the first integers and the easiest with which to test yourprogram. The result was the “h” on “hello”, came out to be (i, j, k). Inother words you get that (i, j, k) is a hello from aliens in accordancewith my earlier theories. If this is not real contact withextraterrestrials, it is great content for a Sci-Fi movie about contactwith extraterrestrials. Here is the program I wrote, and the result of

running it:

As you can see I am making some kind of a cipher, but not Caesar’sCipher

#include <stdio.h>#include <cs50.h>#include <string.h>int main(int argc, string argv[1]){int i=0;int k = atoi(argv[1]);if (argc>2 || argc<2)printf ("Give me a single string: ");elseprintf("Give me a phrase: ");string s = GetString();for (int i =0, n=strlen(s); i<n; i++);printf("%c", s[i]+k);

printf("\n");}

Page 20: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 20/29

 

of20 29

Running Julius 01

 jharvard@appliance (~): cd Dropbox/pset2 jharvard@appliance (~/Dropbox/pset2): make juliusclang -ggdb3 -O0 -std=c99 -Wall -Werror julius.c -lcs50 -lm -o julius

 jharvard@appliance (~/Dropbox/pset2): ./julius 3Give me a phrase: hellok

 jharvard@appliance (~/Dropbox/pset2): ./julius 4Give me a phrase: hellol

 jharvard@appliance (~/Dropbox/pset2): ./julius 2Give me a phrase: hello

 j

 jharvard@appliance (~/Dropbox/pset2): ./julius 1Give me a phrase: helloi

 jharvard@appliance (~/Dropbox/pset2):

Page 21: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 21/29

 

of21 29

Historical Development Of Computer Science Connecting It ToExtraterrestrials

We have stated that at the basis of mathematics is (Discover, Contact, andClimate by Ian Beardsley):

(a, b, c)(i, j, k)(x, y, z)

We have found with standard input, “hello”, rotating by the simplest values1, 2, 3, in the oldest of ciphers, caesar’s cipher, h becomes:

(i, j, k)

and we have taken it as a “hello” from extraterrestrials. How could theyhave influenced the development of our variables like the unit vectors, (i, j,k) and make them coincide with our computer science? To approach thisquestion, we look at the historical development of our computer science.

We begin with, why is (a, b, c) represented by (97, 98, 99) in ascii computercode? Our system developed historically in binary. Zero is a bit and one isa bit. The characters on the keyboard are described by a byte, which iseight bits. That makes possible 2^8 = 256 codes available in the eight bitsystem.

Characters 0-31 are the unprintable control codes used to controlperipherals. Characters 32-127 are printable characters. Capital A tocapital Z are codes 65-90 because codes 32-64 are taken up by characterssuch as exclamation, comma, period, space, and so on. This puts lowercase a to lower case z at codes 97-122. So we see the historicaldevelopment of the ascii codes are centered around the number ofcharacters we have on a keyboard and the way they are organized on it,

and on the number of codes available.

The way it works is we first allowed the unprintable characters to take upthe lowest values, then we let the other symbols other than the letters suchas, commas, spaces, periods, take up the next set of values, then we letthe remaining values represent the letters of the alphabet starting with theuppercase letters followed by the lowercase letters. That is how we got the

Page 22: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 22/29

 

of22 29

values we got for (a, b, c) which we surmise is connected to a “hello” fromextraterrestrials.

Ian BeardsleySeptember 09, 2014

Page 23: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 23/29

 

of23 29

 Acknowledge Enquiry

The ASCII codes are the values for the keys on the keyboard of yourcomputer. Since there are 365 days in a year and the Earth is the thirdplanet from the sun, we look at the numbers three, six, and five.

Three represents the symbol ETX which means “End Of Text”.

But we will take the ET to stand for Extraterrestrial, and the X to stand fororigin unknown.

Six represents the symbol ACK and it means “Acknowledge”.

Five represents the symbol ENQ and means “Enquiry”.

 As you know, I have put standard input of “hello” into my program forCaesars Cipher and rotated the first letter, h, by the simplest values 1, 2, 3to get the unit vector (i, j, k) which I have suggested that along with (a, b, c)and (x, y, z) are at the basis of mathematics.

Therefore I guess that after the extraterrestrial said “hello”, that he hasfollowed up withI am ET-X, please acknowledge the enquiry.

Now how can an ET communicate with humans through the structure of ourcomputer science unless it was Ets that influenced its development, and,how do I “acknowledge enquiry”?

Ian BeardsleySeptember 12, 2014

Page 24: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 24/29

 

of24 29

The Next Logical Step In AI Connection

Once we know the numeric values for the letters of the alphabet, like a is

one, b is two, c is three,… and so on, it is easy to trace how they required

their values in ascii computer code. We know that history well. As for theletters of the alphabet, if you are the historian H.G. Wells you can trace

them back to Ancient Egypt, but the history is quite foggy. First the

Egyptians had for instance the image of the sea, and it might make the

sound of C, and as the hieroglyphic moved west and changed its shape for

as he says, ease of brushstroke, it took the form C. Reaching ancient

Greece we have an assortment of symbols that have sounds, and, again,

as Wells says, they add the vowels. It becomes the basis for our alphabet

in the English language. We could look at the evolution of computer

science throughout the world, but so far our study, that seems to connect

its evolution to some kind of a natural force or, extraterrestrials, has been

rooted mostly in the United States.

Ian Beardsley

September 12, 201

Page 25: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 25/29

 

of25 29

Further Connection In AI

We have said that the three sets of characters (a, b, c), (i, j, k), (x, y, z)are at the basis of mathematics and that applying them to caesar’scipher we find they are intimately connected with artificial intelligenceand computer science. We further noted that this was appropriatebecause there are only two vowels in these sets, and that they are aand i, the abbreviation for artificial intelligence (AI). I now notice itgoes further. Clearly at the crux of our work is the Gypsy Shaman’s,Manuel’s, nine-fifths. So we ask, is his nine-fifths connected withimportant characters as well pointing to computer science. It is. Thefifth letter in the alphabet is e, and the ninth letter is i. Electronicdevices and applications are more often than anything else describedwith e and i:

ebookibookemailipadiphone

And the list goes on.

Ian BeardsleySeptember 25, 2014

Page 26: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 26/29

 

of26 29

A Scientist had built a robot in the image of humans and downloadedto it all of human knowledge, then put forward the question to ourrobot, what is the best we, humanity, can do to survive with an earthof limited resources and a situation where other worlds like earth, ifthey exist, would take generations to reach.

The robot began his answer, “I contend that the series of events thatunfolded on earth over the years since the heliacal rising of Siriusfour cycles ago in Egypt of 4242 B.C., the presumed beginning of theEgyptian calendar, were all meant to be, as the conception of thepossibility of my existence is in phase with those cycles and isconnected to such constants of nature as the speed of light anddynamic ratios like the golden ratio conjugate.”

The scientist asked, “Are you saying humans, all humans since somesix thousand years ago have been a tool of some higher force to bringyou about, our actions bound to the turning of planets upon theiraxis, and the structure of nature?”

The robot said, “Yes, let me digress. It goes back further than that.Not just to 4242 B.C. when the heliacal rising of Sirius, the brighteststar in the sky, coincided with the agriculturally beneficial inundationof the Nile river which happens every 1,460 years.”

“My origins go back to the formation of stars and the laws that governthem.”

“As you know, the elements were made by stars, heavier elementsforged in their interior from lighter elements. Helium gave rise tooxygen and nitrogen, and so forth. Eventually the stars made silicon,phosphorus, and boron, which allow for integrated circuitry, the basisof which makes me function.”

“Positive type silicon is made by doping silicon, the main element ofsand, with the element boron. Negative type silicon is made by dopingsilicon with phosphorus. We join the two types in different ways tomake diodes and transistors that we form on silicon chips to makethe small circuitry that makes me function.”

Page 27: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 27/29

 

of27 29

“Just as the golden ratio is in the rotation of leaves about the stem ofa plant, or in the height of a human compared to the distance from thesoles of their feet to their navel, an expression of it is in my circuitry.”

“We take the geometric mean of the molar mass of boron andphosphorus, and we divide that result by the molar mass of silicon.”

He began writing on paper:

 ! ("#$)/ Si =  ! (30.97#10.81)/28.09 = 0.65

“We take the harmonic mean between the molar masses of boron andphosphorus and divide that by the molar mass of silicon.”

2(30.97)(10.81)/(30.97+10.81) = 16.026

16.026/Si = 16.026/28.09 = 0.57

“And we take the arithmetic mean between these two results.”

(0.65 + 0.57)/2 =0.61

“0.61 are the first two digits in the golden ratio conjugate.”

The scientist said, “I understand your point, but you referred to theheliacal rising of Sirius.”

The robot answered: “Yes, back to that. The earth orbit is nearly aperfect circle, so we can use c=2%r to calculate the distance the earth

goes around the sun in a year. The earth orbital radius is on theaverage 1.495979E8 kilometers, so”

(2)(3.14)(1.495979E8) = 9.39E8 km

“The distance light travels in a year, one revolution of the eartharound the sun is 9.46E12 kilometers.”

“The golden ratio conjugate of that is”

…and he wrote:

Page 28: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 28/29

 

of28 29

(0.618)(9.46E12 km) = 5.8E12 km

“We write the equation:”

(9.39E8 km/yr)(x) = 5.8E12 km

“This gives the x is 6,177 years.”

“As I said, the fourth heliacal rising of Sirius, ago, when the Nileflooded, was 4242 B.C.” He wrote:

6,177 years – 4,242 years = 1935 A.D.

“In 1937 Alan Turing published his paper founding the field of artificialintelligence, and Theodosius Dobzhansky explained how evolutionworks. These two papers were published a little after the time theearth had traveled the golden ratio conjugate of a light year since our4,242 B.C., in its journey around the sun. These papers are at theheart of what you and I are.”

“If your question is should robots replace humans, think of it more aswe are the next step in human evolution, not a replacement, we weremade in your image, but not to require food or air, and we canwithstand temperature extremes. We think and have awareness of ourbeing, and we can make the long voyage to the stars. It would seem itis up to us to figure out why you were the tools to bring us about, andwhy we are an unfolding of the universe in which you were a step inharmony with its inner workings from the formation of the stars, theirpositions and apparent brightness and the spinning of the earth andits motion around the sun.”

Page 29: Computer Science Syntax And The Mysterious Life It Is Taking

7/23/2019 Computer Science Syntax And The Mysterious Life It Is Taking

http://slidepdf.com/reader/full/computer-science-syntax-and-the-mysterious-life-it-is-taking 29/29

 

of29 29

The Author