{"id":31030959,"url":"https://github.com/drio/unboxing","last_synced_at":"2026-05-11T07:18:57.476Z","repository":{"id":309792753,"uuid":"1037585102","full_name":"drio/unboxing","owner":"drio","description":"Fractals with iterative functions","archived":false,"fork":false,"pushed_at":"2025-08-20T22:55:30.000Z","size":89286,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-21T00:28:04.072Z","etag":null,"topics":["art","c","fractals","generative-art","raylib","wasm"],"latest_commit_sha":null,"homepage":"https://drio.github.io/unboxing/","language":"JavaScript","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/drio.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-08-13T19:56:18.000Z","updated_at":"2025-08-20T23:35:59.000Z","dependencies_parsed_at":"2025-08-21T00:18:05.362Z","dependency_job_id":null,"html_url":"https://github.com/drio/unboxing","commit_stats":null,"previous_names":["drio/unboxing"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/drio/unboxing","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drio%2Funboxing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drio%2Funboxing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drio%2Funboxing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drio%2Funboxing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/drio","download_url":"https://codeload.github.com/drio/unboxing/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drio%2Funboxing/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275043664,"owners_count":25395591,"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-09-13T02:00:10.085Z","response_time":70,"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":["art","c","fractals","generative-art","raylib","wasm"],"created_at":"2025-09-13T23:56:17.917Z","updated_at":"2026-05-11T07:18:52.443Z","avatar_url":"https://github.com/drio.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Unboxing\n\n[![Deploy to GitHub Pages](https://github.com/drio/unboxing/actions/workflows/pages.yml/badge.svg)](https://github.com/drio/unboxing/actions/workflows/pages.yml)\n\n\u003cimg src=\"imgs/demo.2x.gif\"/\u003e\n\nA C (and webassembly) version of Danielle Navarro's [unboxing](https://blog.djnavarro.net/posts/2024-12-22_art-from-code-5/).\n\nSee the [live demo here](https://drio.github.io/unboxing/) for the webassembly version.\n\n### Usage\n\nTo run the c standalone version (c compiler necessary - I use clang).\n\n```sh\n$ make \n...\n$ ./unboxing \ncreate_fractal_image(): out screen points = 342298\nINFO: FILEIO: [fractal.png] File saved successfully\nINFO: FILEIO: [fractal.png] Image exported successfully\nImage saved to fractal.png\n$ open ./fractal.png\n```\n\nThe webassembly version (The Emscripten Compiler Frontend \"emcc\" is required):\n\n```sh\n$ make web; make web-serve\n...\nServing HTTP on 0.0.0.0 port 8787 (http://0.0.0.0:8787/) ...\n# And open that URL with your browser\n```\n\nYou can also generate a gallery:\n\n```sh\n$ cd gallery\n$ make clean \n$ make -j12 COUNT=12 # 12 images per pallete (run 12 targets in parallel)\n# And open the ./index.html with your browser\n```\n\n\n\n\n\u003cdiv style=\"display: flex;\"\u003e\n  \u003cimg src=\"imgs/fractal.big.webp\" width=\"300\"/\u003e\n  \u003cimg src=\"imgs/fractal.png\" width=\"300\"/\u003e\n  \u003cimg src=\"imgs/fractal.blue.png\" width=\"300\"/\u003e\n  \u003cimg src=\"imgs/fractal-blue-pink.png\" width=\"300\"/\u003e\n  \u003cimg src=\"imgs/palette_5_4.png\" width=\"300\"/\u003e\n  \u003cimg src=\"imgs/palette_4_8.png\" width=\"300\"/\u003e\n  \u003cimg src=\"imgs/fractal-grey-pink.png\" width=\"300\"/\u003e\n  \u003cimg src=\"imgs/palette_2_10.png\" width=\"300\"/\u003e\n  \u003cimg src=\"imgs/fractal-white.png\" width=\"300\"/\u003e\n\u003c/div\u003e\n\n### Load R env (for running the R version - testing purposes)\n\n```\nconda create -n r-env r-essentials r-base\nconda activate r-env\n```\n\n### References\n\n1. https://blog.djnavarro.net/posts/2024-12-22_art-from-code-5/\n\n```\n@online{navarro2024,\n  author = {Navarro, Danielle},\n  title = {Art from Code {V:} {Iterated} Function Systems},\n  date = {2024-12-22},\n  url = {https://blog.djnavarro.net/posts/2024-12-22_art-from-code-5/},\n  langid = {en}\n}\n```\n\n2. https://keithfrost.github.io/2025-08-08-frac5.html\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrio%2Funboxing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdrio%2Funboxing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrio%2Funboxing/lists"}