{"id":29688907,"url":"https://github.com/narcode/livecoders-mapping-on-the-fly-ccu","last_synced_at":"2026-05-18T11:05:29.510Z","repository":{"id":45989620,"uuid":"330681915","full_name":"narcode/livecoders-mapping-on-the-fly-ccu","owner":"narcode","description":"Survey form in Elm","archived":false,"fork":false,"pushed_at":"2022-02-01T22:54:00.000Z","size":2659,"stargazers_count":0,"open_issues_count":3,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-07-23T05:44:45.942Z","etag":null,"topics":["algorithm","database","elm"],"latest_commit_sha":null,"homepage":"","language":"Elm","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/narcode.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":"2021-01-18T13:54:15.000Z","updated_at":"2021-12-09T16:26:14.000Z","dependencies_parsed_at":"2022-09-01T05:20:48.032Z","dependency_job_id":null,"html_url":"https://github.com/narcode/livecoders-mapping-on-the-fly-ccu","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/narcode/livecoders-mapping-on-the-fly-ccu","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/narcode%2Flivecoders-mapping-on-the-fly-ccu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/narcode%2Flivecoders-mapping-on-the-fly-ccu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/narcode%2Flivecoders-mapping-on-the-fly-ccu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/narcode%2Flivecoders-mapping-on-the-fly-ccu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/narcode","download_url":"https://codeload.github.com/narcode/livecoders-mapping-on-the-fly-ccu/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/narcode%2Flivecoders-mapping-on-the-fly-ccu/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33175859,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"ssl_error","status_checked_at":"2026-05-18T09:27:28.300Z","response_time":71,"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":["algorithm","database","elm"],"created_at":"2025-07-23T05:39:02.455Z","updated_at":"2026-05-18T11:05:29.478Z","avatar_url":"https://github.com/narcode.png","language":"Elm","funding_links":[],"categories":[],"sub_categories":[],"readme":"# On-the-fly live coding mapping survey\n\n## [Creative Coding survey is on the creative coding branch](https://github.com/narcode/livecoders-mapping-on-the-fly-ccu/tree/creative-coding)\n## [CCU, please use the hangar branch or the last release, not master](https://github.com/narcode/livecoders-mapping-on-the-fly-ccu/tree/ccu)\n## [Hangar, please use the hangar branch or the last release, not master](https://github.com/narcode/livecoders-mapping-on-the-fly-ccu/tree/hangar)\n\n## [on-the-fly project website](https://onthefly.space/)\n\n on-the-fly is a project to promote Live Coding practice, a performative technique focused on writing algorithms in real-time so that the one who writes is part of the algorithm. Live coding is mainly used to produce music or images but it extends beyond that. Our objectives are: supporting knowledge exchange between communities, engaging with critical reflections, promoting free and open source tools and approaching live coding to new audiences. The project runs from 10/2020 to 09/2022, is co-founded by the Creative Europe program, and is led by Hangar in collaboration with ZKM | Center for Art and Media Karlsruhe, Ljudmila and Creative Coding Utrecht.\n\nThis project is possible thanks to\n \n \u003cimg src='public/CCE.png' width=180\u003e\n\n \u003cimg src='public/logo_sci.gif' width=80\u003e\n\nThis project is bootstrapped with [Create Elm App](https://github.com/halfzebra/create-elm-app).\n\n## requirements\nMake a python venv and install the following:\n\n- mysql (for the database)\n- aiohttp \u0026 gunicorn (for the server)\n- aiohttp_middlewares\n- aiomysql \u0026 sqlalchemy (to communicatie with the database)\n\n## inititlization values (if you will make a custom build from with Elm)\n\nYou will need to create a .env file in the root of the project with the following variables:\nELM_APP_DEV_URL\nELM_APP_PROD_URL\n\n# start the backend server for development (of course better in a venv)\n`gunicorn server:app --bind localhost:8080 --worker-class aiohttp.GunicornWebWorker`\n\n# deployment\n1. Make the database with the sql script inside the database folder\n2. Adjust the db connection config inside server.py (lines 92-93). It is better to create a special user for this database.\n3. If using Nginx or Apache make a proxy to the python server\n4. To start the server via systemctl you can use the gunicorn.service inside the backend folder. Fill in the correct parts (your_*) and place it in you /etc/systemd/system/ and then\n    `sudo systemctl start gunicorn.service`\n5. Check if everything worked with `sudo systemctl status gunicorn.service`\n6. If everything looks fine then `sudo systemctl enable gunicorn.service`\n7. For the frontend put the contents of the release folder inside the folder you will be serving \n8. Make sure server.py has the correct CORS policy (line 102)\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnarcode%2Flivecoders-mapping-on-the-fly-ccu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnarcode%2Flivecoders-mapping-on-the-fly-ccu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnarcode%2Flivecoders-mapping-on-the-fly-ccu/lists"}