{"id":17703804,"url":"https://github.com/zudov/eller-maze-generator","last_synced_at":"2026-07-14T01:31:44.696Z","repository":{"id":8977213,"uuid":"10721568","full_name":"zudov/eller-maze-generator","owner":"zudov","description":"Generates mazes using Eller's algorythm","archived":false,"fork":false,"pushed_at":"2014-10-16T02:40:30.000Z","size":136,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-24T11:51:16.431Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/zudov.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-06-16T15:07:57.000Z","updated_at":"2014-10-16T02:40:30.000Z","dependencies_parsed_at":"2022-09-10T03:23:33.201Z","dependency_job_id":null,"html_url":"https://github.com/zudov/eller-maze-generator","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zudov/eller-maze-generator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zudov%2Feller-maze-generator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zudov%2Feller-maze-generator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zudov%2Feller-maze-generator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zudov%2Feller-maze-generator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zudov","download_url":"https://codeload.github.com/zudov/eller-maze-generator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zudov%2Feller-maze-generator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35442828,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-13T02:00:06.543Z","response_time":119,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-10-24T21:06:00.548Z","updated_at":"2026-07-14T01:31:44.677Z","avatar_url":"https://github.com/zudov.png","language":"Haskell","funding_links":[],"categories":[],"sub_categories":[],"readme":"Eller's Algorithm for maze generation\n=====================================\n**WARNING**: THIS CODE IS HORRIBLE, H-O-R-R-I-B-L-E. I wrote it when I was a very newbie at haskell. Please, learn no Haskell from it. And please, do not judge my haskell/coding foo based on code in that repo. I gonna refactor^W rewrite that code soon, it's in my DO-SOME-OTHER-DAY list.\n\nThis is my implementation of algorythm which is described [here](http://www.neocomputer.org/projects/eller.html). It creates perfect mazes, here are few examples:\n\nSmall 5x5 maze:\n\n\t _______________\n\t|___  |______   |\n\t|  |  |  |___   |\n\t|  |___   __|   |\n\t|  |  |___   ___|\n\t|___   __|      |\n\t|   __|_____|   |\n\t|_______________|\n\nBigger 10x10 maze:\n\n\t  ______________________________\n\t |  |  |___   __|___  |___  |   |\n\t |  |  |  |  |___   _____|  |   |\n\t |  |  |  |        |______   ___|\n\t |___   __|__|  |     |___  |   |\n\t |  |  |______  |__|   _________|\n\t |  |  |   __|___  |   ___  |   |\n\t |  |  |  |  |     |  |  |__|   |\n\t |_________  |__|__|     |  |   |\n\t |      ______      __|___  |   |\n\t |  |   _____|__|__|___  |__|   |\n\t |  |  |  |  |        |   __|   |\n\t |__|___________|__|____________|\n\nTo build it run \"cabal install\".\n\n\t╭─user@localhost  ~/haskell  \n\t╰─$ cd eller_maze_generator \n\t╭─user@localhost  ~/haskell/eller_maze_generator  ‹master*› \n\t╰─$ cabal install\n\tResolving dependencies...\n\tConfiguring mazeGen-0.1...\n\tBuilding mazeGen-0.1...\n\tPreprocessing executable 'mazeGen' for mazeGen-0.1...\n\t[1 of 1] Compiling Main ( mazeGen.hs, dist/build/mazeGen/mazeGen-tmp/Main.o )\n\tLinking dist/build/mazeGen/mazeGen ...\n\tInstalling executable(s) in /home/user/.cabal/bin\n\tInstalled mazeGen-0.1\n\nmazeGen takes one argument which is size of algorythm.\n\n\t╭─user@localhost  ~/haskell/eller_maze_generator  ‹master*› \n\t╰─$ ~/.cabal/bin/mazeGen 4\n\t  ____________\n\t |  |  |  |   |\n\t |  |  |  |   |\n\t |   _____|   |\n\t |   ___  |   |\n\t |     |___   |\n\t |__|_____|___|\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzudov%2Feller-maze-generator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzudov%2Feller-maze-generator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzudov%2Feller-maze-generator/lists"}