Ir al contenido principal

Entry #8: The Secret History of Women in Coding

"The Secret History of Women in Coding” is an article written by Clive Thompson and published in The New York Times Magazine in February, 2019. In the article, the writer talks about women that have contributed to the advancement of Computer Science.

In this article, the story of Mary Allen Wilkes is told. When she was young, she had no idea that she wanted to be a programmer as she preferred to be an attorney. However her teachers told her to give it a try, so she went to MIT where she was hired in a programmer job. This event has shown me how welcoming a company is to anyone who is looking for a place in it.

Mary Allen Wilkes operated in a completely different environment from ours, where they had to write the programs on paper and then transcribe the instructions into holes on a card. In addition to the complexity of the programs, managing limited memory was another challenge. Every command on every line of code had to be totally relevant.

Even though she was not an expert in the field, she tested her lines of code whenever an error happened to deduce it, checking each line in her mind to understand how the machine would execute it. Not many people have the ability to check the code, analyze it and rewrite it again completely.

Women have been an important key in the Computer Science field, for example, during World War II, women operated some of the first computational machines used for code-breaking. Women have shown that they are interested in Computer Science, but, it has not always been this way. In 1960, at the MIT, the ratio of women in computing was 27%. It reached 35% in 1990, but in 2013, the ratio went down to 26%, which is less than the 1960 percent.

Nowadays, there have been many instances of discrimination against women in many companies, sometimes they are dismissed and men echo their thoughts as if they were from them. Gender is not important if we think about a person's success; everyone is great at something, maybe not everyone is good at coding, but we are all better at something and we are all worth it.

Article: Thompson, C. (2019). The Secret History of Women in Coding. Recovered from https://www.nytimes.com/2019/02/13/magazine/women-coding-computer-programming.html

Comentarios

Publicar un comentario

Entradas populares de este blog

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...

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 #3: The Promises of Functional Programming

“The Promises of Functional Programming” is an article written by Konrad Hinsen in 2009, it was published in the scientific magazine "Computing now" from the IEEE Computer Society (Institute of Electrical and Electronics Engineers). In the article, Konrad Hinsen talks about functional programming while using examples made in Clojure programming language, in order to explain some essential concepts about functional programming. The article shows the characteristics and advantages of functional programming using Clojure, and it also explains the differences between functional and traditional programming. Functional programming was created in the 50s, however it has been used to write programs, because of its advantages for concurrent and parallel programming, and its robust and easier to test. A functional programming language is a language that operates by evaluating mathematical functions, like declarations and expressions. The fundamental principle of functional program...