Tuesday, August 5, 2014

Hello all,

In my previous post, I explained why I started a blog and what my plans were. Today I'm just gonna share some cool things I've learned.
  1. Learned a new programming language: Python! - Below is summary of what I've touched on:
    • print("Hello, World!")
    •  'def' functions
    • if/else statements
    • for and while loops
    • slicing/indexing strings 
    • Played around with Python turtles ;)
    • and still learning
  2. Started reading the famous SICP(Structure and Interpretation of Computer Programs) and learned a little of Scheme a dialect of the second oldest(first is Fortran) programming language called Lisp!
    •  Installed the MIT/GNU Scheme interpreter and played around with Scheme by running some basic commands such as
      • (define (square x) (* x x))
        (square 4)
      • (+ (square (+ 2 3)) (square 4) (- 4 3))
  3. While learning Scheme, I played around the well known emacs text editor
  4. Also I'd like to mention that much more comfortable I am working in the terminal.
My sources used for learning the above topics:










No comments:

Post a Comment