<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Suraj Singh</title>
    <description>The latest articles on DEV Community by Suraj Singh (@__surajsingh__).</description>
    <link>https://dev.to/__surajsingh__</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F995732%2F5762948d-29da-49a8-93ae-a7e85a5e6685.jpg</url>
      <title>DEV Community: Suraj Singh</title>
      <link>https://dev.to/__surajsingh__</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/__surajsingh__"/>
    <language>en</language>
    <item>
      <title>6.0001 Introduction to Computer Science and Programming in Python : Lecture 01 : What is Computation ?</title>
      <dc:creator>Suraj Singh</dc:creator>
      <pubDate>Tue, 20 Jun 2023 09:58:19 +0000</pubDate>
      <link>https://dev.to/__surajsingh__/60001-introduction-to-computer-science-and-programming-in-python-lecture-01-what-is-computation--2g7d</link>
      <guid>https://dev.to/__surajsingh__/60001-introduction-to-computer-science-and-programming-in-python-lecture-01-what-is-computation--2g7d</guid>
      <description>&lt;p&gt;Computation refers to the process of using algorithms and computational devices to perform calculations, solve problems, and process information. It involves transforming data or inputs into desired outputs through a series of well-defined steps or instructions.&lt;/p&gt;

&lt;h3&gt;
  
  
  Type of Knowledge
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Declarative Knowledge:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Declarative knowledge focuses on describing "what" needs to be accomplished or the desired outcome, without specifying "how" to achieve it. It emphasizes the use of logic and facts to represent knowledge. Declarative knowledge is commonly associated with declarative programming languages and logic-based systems. &lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;strong&gt;Imperative Knowledge&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Imperative knowledge, on the other hand, focuses on providing a step-by-step procedure or a series of commands to achieve a specific goal. It describes "how" to accomplish a task by explicitly stating the sequence of actions or operations to be performed. Imperative knowledge is often more detailed and specific, providing a clear set of instructions for the computer to follow. It is well-suited for tasks that require precise control over the execution flow or complex state manipulation.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Fixed program computer VS Stored program computer
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Fixed Program Computer:&lt;/strong&gt;
A fixed program computer, also known as a dedicated computer, is a type of computer that is designed to perform a specific task or set of tasks. The computer's program or instructions are permanently built into its hardware, and they cannot be changed or modified once the computer is manufactured. The program is typically hardwired or implemented using specialized circuits.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Stored Program Computer:&lt;/strong&gt;
A stored program computer, also known as a general-purpose computer, is a type of computer architecture where both the program instructions and data are stored in memory. It allows the computer to store and execute different programs, enabling versatility and flexibility.&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Basic Primitives
&lt;/h3&gt;

&lt;p&gt;In programming, "BASIC primitives"  refer to the fundamental operations or basic building blocks available in a programming language. These primitives are the simplest and most essential instructions or constructs that form the foundation for writing more complex programs. The specific set of BASIC primitives may vary depending on the programming language. example Variables, Data types, Arithmetic Operations, Conditional Statements etc.&lt;/p&gt;

&lt;h3&gt;
  
  
  Static Semantic
&lt;/h3&gt;

&lt;p&gt;Static semantics in programming languages refers to the set of rules and constraints that determine the validity and correctness of a program's structure and its components at compile-time, without executing the program. It focuses on the analysis of program elements such as variables, expressions, types, and their relationships to ensure they adhere to the language's specifications. for example&lt;/p&gt;

&lt;p&gt;In English: "I are hungry" → syntactically valid but it is static semantic error&lt;br&gt;
In programming language: &lt;/p&gt;

&lt;p&gt;3.2*5  → syntactically valid&lt;br&gt;
but 3+"hi" → static semantic error&lt;/p&gt;
&lt;h2&gt;
  
  
  Program
&lt;/h2&gt;

&lt;p&gt;In computer science, a program refers to a set of instructions or statements written in a programming language that directs a computer to perform a specific task or solve a particular problem. It is a sequence of instructions that defines the algorithmic steps to be executed by a computer or computing device.&lt;/p&gt;
&lt;h3&gt;
  
  
  Python Program
&lt;/h3&gt;

&lt;p&gt;In python program, everything is a object and each object is a type. There are two type of object in python Scalar object and Non-Scalar object.&lt;/p&gt;

&lt;p&gt;In Python, a scalar object refers to a basic or primitive data type that represents a single value. Scalar objects are immutable, meaning their values cannot be changed once assigned. They are atomic and cannot be further divided into smaller components.&lt;/p&gt;

&lt;p&gt;Python provides several built-in scalar object types, including:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Integers (int)&lt;/strong&gt;: Integers represent whole numbers without fractional parts. For example, 1, 10, -5 are all integers.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Floating-Point Numbers (float):&lt;/strong&gt; Floating-point numbers represent numbers with decimal points. For example, 3.14, -0.5, 2.0 are all floating-point numbers.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Booleans (bool):&lt;/strong&gt; Booleans represent truth values and can have two possible values: True or False. They are often used in logical expressions and control flow statements.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;None: &lt;code&gt;None&lt;/code&gt;&lt;/strong&gt; is commonly used to indicate the absence of a return value or to initialize variables when no specific value is assigned. &lt;strong&gt;&lt;code&gt;None&lt;/code&gt;&lt;/strong&gt; is a singleton object in Python, meaning there is only one instance of it throughout the program. It is of type &lt;strong&gt;&lt;code&gt;NoneType&lt;/code&gt;&lt;/strong&gt;.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;
  
  
  Expressions
&lt;/h3&gt;

&lt;p&gt;In programming, an expression is a combination of values, variables, operators, and function calls that can be evaluated to produce a result. Expressions represent computations or operations that manipulate data and produce a value of a certain type.&lt;/p&gt;

&lt;p&gt;Here are some example of expressions:&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Arithmetic Expression:&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;result = 2 + 3 * 4
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;In this expression, 2 + 3 * 4, the operators + and * are applied to the operands 2, 3, and 4 to perform arithmetic calculations. The result will be stored in the variable result.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Comparison Expression:&lt;/em&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;is_equal = (x == y)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Here, the expression (x == y) compares the values of variables x and y using the equality operator ==. The result will be either True or False depending on whether x and y are equal.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>6.0001 Introduction to Computer Science and Programming in Python by The 9-to-5 Scholar : Introduction</title>
      <dc:creator>Suraj Singh</dc:creator>
      <pubDate>Sun, 18 Jun 2023 12:44:54 +0000</pubDate>
      <link>https://dev.to/__surajsingh__/60001-introduction-to-computer-science-and-programming-in-python-by-the-9-to-5-scholar-introduction-5804</link>
      <guid>https://dev.to/__surajsingh__/60001-introduction-to-computer-science-and-programming-in-python-by-the-9-to-5-scholar-introduction-5804</guid>
      <description>&lt;p&gt;According to official Website,  &lt;em&gt;6.0001 Introduction to Computer Science and Programming in Python&lt;/em&gt; is intended for students with little or no programming experience. It aims to provide students with an understanding of the role computation can play in solving problems and to help students, regardless of their major, feel justifiably confident of their ability to write small programs that allow them to accomplish useful goals. The class uses the Python 3.5 programming language.&lt;/p&gt;

&lt;p&gt;Although I have experience with programming with JavaScript and C++, I have minimal experience with python.  Hence I am taking this class to brush up basic programming course and get hands on with python.&lt;/p&gt;

&lt;h2&gt;
  
  
  Topic:
&lt;/h2&gt;

&lt;p&gt;Here are topic that will be cover in this course:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Represent knowledge with data structures&lt;/li&gt;
&lt;li&gt;Iteration and recursion as computational metaphors&lt;/li&gt;
&lt;li&gt;Abstraction of procedures and data types&lt;/li&gt;
&lt;li&gt;Organize and modularize systems using object classes and methods&lt;/li&gt;
&lt;li&gt;Different classes of algorithms, searching and sorting&lt;/li&gt;
&lt;li&gt;Complexity of algorithms&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>The 9-to-5 Scholar: Completing MIT OCW CSE with a Full time Job</title>
      <dc:creator>Suraj Singh</dc:creator>
      <pubDate>Sun, 18 Jun 2023 09:30:56 +0000</pubDate>
      <link>https://dev.to/__surajsingh__/the-9-to-5-scholar-completing-mit-ocw-cse-with-a-full-time-job-289o</link>
      <guid>https://dev.to/__surajsingh__/the-9-to-5-scholar-completing-mit-ocw-cse-with-a-full-time-job-289o</guid>
      <description>&lt;p&gt;Join me on an amazing journey as I, Suraj Singh, a Software Development Engineer, from New Delhi, India, set forth on an ambitious mission—to complete the comprehensive Computer Science and Engineering curriculum offered by the MIT OCW.&lt;/p&gt;

&lt;p&gt;I will update progress every day, to keep me motivated till completion of this journey. I will share notes, insights and solution of the Problem sets.&lt;/p&gt;

&lt;p&gt;Here is a list of all the course I will try to cover. some of them are optional. &lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;strong&gt;Course Code&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Course Name&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Link&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Tag&lt;/strong&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;6.0001&lt;/td&gt;
&lt;td&gt;Introduction to Computer Science and Programming in Python&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-0002-introduction-to-computational-thinking-and-data-science-fall-2016/"&gt;https://ocw.mit.edu/courses/6-0002-introduction-to-computational-thinking-and-data-science-fall-2016/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.0002&lt;/td&gt;
&lt;td&gt;Introduction to Computational Thinking and Data Science&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-0002-introduction-to-computational-thinking-and-data-science-fall-2016/"&gt;https://ocw.mit.edu/courses/6-0002-introduction-to-computational-thinking-and-data-science-fall-2016/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.005&lt;/td&gt;
&lt;td&gt;Software Construction&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-005-software-construction-spring-2016/"&gt;https://ocw.mit.edu/courses/6-005-software-construction-spring-2016/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.104&lt;/td&gt;
&lt;td&gt;Software Studio&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-170-software-studio-spring-2013/pages/syllabus/"&gt;https://ocw.mit.edu/courses/6-170-software-studio-spring-2013/pages/syllabus/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.172&lt;/td&gt;
&lt;td&gt;Performance Engineering Of Software Systems&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-172-performance-engineering-of-software-systems-fall-2018/"&gt;https://ocw.mit.edu/courses/6-172-performance-engineering-of-software-systems-fall-2018/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.006&lt;/td&gt;
&lt;td&gt;Introduction To Algorithms&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-006-introduction-to-algorithms-spring-2020/"&gt;https://ocw.mit.edu/courses/6-006-introduction-to-algorithms-spring-2020/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.035&lt;/td&gt;
&lt;td&gt;Computer Language Engineering&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-035-computer-language-engineering-spring-2010/pages/lecture-notes/"&gt;https://ocw.mit.edu/courses/6-035-computer-language-engineering-spring-2010/pages/lecture-notes/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.042&lt;/td&gt;
&lt;td&gt;Mathematics For Computer Science&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-042j-mathematics-for-computer-science-fall-2010/"&gt;https://ocw.mit.edu/courses/6-042j-mathematics-for-computer-science-fall-2010/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.046&lt;/td&gt;
&lt;td&gt;Design And Analysis Of Algorithms&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-046j-design-and-analysis-of-algorithms-spring-2015/"&gt;https://ocw.mit.edu/courses/6-046j-design-and-analysis-of-algorithms-spring-2015/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.854&lt;/td&gt;
&lt;td&gt;Advanced Algorithms&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-854j-advanced-algorithms-fall-2005/pages/syllabus/"&gt;https://ocw.mit.edu/courses/6-854j-advanced-algorithms-fall-2005/pages/syllabus/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.851&lt;/td&gt;
&lt;td&gt;Advanced Data Structures&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-851-advanced-data-structures-spring-2012/video_galleries/lecture-videos/"&gt;https://ocw.mit.edu/courses/6-851-advanced-data-structures-spring-2012/video_galleries/lecture-videos/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.852&lt;/td&gt;
&lt;td&gt;Distributed Algorithms&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-852j-distributed-algorithms-fall-2009/"&gt;https://ocw.mit.edu/courses/6-852j-distributed-algorithms-fall-2009/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.849&lt;/td&gt;
&lt;td&gt;Geometric Folding Algorithms: Linkages, Origami, Polyhedra&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-849-geometric-folding-algorithms-linkages-origami-polyhedra-fall-2012/pages/class-and-lecture-videos/"&gt;https://ocw.mit.edu/courses/6-849-geometric-folding-algorithms-linkages-origami-polyhedra-fall-2012/pages/class-and-lecture-videos/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;18.404&lt;/td&gt;
&lt;td&gt;Theory Of Computation&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/18-404j-theory-of-computation-fall-2020/"&gt;https://ocw.mit.edu/courses/18-404j-theory-of-computation-fall-2020/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;18.405&lt;/td&gt;
&lt;td&gt;Advanced Complexity Theory&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/18-405j-advanced-complexity-theory-spring-2016/"&gt;https://ocw.mit.edu/courses/18-405j-advanced-complexity-theory-spring-2016/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.845&lt;/td&gt;
&lt;td&gt;Quantum Complexity Theory&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.858&lt;/td&gt;
&lt;td&gt;Computer Systems Security&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-858-computer-systems-security-fall-2014/"&gt;https://ocw.mit.edu/courses/6-858-computer-systems-security-fall-2014/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.033&lt;/td&gt;
&lt;td&gt;Computer System Engineering&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-033-computer-system-engineering-spring-2018/"&gt;https://ocw.mit.edu/courses/6-033-computer-system-engineering-spring-2018/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.828&lt;/td&gt;
&lt;td&gt;Operating System Engineering&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-828-operating-system-engineering-fall-2012/"&gt;https://ocw.mit.edu/courses/6-828-operating-system-engineering-fall-2012/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.829&lt;/td&gt;
&lt;td&gt;Computer Networks&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-829-computer-networks-fall-2002/"&gt;https://ocw.mit.edu/courses/6-829-computer-networks-fall-2002/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.83&lt;/td&gt;
&lt;td&gt;Database Systems&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-830-database-systems-fall-2010/"&gt;https://ocw.mit.edu/courses/6-830-database-systems-fall-2010/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.826&lt;/td&gt;
&lt;td&gt;Principles Of Computer Systems&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-826-principles-of-computer-systems-spring-2002/"&gt;https://ocw.mit.edu/courses/6-826-principles-of-computer-systems-spring-2002/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;18.337&lt;/td&gt;
&lt;td&gt;Parallel Computing&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/18-337j-parallel-computing-fall-2011/"&gt;https://ocw.mit.edu/courses/18-337j-parallel-computing-fall-2011/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.254&lt;/td&gt;
&lt;td&gt;Game Theory With Engineering Applications&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-254-game-theory-with-engineering-applications-spring-2010/"&gt;https://ocw.mit.edu/courses/6-254-game-theory-with-engineering-applications-spring-2010/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.895&lt;/td&gt;
&lt;td&gt;Essential Coding Theory&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-895-essential-coding-theory-fall-2004/"&gt;https://ocw.mit.edu/courses/6-895-essential-coding-theory-fall-2004/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.441&lt;/td&gt;
&lt;td&gt;Information Theory&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-441-information-theory-spring-2010/"&gt;https://ocw.mit.edu/courses/6-441-information-theory-spring-2010/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.3702&lt;/td&gt;
&lt;td&gt;Introduction To Probability&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/res-6-012-introduction-to-probability-spring-2018/"&gt;https://ocw.mit.edu/courses/res-6-012-introduction-to-probability-spring-2018/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;15.075&lt;/td&gt;
&lt;td&gt;Statistical Thinking And Data Analysis&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/15-075j-statistical-thinking-and-data-analysis-fall-2011/"&gt;https://ocw.mit.edu/courses/15-075j-statistical-thinking-and-data-analysis-fall-2011/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;6.837&lt;/td&gt;
&lt;td&gt;Computer Graphics&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/6-837-computer-graphics-fall-2012/"&gt;https://ocw.mit.edu/courses/6-837-computer-graphics-fall-2012/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;IDS.333&lt;/td&gt;
&lt;td&gt;IDS.333 Risk And Decision Analysis&lt;/td&gt;
&lt;td&gt;&lt;a href="https://ocw.mit.edu/courses/ids-333-risk-and-decision-analysis-fall-2021/"&gt;https://ocw.mit.edu/courses/ids-333-risk-and-decision-analysis-fall-2021/&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;Optional&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Signing off for today, let meet tomorrow, with first lecture of the journey. &lt;/p&gt;

</description>
      <category>learning</category>
      <category>self</category>
      <category>career</category>
      <category>computerscience</category>
    </item>
  </channel>
</rss>
