{"id":32114568,"url":"https://github.com/spaxe/elm-lsystem","last_synced_at":"2026-02-19T07:00:52.243Z","repository":{"id":57674708,"uuid":"133240119","full_name":"Spaxe/elm-lsystem","owner":"Spaxe","description":"Implementation of L-Systems in Elm","archived":false,"fork":false,"pushed_at":"2019-06-24T00:31:35.000Z","size":14,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2023-08-08T20:40:14.634Z","etag":null,"topics":["elm","generative","l-system","package","svg","turtle-graphics"],"latest_commit_sha":null,"homepage":null,"language":"Elm","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Spaxe.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-05-13T13:37:08.000Z","updated_at":"2022-01-09T10:32:34.000Z","dependencies_parsed_at":"2022-09-11T16:31:59.265Z","dependency_job_id":null,"html_url":"https://github.com/Spaxe/elm-lsystem","commit_stats":null,"previous_names":[],"tags_count":8,"template":null,"template_full_name":null,"purl":"pkg:github/Spaxe/elm-lsystem","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Spaxe%2Felm-lsystem","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Spaxe%2Felm-lsystem/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Spaxe%2Felm-lsystem/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Spaxe%2Felm-lsystem/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Spaxe","download_url":"https://codeload.github.com/Spaxe/elm-lsystem/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Spaxe%2Felm-lsystem/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29605793,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T06:47:36.664Z","status":"ssl_error","status_checked_at":"2026-02-19T06:45:47.551Z","response_time":117,"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":["elm","generative","l-system","package","svg","turtle-graphics"],"created_at":"2025-10-20T15:26:30.826Z","updated_at":"2026-02-19T07:00:52.237Z","avatar_url":"https://github.com/Spaxe.png","language":"Elm","funding_links":[],"categories":[],"sub_categories":[],"readme":"# elm-LSystem\n\nImplementation of L-Systems in Elm. Given a set of states and a ruleset:\n\n    type State\n        = A\n        | B\n\n    rule : LSystem.Rule State\n    rule state =\n        case state of\n            A -\u003e\n                [ A, B ]\n\n            B -\u003e\n                [ A ]\n\nWe can generate a new state based on these:\n\n`[A]` =\u003e `[A, B]`\n\n`[A, B]` =\u003e `[A, B, A]`\n\n`[A, B, A]` =\u003e `[A, B, A, A, B]`\n\n# Install\n\n    elm install Spaxe/elm-lsystem\n\n# Documentation\n\nSee the documentation on elm docs at http://package.elm-lang.org/packages/Spaxe/elm-lsystem/latest/LSystem\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspaxe%2Felm-lsystem","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspaxe%2Felm-lsystem","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspaxe%2Felm-lsystem/lists"}