{"id":19483510,"url":"https://github.com/librity/ignite_sum_over_list","last_synced_at":"2026-05-16T10:31:46.090Z","repository":{"id":99704081,"uuid":"345866618","full_name":"librity/ignite_sum_over_list","owner":"librity","description":"Rocket Seat - Ignite - Elixir - Demo program that sums all elements of a list.","archived":false,"fork":false,"pushed_at":"2022-02-25T12:05:45.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-25T17:46:13.083Z","etag":null,"topics":["demo","elixir","ignite","rocketseat"],"latest_commit_sha":null,"homepage":"","language":"Elixir","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/librity.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}},"created_at":"2021-03-09T03:05:50.000Z","updated_at":"2022-02-25T12:05:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"fb99e36f-89aa-4df3-ba22-1e5281a70a9e","html_url":"https://github.com/librity/ignite_sum_over_list","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/librity/ignite_sum_over_list","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_sum_over_list","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_sum_over_list/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_sum_over_list/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_sum_over_list/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/librity","download_url":"https://codeload.github.com/librity/ignite_sum_over_list/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/librity%2Fignite_sum_over_list/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33098787,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T04:41:52.686Z","status":"ssl_error","status_checked_at":"2026-05-16T04:41:52.009Z","response_time":115,"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":["demo","elixir","ignite","rocketseat"],"created_at":"2024-11-10T20:15:23.384Z","updated_at":"2026-05-16T10:31:46.059Z","avatar_url":"https://github.com/librity.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SumOverList\n\nA demo Elixir program that sums over a list.\nPart of Rocket Seat Ignite, an online Elixir and Phoenix bootcamp.\n\n## Bash Commands\n\n```bash\n$ mix new project_name\n$ mix compile\n$ mix test\n$ mix format\n$ iex -S mix\n```\n\n## Elixir Commands\n\n```elixir\n\u003e SumOverList.call([1, 2, 34, 5])\n42\n\u003e Factorial.compute(6)\n720\n\u003e Enum.map(%{a: 1, b: 2}, fn x -\u003e x end)\n[a: 1, b: 2]\n\u003e Enum.map(%{a: 1, b: 2}, fn {key, value} -\u003e {key, value} end)\n[a: 1, b: 2]\n\u003e Enum.map(%{a: 1, b: 2}, fn {_key, value} -\u003e value end)\n[1, 2]\n```\n\n## Docs\n\n- https://hexdocs.pm/elixir/master/Kernel.html\n- https://hexdocs.pm/elixir/master/Integer.html\n- https://hexdocs.pm/elixir/master/patterns-and-guards.html\n- https://hexdocs.pm/elixir/master/Enum.html\n\n- https://github.com/elixir-lang/ex_doc\n- https://hex.pm/docs/publish\n- https://hexdocs.pm\n\n## Resources\n\n- https://elixirschool.com/en/lessons/basics/enum/\n- https://elixir-examples.github.io/examples/get-type-of-variable\n- https://github.com/elixir-examples/elixir-examples.github.io\n- https://elixir-examples.github.io/\n\n- https://elixircasts.io/elixir-guards\n- https://inquisitivedeveloper.com/lwm-elixir-24/\n- https://kapeli.com/cheat_sheets/Elixir_Guards.docset/Contents/Resources/Documents/index\n- https://elixirtoolbox.dev\n\n- https://github.com/elixir-lang/elixir/issues/6547\n- https://marketplace.visualstudio.com/items?itemName=iampeterbanjo.elixirlinter\n\n- https://shulhi.com/2016/11/16/piping-to-second-argument-in-elixir/\n- https://stackoverflow.com/questions/36730122/elixir-multiple-arguments-with-the-pipe-operator\n- http://www.binarywebpark.com/elixir-pipe-capture-operators/\n\n- https://dino.codes/posts/tail-call-optimization-in-elixir/\n- https://blog.appsignal.com/2019/03/19/elixir-alchemy-recursion.html\n- https://culttt.com/2016/06/06/understanding-recursion-tail-call-optimisation-elixir/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibrity%2Fignite_sum_over_list","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flibrity%2Fignite_sum_over_list","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flibrity%2Fignite_sum_over_list/lists"}