Tag: computer-science
All the articles with the tag "computer-science".
Building your own Arithmetic Logic Unit (ALU)
Published: at 10:12 AMIn this post, we will explore fundamental questions about a computer like why do computers use 1s and 0s? What are the building blocks of a computer? How does a computer perform arithmetic operations? We will do this by constructing our own version of an Arithmetic Logic Unit (ALU) from scratch.
Why JavaScript will always need Transpilers and Polyfills
Published: at 12:12 PMUnderstanding what is backwards and forwards compatibility in JavaScript and why we’ll always need transpilers and polyfills
Time and Space Complexity
Published: at 10:42 AMWhat is Time and Space Complexity? What do we mean when we say an algorithm takes log(n) time?