{"id":34256169,"url":"https://github.com/shurcool-legacy/conception-go","last_synced_at":"2025-12-16T13:59:10.571Z","repository":{"id":12380283,"uuid":"15032076","full_name":"shurcooL-legacy/Conception-go","owner":"shurcooL-legacy","description":"An unfinished Go implementation of Conception.","archived":false,"fork":false,"pushed_at":"2020-02-09T17:35:10.000Z","size":5186,"stargazers_count":271,"open_issues_count":0,"forks_count":12,"subscribers_count":22,"default_branch":"master","last_synced_at":"2025-10-18T17:45:37.252Z","etag":null,"topics":["experimental"],"latest_commit_sha":null,"homepage":"","language":"Go","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/shurcooL-legacy.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-12-08T21:50:26.000Z","updated_at":"2025-09-30T04:05:51.000Z","dependencies_parsed_at":"2022-09-18T11:02:34.407Z","dependency_job_id":null,"html_url":"https://github.com/shurcooL-legacy/Conception-go","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/shurcooL-legacy/Conception-go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shurcooL-legacy%2FConception-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shurcooL-legacy%2FConception-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shurcooL-legacy%2FConception-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shurcooL-legacy%2FConception-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/shurcooL-legacy","download_url":"https://codeload.github.com/shurcooL-legacy/Conception-go/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/shurcooL-legacy%2FConception-go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27765949,"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","status":"online","status_checked_at":"2025-12-16T02:00:10.477Z","response_time":57,"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":["experimental"],"created_at":"2025-12-16T13:59:09.379Z","updated_at":"2025-12-16T13:59:10.563Z","avatar_url":"https://github.com/shurcooL-legacy.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"Conception-go\n=============\n\n[![Build Status](https://travis-ci.org/shurcooL-legacy/Conception-go.svg?branch=master)](https://travis-ci.org/shurcooL-legacy/Conception-go) [![GoDoc](https://godoc.org/github.com/shurcooL-legacy/Conception-go?status.svg)](https://godoc.org/github.com/shurcooL-legacy/Conception-go)\n\nThis is a work in progress Go implementation of [Conception](https://github.com/shurcooL/Conception#demonstration).\n\nConception is an experimental project. It's a platform for researching software development tools and techniques. It is driven by a set of guiding principles. Conception-go targets Go development.\n\nMy \"short term\" goal is to implement some of the ideas shown off in Bret Victor's [Learnable Programming](http://worrydream.com/LearnableProgramming/) article. Another goal is to try to beat my current Sublime Text + GoSublime development environment setup (which sets a really high bar).\n\nWatch this repo to follow the project's development.\n\nScreenshot\n----------\n\nA screenshot showing off a single aspect of the project that was recently added or improved.\n\n![Early 2015 Overview](http://dmitri.shuralyov.com/projects/Conception/images/Go/early-2015-overview.png)\n\nInstallation\n------------\n\n### macOS\n\n```bash\n# Install latest Go, git (if you don't already have them).\n...\n\n# Step back and enjoy 2 commands that install Conception-go.\ngit clone https://github.com/shurcooL/frontend \"$GOPATH/src/github.com/shurcooL/frontend\" || (cd \"$GOPATH/src/github.com/shurcooL/frontend\" \u0026\u0026 git pull --ff-only)  # TODO: remove after golang.org/issue/31603 is resolved\n(cd; GO111MODULE=on go install github.com/shurcooL-legacy/Conception-go)\n\n# Run it.\n$(go env GOPATH)/bin/Conception-go\n```\n\n### Linux\n\n```bash\n# Install latest Go (if you don't already have it).\nsudo apt-get install --yes curl\ncurl -L https://golang.org/dl/go1.13.7.linux-amd64.tar.gz | sudo tar zx -C /usr/local/\nexport PATH=\"$PATH:/usr/local/go/bin\"\n\n# Install git, OpenGL headers (if you don't already have them).\nsudo apt-get install --yes git\nsudo apt-get install --yes libgl1-mesa-dev xorg-dev # OpenGL headers.\n\n# Step back and enjoy 2 commands that install Conception-go.\ngit clone https://github.com/shurcooL/frontend \"$GOPATH/src/github.com/shurcooL/frontend\" || (cd \"$GOPATH/src/github.com/shurcooL/frontend\" \u0026\u0026 git pull --ff-only)  # TODO: remove after golang.org/issue/31603 is resolved\n(cd; GO111MODULE=on go install github.com/shurcooL-legacy/Conception-go)\n\n# Run it.\n$(go env GOPATH)/bin/Conception-go\n```\n\nLicense\n-------\n\n-\t[MIT License](https://opensource.org/licenses/mit-license.php)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshurcool-legacy%2Fconception-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshurcool-legacy%2Fconception-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshurcool-legacy%2Fconception-go/lists"}