{"id":20761900,"url":"https://github.com/james-p-d/erlangdump","last_synced_at":"2026-05-23T03:35:24.670Z","repository":{"id":170649442,"uuid":"223348812","full_name":"James-P-D/ErlangDump","owner":"James-P-D","description":"Dumping ground for miscellaneous Erlang scripts","archived":false,"fork":false,"pushed_at":"2020-09-26T09:08:43.000Z","size":44,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-11T17:24:08.569Z","etag":null,"topics":["erlang"],"latest_commit_sha":null,"homepage":null,"language":"Erlang","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/James-P-D.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}},"created_at":"2019-11-22T07:34:39.000Z","updated_at":"2020-09-26T09:08:45.000Z","dependencies_parsed_at":"2024-08-20T12:17:06.112Z","dependency_job_id":null,"html_url":"https://github.com/James-P-D/ErlangDump","commit_stats":null,"previous_names":["james-p-d/erlangdump"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/James-P-D/ErlangDump","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/James-P-D%2FErlangDump","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/James-P-D%2FErlangDump/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/James-P-D%2FErlangDump/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/James-P-D%2FErlangDump/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/James-P-D","download_url":"https://codeload.github.com/James-P-D/ErlangDump/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/James-P-D%2FErlangDump/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33381989,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-23T01:21:08.577Z","status":"online","status_checked_at":"2026-05-23T02:00:05.530Z","response_time":53,"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":["erlang"],"created_at":"2024-11-17T10:27:24.346Z","updated_at":"2026-05-23T03:35:19.660Z","avatar_url":"https://github.com/James-P-D.png","language":"Erlang","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ErlangDump\nDumping ground for miscellaneous [Erlang](https://www.erlang.org/) scripts\n\n## Basics\n\nMostly after watching [Derek Banas' Erlang Tutorial on YouTube](https://www.youtube.com/watch?v=IEhwc2q1zG4) or viewing [Erlang by Example](https://erlangbyexample.org/).\n\n* [hello.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/hello.erl)\n* [variables.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/variables.erl)\n* [maths_and_logic.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/maths_and_logic.erl)\n* [if_and_case.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/if_and_case.erl)\n* [strings.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/strings.erl)\n* [tuples.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/tuples.erl)\n* [listtest.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/listtest.erl)\n* [type_conv.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/type_conv.erl)\n* [recursion.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/recursion.erl)\n* [mapping.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/mapping.erl)\n* [records.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/records.erl)\n* [higher_order_functions.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/higher_order_functions.erl)\n* [file_io.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/file_io.erl)\n* [error_handling.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/error_handling.erl)\n* [macros.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/macros.erl)\n* [concurrency.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/concurrency.erl)\n\n## Misc\n\n* [substringtest.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/substringtest.erl) Searching for substrings.. used when creating [WordSearch application](https://github.com/James-P-D/WordSearch)\n* [arraytest.erl](https://github.com/James-P-D/ErlangDump/blob/master/src/Basics/arraytest.erl) Couple of tests for creating arrays. Only used lists when learning language.\n\n## Programming Erlang by Joe ArmStrong\n\n![ProgrammingErlangBook](https://github.com/James-P-D/ErlangDump/blob/master/programming_erlang_book.jpg)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjames-p-d%2Ferlangdump","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjames-p-d%2Ferlangdump","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjames-p-d%2Ferlangdump/lists"}