{"id":34539821,"url":"https://github.com/gemc/home","last_synced_at":"2026-06-01T05:31:20.277Z","repository":{"id":98894522,"uuid":"241390085","full_name":"gemc/home","owner":"gemc","description":null,"archived":false,"fork":false,"pushed_at":"2026-05-28T18:53:26.000Z","size":70922,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-05-28T20:24:53.891Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gemc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"license.md","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-02-18T15:00:53.000Z","updated_at":"2026-05-28T18:53:30.000Z","dependencies_parsed_at":"2025-01-15T21:50:47.279Z","dependency_job_id":"cc50245f-5793-4fe0-8fa5-78ac1edb915f","html_url":"https://github.com/gemc/home","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gemc/home","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gemc%2Fhome","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gemc%2Fhome/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gemc%2Fhome/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gemc%2Fhome/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gemc","download_url":"https://codeload.github.com/gemc/home/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gemc%2Fhome/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33762215,"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-06-01T02:00:06.963Z","response_time":115,"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":"2025-12-24T06:15:00.737Z","updated_at":"2026-06-01T05:31:20.272Z","avatar_url":"https://github.com/gemc.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"## GIF Demo Pipeline\n\nScripts in `scripts/asciinema/` record GEMC Python examples as terminal animations,\noptionally combine them with a screen-capture video, and produce a final looping GIF.\n\nFull documentation: [`scripts/asciinema/README.md`](scripts/asciinema/README.md)\n\n**Install dependencies:**\n\n```bash\nbrew install asciinema agg ffmpeg gifsicle\n```\n\n**Typical workflow:**\n\n```bash\n# 1. Record terminal typing + run of a GEMC example → .cast\n./scripts/asciinema/record_example.sh simple_flux\n\n# 2a. Convert .cast → .gif  (speed/fps/font set in configs/simple_flux.env)\n./scripts/asciinema/cast_to_gif.sh simple_flux\n\n# 2b. Convert a .mov screen capture → .gif\n./scripts/asciinema/mov_to_gif.sh ~/Desktop/demo.mov screen_demo 1200\n\n# 3. Concatenate both GIFs (auto-letterboxes to match heights)\n./scripts/asciinema/combine_gifs.sh simple_flux.gif screen_demo.gif combined 1200\n\n# 3b. (Optional) Append a PNG still at the end (vertically centred)\nH=$(ffprobe -v error -probesize 5000000 -analyzeduration 0 -select_streams v:0 -show_entries stream=height -of default=noprint_wrappers=1:nokey=1 combined.gif)\nffmpeg -y -nostdin -loop 1 -i logo.png -t 4 -vf \"fps=2,scale=1200:-1:flags=lanczos,pad=1200:${H}:(ow-iw)/2:(oh-ih)/2\" /tmp/png_clip.gif\ngifsicle combined.gif /tmp/png_clip.gif \u003e final.gif\n\n# 3c. (Optional) Trim to a maximum duration in seconds\n./scripts/asciinema/trim_gif.sh final 12\n\n# 4. Set infinite loop (no re-encode)\n./scripts/asciinema/set_infinite_loop.sh final\n```\n\nPer-example recording and GIF knobs live in `scripts/asciinema/configs/\u003cname\u003e.env`.\n\n---\n\n#### Link checker:\n\nhttps://validator.w3.org/checklink/\n\nhttps://www.deadlinkchecker.com/\n\n\n\n# Tabs in markdown.\n\n- the plugin read_file is installed in _plugins\n- the file tabs.html is in _includes\n\nThis will produce tabs, however not if gh-pages is used.\n\n```\n{% capture tab1 %}\n  {{ \"_documentation/databases/fields.md\" | read_file }}\n{% endcapture %}\n\n{% capture tab2 %}\n  {{ \"_documentation/databases/fields.md\" | read_file }}\n{% endcapture %}\n\n{% include tabs.html \n   id=\"example-tabs-2\"\n   count=2\n   tab1_title=\"First tab\"\n   tab1_content=tab1\n   tab2_title=\"Second tab\"\n   tab2_content=tab2\n%}\n\n```\n\n### Run Periodically:\n\n(put all these in a single script please)\n\n```\n./scripts/periodic.sh\n```\n\n\n---\n\n- [ICONS](https://feathericons.com)\n\n---\n\n## Gist:\n\nhttps://gist.github.com\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgemc%2Fhome","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgemc%2Fhome","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgemc%2Fhome/lists"}