{"id":16341697,"url":"https://github.com/psibi/game-of-life","last_synced_at":"2025-11-05T00:30:28.772Z","repository":{"id":10656708,"uuid":"12888050","full_name":"psibi/game-of-life","owner":"psibi","description":"Game of Life","archived":false,"fork":false,"pushed_at":"2013-12-15T08:38:20.000Z","size":140,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-12-27T10:43:48.117Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Haskell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/psibi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-09-17T06:37:00.000Z","updated_at":"2019-12-15T02:26:57.000Z","dependencies_parsed_at":"2022-09-22T21:01:24.316Z","dependency_job_id":null,"html_url":"https://github.com/psibi/game-of-life","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/psibi%2Fgame-of-life","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/psibi%2Fgame-of-life/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/psibi%2Fgame-of-life/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/psibi%2Fgame-of-life/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/psibi","download_url":"https://codeload.github.com/psibi/game-of-life/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239445447,"owners_count":19639891,"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":[],"created_at":"2024-10-11T00:00:05.088Z","updated_at":"2025-11-05T00:30:28.742Z","avatar_url":"https://github.com/psibi.png","language":"Haskell","funding_links":[],"categories":[],"sub_categories":[],"readme":"##A haskell solution for Conway's GAME OF LIFE\n\n### Internals\n\n    type Location = (Int, Int)\n\nRepresents the Location of the Cell.\n\n    data Cell = Alive | Dead\n\nRepresents whether the Cell is Alive or Dead.\n\n    type World = [(Location, Cell)]\n\nRepresents the entire world with it's state. A sample world's location\nis represented like this:\n\n    +---+---+---+---+\n    |0,0|0,1|0,2|0,3|\n    |   |   |   |   |\n    +---+---+---+---+\n    |1,0|1,1|1,2|1,3|\n    |   |   |   |   |\n    +---+---+---+---+\n    |2,0|2,1|2,2|2,3|\n    |   |   |   |   |\n    +---+---+---+---+\n    |3,0|3,1|3,2|3,3|\n    |   |   |   |   |\n    +---+---+---+---+\n\nThe world is assumed to be in an rectangular grid.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpsibi%2Fgame-of-life","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpsibi%2Fgame-of-life","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpsibi%2Fgame-of-life/lists"}