{"id":36990302,"url":"https://github.com/hyperpolymath/terrapin-ssg","last_synced_at":"2026-01-13T23:35:47.224Z","repository":{"id":328907700,"uuid":"1117214494","full_name":"hyperpolymath/terrapin-ssg","owner":"hyperpolymath","description":"Educational static site generator in Logo. Learn programming concepts while building sites.","archived":false,"fork":false,"pushed_at":"2026-01-13T13:50:15.000Z","size":152,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-13T19:44:23.486Z","etag":null,"topics":["content-tools","educational","hyperpolymath","logo","poly-ssg","publishing","ssg","static-site","static-site-generator","templates","themes","websites","websites-and-cms"],"latest_commit_sha":null,"homepage":null,"language":"Scheme","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hyperpolymath.png","metadata":{"files":{"readme":"README.adoc","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"hyperpolymath","ko_fi":"hyperpolymath","liberapay":"hyperpolymath"}},"created_at":"2025-12-16T02:02:04.000Z","updated_at":"2026-01-10T13:15:56.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/hyperpolymath/terrapin-ssg","commit_stats":null,"previous_names":["hyperpolymath/terrapin-ssg"],"tags_count":1,"template":false,"template_full_name":"hyperpolymath/template-repo","purl":"pkg:github/hyperpolymath/terrapin-ssg","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperpolymath%2Fterrapin-ssg","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperpolymath%2Fterrapin-ssg/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperpolymath%2Fterrapin-ssg/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperpolymath%2Fterrapin-ssg/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hyperpolymath","download_url":"https://codeload.github.com/hyperpolymath/terrapin-ssg/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hyperpolymath%2Fterrapin-ssg/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28405304,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T21:51:37.118Z","status":"ssl_error","status_checked_at":"2026-01-13T21:45:14.585Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["content-tools","educational","hyperpolymath","logo","poly-ssg","publishing","ssg","static-site","static-site-generator","templates","themes","websites","websites-and-cms"],"created_at":"2026-01-13T23:35:46.721Z","updated_at":"2026-01-13T23:35:47.215Z","avatar_url":"https://github.com/hyperpolymath.png","language":"Scheme","funding_links":["https://github.com/sponsors/hyperpolymath","https://ko-fi.com/hyperpolymath","https://liberapay.com/hyperpolymath"],"categories":[],"sub_categories":[],"readme":"= terrapin-ssg\n\nimage:https://img.shields.io/badge/License-MPL_2.0-blue.svg[MPL-2.0,link=\"https://opensource.org/licenses/MPL-2.0\"]\nimage:https://img.shields.io/badge/Philosophy-Palimpsest-purple.svg[Palimpsest,link=\"https://github.com/hyperpolymath/palimpsest-licence\"]\n\n\n:toc: auto\n:toclevels: 2\n\nimage:https://img.shields.io/badge/RSR-compliant-gold[RSR Compliant,link=https://github.com/hyperpolymath/rhodium-standard-repositories]\nimage:https://img.shields.io/badge/poly--ssg-satellite-blue[poly-ssg,link=https://github.com/hyperpolymath/poly-ssg]\n\n**Educational static site generator in Logo.**\n\nLearn programming while building websites. The turtle draws your layouts.\n\n== Who Is This For?\n\n* **Logo programmers** returning to a beloved language\n* **Educators** teaching programming concepts visually\n* **Anyone learning to code** who wants practical projects\n* **Nostalgic developers** from the Apple II era\n\n== Why terrapin-ssg?\n\n=== Visual Programming\n\nWatch the turtle draw your site layouts. Abstract concepts become tangible patterns.\n\n=== Beginner-Friendly Syntax\n\nCommands read like instructions: FORWARD 100, RIGHT 90. No cryptic syntax to decode.\n\n=== Recursive Design\n\nLogo's recursive procedures naturally create complex, beautiful patterns from simple rules.\n\n=== Generative Art\n\nEvery page can include unique turtle-generated SVG artwork. Your site literally draws itself.\n\n== Quick Start\n\n[source,logo]\n----\n; terrapin-ssg example\nTO BUILD.SITE\n  SITE \"My First Site\n  OUTDIR \"_site\n\n  PAGE \"index \"Welcome [\n    REPEAT 4 [FORWARD 100 RIGHT 90]\n  ]\n\n  BUILD\nEND\n\nBUILD.SITE\n----\n\n[source,bash]\n----\n# Run with UCBLogo\nlogo src/terrapin-ssg.logo\n----\n\n== Features\n\n* **Turtle graphics to SVG** - procedural art in every page\n* **Interactive REPL** - experiment with designs\n* **Recursive patterns** - L-systems and fractals\n* **Simple syntax** - accessible to beginners\n* **Visual feedback** - see what you're building\n\n== Requirements\n\n* UCBLogo (Berkeley Logo) or compatible interpreter\n\n== Part of poly-ssg\n\nterrapin-ssg is part of the https://github.com/hyperpolymath/poly-ssg[poly-ssg] family, unified through https://github.com/hyperpolymath/poly-ssg-mcp[MCP integration].\n\n== License\n\nAGPL-3.0-or-later\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhyperpolymath%2Fterrapin-ssg","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhyperpolymath%2Fterrapin-ssg","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhyperpolymath%2Fterrapin-ssg/lists"}