computationbook VS nand2minesweeper

Compare computationbook vs nand2minesweeper and see what are their differences.

computationbook

Example code for Understanding Computation (by tomstuart)

nand2minesweeper

Minesweeper game written in Jack for the nand2tetris course (by billmei)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
computationbook nand2minesweeper
6 6
490 2
- -
10.0 10.0
almost 9 years ago over 3 years ago
Ruby
GNU General Public License v3.0 or later MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

computationbook

Posts with mentions or reviews of computationbook. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-15.

nand2minesweeper

Posts with mentions or reviews of nand2minesweeper. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-21.
  • Ask HN: Which books/resources to understand modern Assembler?
    6 projects | news.ycombinator.com | 21 Apr 2024
  • Let's Build the GPT Tokenizer (By Andrej Karpathy) [video]
    4 projects | news.ycombinator.com | 20 Feb 2024
  • Ask HN: Do you know a good course or book to learn CS basics for teens?
    1 project | news.ycombinator.com | 16 Feb 2024
    Nand to Tetris.The Elements of Computing Systems: Building a Modern Computer from First Principles

    https://www.nand2tetris.org/

    Free (also some paid online certificate programs).

    At least worth a look.

  • Show HN: Pebble Graphics – A 3D Version of Turtle Graphics
    6 projects | news.ycombinator.com | 12 Jan 2024
    Note: If you’re logged into your Meta/Oculus/Facebook account when you visit the store page you should see an option for a free trial, if not let me know and I can send you a promo code or something

    Pebble Graphics is a modern take on Logo/turtle graphics partially inspired by stories of people’s first programming experiences on the Apple II with turtle graphics and partially influenced by essays like Bret Victor’s Learnable Programming [1]. It’s a 3D user interface for programming that emphasizes interactivity (being able to put together a program with 3D pieces and step forward and backward through execution as you’re building) and visualization of state and execution history.

    It’s been a bit of a journey to get to this point and it started here on Hacker News. I was first inspired to try out VR after seeing this post [2] of a live coding environment in VR by Brian Peiris back in 2014. After working on my own multi-user version of that project [3] I thought more about non keyboard interfaces for making programs since it wasn’t that easy with a headset on. After a few experiments, I ended up with a project where you could put together JavaScript abstract syntax trees with your hands and interactively execute them [4]. I took a brief break and then decided to see if there was anything interesting at the lower levels of computation and also take some time to study the amazing Nand to Tetris course [5], which resulted in a VR circuit simulator [6], VR CPU Emulator [7], and a very limited version of turtle graphics in VR [8]. A lot of this work was done at the wonderful Recurse Center [9], which I highly recommend and through some great discussions with members of the community there were a few stories of how people got their start in programming with turtle graphics so I decided to make a more user friendly version. I had a long time interest in startups and entrepreneurship so I took this as an opportunity to learn about that process as well and here we are. Here’s a playlist [10] of the app's development over time and the channel has some other VR and programming experiments as well. Thanks for taking the time to look!

    [1] Unfortunately it looks like the site is down at the time of this writing (https://worrydream.com/LearnableProgramming/) , but here’s some HN discussion https://news.ycombinator.com/item?id=37746918

    [2] https://news.ycombinator.com/item?id=8411638

    [3] https://github.com/ih/construct

    [4] https://github.com/ih/jsvr

    [5] https://www.nand2tetris.org/

    [6] https://github.com/ih/GatesVRE

    [7] https://github.com/ih/CPUEmulatorVR

    [8] https://github.com/ih/TurtleVR

    [9] https://www.recurse.com/

    [10] https://www.youtube.com/playlist?list=PLhmEEtPzG7mW4JrBUhwbo...

  • Turing Complete is a game about computer science
    2 projects | news.ycombinator.com | 9 Jan 2024
    I've played it a bit with my kids. It seems to take a similar to the Nand 2 Tetris course: https://www.nand2tetris.org/
  • From Nand to Tetris: Building a Modern Computer from First Principles
    6 projects | news.ycombinator.com | 22 Dec 2023
    This was an amazing course and is one of the most rewarding computer science courses I've taken! I loved that there was nothing left to "magic" and it was the first time I felt like I understood the "full stack" of the Java-like code I was writing right down to the silicon atoms.

    Self-plug for a full-blown minesweeper game I made for the final project: https://github.com/billmei/nand2minesweeper It's a complete game with a tutorial, custom RNG, and unit tests, using their hardware simulator.