home.social

#memory_graph — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #memory_graph, aggregated by home.social.

  1. Algorithms like Cocktail Shaker Sort: lnkd.in/e5e7FUeu
    (Bubble Sort in both directions) are easier to understand after visualization using memory_graph: lnkd.in/ePFhkAfH

  2. Algorithms can at first seem complex to students, but with memory_graph every step is clearly visualized, giving students an intuitive understanding of what their code is doing and making bugs much easier to spot and fix. Here's an example Bubble Sort algorithm: memory-graph.com/#codeurl=http

  3. Algorithms can at first seem complex to students, but with memory_graph every step is clearly visualized, giving students an intuitive understanding of what their code is doing and making bugs much easier to spot and fix. Here's an example Insertion Sort algorithm: memory-graph.com/#codeurl=http

  4. Here’s Selection Sort running with memory_graph. You can see the updating of `min_value` and the swaps of list elements in each step. Run a one-click live demo in Memory Graph Web Debugger: memory-graph.com/#codeurl=http
    Visual feedback like this helps beginners grasp what the code does and debug with confidence.

  5. Teaching and learning Python data structures gets much easier when you can see the structure of your data in real time using the open-source memory_graph package. Here is a 'Binary Tree' example:
    memory-graph.com/#codeurl=http

  6. Understanding and debugging Data Structures is easier when you can see the structure of your data using memory_graph: github.com/bterwijn/memory_gra

    Here we show values being added to a Linked List in Cursor AI. When adding the last value '5' we "Step Into" the code to show more of the details: raw.githubusercontent.com/bter

    🎥 See the Quick Intro video for the VS Code integration: youtu.be/23_bHcr7hqo

  7. Understanding and debugging Data Structures is easier when you can see the structure of your data using memory_graph: github.com/bterwijn/memory_gra

    In this example we show values being inserted in a Binary Tree. When inserting the last value '29' we "Step Into" the code to show the recursive implementation: shorturl.at/bx848

    🎥 See the Quick Intro video for the VS Code integration: youtu.be/23_bHcr7hqo

  8. Python Mutability:
    - Changing a value of type results in an automatic copy
    - Changing a value of type causes it to mutate in place

    🧠 Understand the Python Data Model better using memory_graph: github.com/yourusername/memory

    🎥 Watch the explainer on Python Mutability: youtu.be/pvIJgHCaXhU