Ir al contenido principal

Entry #9: Language as the Ultimate Weapon

"Language as the “Ultimate Weapon” in Nineteen Eighty-Four" is an essay written by Jem Berkes in 2000. In the article, Jem Berkes discusses the inspiration behind the Newspeak language used by George Orwell inside his novel 1984 (Nineteen Eighty-Four) and how it reflects in real-world situations we face day to day and how the language is powerful enough to express meaning, intention and ability. 

Inside the novel 1984, there is a language called Newspeak which is a simplification of the English language, or as the novel refers it as Oldspeak. Newspeak vocabulary eliminates words that are not necessary. The new vocabulary helped the government to control people and affect memories from person's, in order to forget most of them or provoke and affect the way a person could express or think.

However, in this particular entry I won't talk about the essay written by Jem Berkes, I will answer a question asked by my professor which is something related to the essay, the novel and the course that I am taking: Why is the Nineteen Eighty-Four novel by George Orwell relevant to a me, an ordinary student taking the Programming Language course? 

Since I was a student in kindergarten and until now that I am studying Computer Systems Engineering, I have learned the importance of words and the importance of grammar rules and how both of them complement the language to which they belong; this explanation has been given to me in 3 different languages: Spanish, English and French.

It is important to know different languages and appreciate the differences and characteristics of each. It is just like Programming Languages, as they are used to communicate with the computer, which gives us great power to develop software that will be used by many users around the world. 

That's why the essay says that the ultimate weapon is the language. Language is the ultimate weapon for humanity, because with the correct usage of it, many problems can be solved; a war can be stopped if the countries involved on it communicate and express their arguments. In the novel 1984, the government had control of the language and communications; if the government had not control of it, people would live better. 

Essay: Berkes, J. (2000). Language as the “Ultimate Weapon” in Nineteen Eighty-Four. Recovered from http://34.212.143.74/s201913/tc2006/language_ultimate_weapon.html

Book/Novel: Orwell, G. (1949). Nineteen Eighty-Four. Recovered from https://ebooks.adelaide.edu.au/o/orwell/george/o79n/index.html


Comentarios

Publicar un comentario

Entradas populares de este blog

Entry #4: Dick Gabriel on Lisp

"Dick Gabriel on Lisp" is a 60 minute long podcast produced by Software Engineering Radio in 2008. In this podcast, Dick Gabriel talks about his professional background and about the history of Lisp programming language and its functions and characteristics. Dick Gabriel is a computer scientist who studied at the Stanford University. He started his own Lisp company in 1984. Lisp is one of the first programming languages developed with a functional approach. Functional means that a function can be evaluated and when it returns a value, it is then evaluated by another function and so on. The computation or algorithms are done by nesting functions, in other words, a function is data and a data can be a function. However, other programming languages have taken over the industry in the next years, leaving behind Lisp. Modern programming languages have a more attractive and easier to understand method of coding in comparison to Lisp. Nevertheless, Lisp has been used in oth...

Entry #7: The Roots of Lisp

"The Roots of Lisp” is an article written by Paul Graham in 2002. In the article, the writer talks about how John McCarthy worked with simple operations and notations, which later would become Lisp. Just as a reminder, Lisp is a programming language and it stands for  "List Processing". According to Paul Graham, there have been only two consistent models of programming: the C model and the Lisp model. He also tells that new programming languages in the past twenty years would be taking the C model of computing and add functions taken from the Lisp model, like runtime typing and garbage collection. The evolution in computer's performance and hardware has made that the new programming languages move to the Lisp model. In the article, Paul Graham explains the bases in which Lisp was created using the rules of John McCarthy. The writer mentions that Lisp can be written in itself. First, we have the seven primitive operators: quote, atom, eq, car, cdr, cons y cond. T...