{"id":20182503,"url":"https://github.com/hunar4321/mandelbrot","last_synced_at":"2026-04-02T18:43:49.962Z","repository":{"id":46788299,"uuid":"515663716","full_name":"hunar4321/mandelbrot","owner":"hunar4321","description":"Simple Mandelbrot","archived":false,"fork":false,"pushed_at":"2024-06-17T12:04:31.000Z","size":195,"stargazers_count":62,"open_issues_count":1,"forks_count":11,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-19T07:45:32.639Z","etag":null,"topics":["fractals","generative-art","javascript","mandelbrot","python"],"latest_commit_sha":null,"homepage":"","language":"Python","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/hunar4321.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-07-19T16:34:32.000Z","updated_at":"2025-06-25T21:35:22.000Z","dependencies_parsed_at":"2025-08-19T07:31:31.173Z","dependency_job_id":"096b7baa-255b-4c6e-b34e-3cec8da9ee18","html_url":"https://github.com/hunar4321/mandelbrot","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hunar4321/mandelbrot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hunar4321%2Fmandelbrot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hunar4321%2Fmandelbrot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hunar4321%2Fmandelbrot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hunar4321%2Fmandelbrot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hunar4321","download_url":"https://codeload.github.com/hunar4321/mandelbrot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hunar4321%2Fmandelbrot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31313235,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T12:59:32.332Z","status":"ssl_error","status_checked_at":"2026-04-02T12:54:48.875Z","response_time":89,"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":["fractals","generative-art","javascript","mandelbrot","python"],"created_at":"2024-11-14T02:38:52.887Z","updated_at":"2026-04-02T18:43:49.927Z","avatar_url":"https://github.com/hunar4321.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Simple Mandelbrot\n\nThis is the bare minimal code necessary to produce Mandelbrot set from scratch without using external libraries or complex numbers (written in both JavaScript and Python).\n\nThe following educational video provides the code walkthrough and illustrates it is relevance to Wolfram's Physics Project: https://youtu.be/mzizK6ms-gY\n\n```html\n  \u003ccanvas id=\"gardun\" width=\"1000\" height=\"1000\"\u003e\u003c/canvas\u003e\n  \u003cscript\u003e\n  m = document.getElementById(\"gardun\").getContext(\"2d\")\n  atom = function(x,y,c){m.fillStyle=c; m.fillRect(x,y,3,3)}\n  for(y=1; y\u003c1000; y++){\n    for(x=1; x\u003c1000; x++){\n      dx = (x-500)/2000-0.12\n      dy = (y-500)/2000-0.82\n      a = dx\n      b = dy\n      for(t=1; t\u003c200; t++){\n        d = (a*a)-(b*b)+dx\n        b = 2*(a*b)+dy\n        a = d\n        H = d\u003e200\n        if(H){ atom(x,y,\"rgb(\"+ t*3 +\",\"+ t +\",\"+ t*0.5 +\")\"); break }\n  }}}\n  \u003c/script\u003e\n```\n\n![](mendlbort.JPG)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhunar4321%2Fmandelbrot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhunar4321%2Fmandelbrot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhunar4321%2Fmandelbrot/lists"}