{"id":15704065,"url":"https://github.com/xxyzz/sicp","last_synced_at":"2026-01-08T13:11:14.764Z","repository":{"id":104902109,"uuid":"220257373","full_name":"xxyzz/SICP","owner":"xxyzz","description":"Abracadabra!","archived":false,"fork":false,"pushed_at":"2021-12-14T13:53:22.000Z","size":583,"stargazers_count":9,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-05T16:37:37.660Z","etag":null,"topics":["fun","magic","parentheses","racket","scheme","sicp"],"latest_commit_sha":null,"homepage":"","language":"Racket","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xxyzz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"liberapay":"xxyzz"}},"created_at":"2019-11-07T14:36:28.000Z","updated_at":"2024-11-14T07:15:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"454dcf47-7fd6-4b33-b219-0177e56241f6","html_url":"https://github.com/xxyzz/SICP","commit_stats":{"total_commits":294,"total_committers":1,"mean_commits":294.0,"dds":0.0,"last_synced_commit":"2decd1017f898529340dd07e73224f2e750b65b8"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xxyzz%2FSICP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xxyzz%2FSICP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xxyzz%2FSICP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xxyzz%2FSICP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xxyzz","download_url":"https://codeload.github.com/xxyzz/SICP/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246334430,"owners_count":20760644,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["fun","magic","parentheses","racket","scheme","sicp"],"created_at":"2024-10-03T20:10:11.740Z","updated_at":"2026-01-08T13:11:14.735Z","avatar_url":"https://github.com/xxyzz.png","language":"Racket","funding_links":["https://liberapay.com/xxyzz"],"categories":[],"sub_categories":[],"readme":"# Structure and Interpretation of Computer Programs(SICP)\n\nExercise solutions of the *[Wizard Book](https://mitpress.mit.edu/sites/default/files/sicp/index.html)*.\n\nInstall [Racket](https://racket-lang.org):\n\n```\n$ brew install --cask racket\n```\n\n## Chapters\n\n1. Building Abstractions with Procedures\n\n    - 1.1 [The Elements of Programming](./1_Building_Abstractions_with_Procedures/1.1_The_Elements_of_Programming)\n\n    - 1.2 [Procedures and the Processes They Generate](./1_Building_Abstractions_with_Procedures/1.2_Procedures_and_the_Processes_They_Generate)\n\n    - 1.3 [Formulating Abstractions with Higher-Order Procedures](./1_Building_Abstractions_with_Procedures/1.3_Formulating_Abstractions_with_Higher-Order_Procedures)\n\n2. Building Abstractions with Data\n\n    - 2.1 [Introduction to Data Abstraction](./2_Building_Abstractions_with_Data/2.1_Introduction_to_Data_Abstraction)\n\n    - 2.2 [Hierarchical Data and the Closure Property](./2_Building_Abstractions_with_Data/2.2_Hierarchical_Data_and_the_Closure_Property)\n\n    - 2.3 [Symbolic Data](./2_Building_Abstractions_with_Data/2.3_Symbolic_Data)\n\n    - 2.4 [Multiple Representations for Abstract Data](./2_Building_Abstractions_with_Data/2.4_Multiple_Representations_for_Abstract_Data)\n\n    - 2.5 [Systems with Generic Operations](./2_Building_Abstractions_with_Data/2.5_Systems_with_Generic_Operations)\n\n3. Modularity, Objects, and State\n\n    - 3.1 [Assignment and Local State](./3_Modularity_Objects_and_State/3.1_Assignment_and_Local_State)\n\n    - 3.2 [The Environment Model of Evaluation](./3_Modularity_Objects_and_State/3.2_The_Environment_Model_of_Evaluation)\n\n    - 3.3 [Modeling with Mutable Data](./3_Modularity_Objects_and_State/3.3_Modeling_with_Mutable_Data)\n\n    - 3.4 [Concurrency: Time Is of the Essence](./3_Modularity_Objects_and_State/3.4_Concurrency_Time_Is_of_the_Essence)\n\n    - 3.5 [Streams](./3_Modularity_Objects_and_State/3.5_Streams)\n\n4. Metalinguistic Abstraction\n\n    - 4.1 [The Metacircular Evaluator](./4_Metalinguistic_Abstraction/4.1_The_Metacircular_Evaluator)\n\n    - 4.2 [Variations on a Scheme — Lazy Evaluation](./4_Metalinguistic_Abstraction/4.2_Variations_on_a_Scheme_Lazy_Evaluation)\n\n    - 4.3 [Variations on a Scheme — Nondeterministic Computing](./4_Metalinguistic_Abstraction/4.3_Variations_on_a_Scheme_Nondeterministic_Computing)\n\n    - 4.4 [Logic Programming](./4_Metalinguistic_Abstraction/4.4_Logic_Programming)\n\n5. Computing with Register Machines\n\n    - 5.1 [Designing Register Machines](./5_Computing_with_Register_Machines/5.1_Designing_Register_Machines)\n\n    - 5.2 [A Register-Machine Simulator](./5_Computing_with_Register_Machines/5.2_A_Register-Machine_Simulator)\n\n    - 5.3 [Storage Allocation and Garbage Collection](./5_Computing_with_Register_Machines/5.3_Storage_Allocation_and_Garbage_Collection)\n\n    - 5.4 [The Explicit-Control Evaluator](./5_Computing_with_Register_Machines/5.4_The_Explicit-Control_Evaluator)\n\n    - 5.5 [Compilation](./5_Computing_with_Register_Machines/5.5_Compilation)\n\n## License\n\nThis work is licensed under the GPLv3 or any later version.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxxyzz%2Fsicp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxxyzz%2Fsicp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxxyzz%2Fsicp/lists"}