{"id":19546540,"url":"https://github.com/lebrancconvas/fuzzbizz","last_synced_at":"2026-06-11T02:31:03.051Z","repository":{"id":246553086,"uuid":"821462882","full_name":"lebrancconvas/FuzzBizz","owner":"lebrancconvas","description":"When \"FizzBuzz\" is too boring for practicing your development skill. So it became \"FuzzBizz\".  ","archived":false,"fork":false,"pushed_at":"2024-06-28T18:34:09.000Z","size":9,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-14T11:29:20.484Z","etag":null,"topics":["fizzbuzz","fizzbuzz-go","software-engineering","tdd","tdd-go","tdd-golang","test-driven-development"],"latest_commit_sha":null,"homepage":"","language":"Go","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/lebrancconvas.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":"2024-06-28T15:39:12.000Z","updated_at":"2024-06-29T14:35:13.000Z","dependencies_parsed_at":"2024-06-28T17:11:19.704Z","dependency_job_id":"2f18bf40-dd00-4457-8f61-13ff9322659d","html_url":"https://github.com/lebrancconvas/FuzzBizz","commit_stats":null,"previous_names":["lebrancconvas/dark-fizzbuzz","lebrancconvas/futzbizz"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lebrancconvas/FuzzBizz","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lebrancconvas%2FFuzzBizz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lebrancconvas%2FFuzzBizz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lebrancconvas%2FFuzzBizz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lebrancconvas%2FFuzzBizz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lebrancconvas","download_url":"https://codeload.github.com/lebrancconvas/FuzzBizz/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lebrancconvas%2FFuzzBizz/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34180147,"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-11T02:00:06.485Z","response_time":57,"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":["fizzbuzz","fizzbuzz-go","software-engineering","tdd","tdd-go","tdd-golang","test-driven-development"],"created_at":"2024-11-11T03:45:53.963Z","updated_at":"2026-06-11T02:31:03.035Z","avatar_url":"https://github.com/lebrancconvas.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FuzzBizz (Dark FizzBuzz) \r\n\r\n## Overview\r\nFizzBuzz is the stupid game about people try to call the number, but if the number meets some condition, \r\nThey will call it \"Fizz\" or \"Buzz\" or \"FizzBuzz\" instead. \r\n\r\nbut it's too boring for me. Everywhere use FizzBuzz this, FizzBuzz that so decide to make \"FuzzBizz\" the dark side version \r\nof \"FizzBuzz\". \r\n\r\n## Traditional FizzBuzz\r\n- If the number can't divide by 3 or 5 -\u003e Return the number\r\n- If the number can divide by 3 (but not divide by 5) -\u003e Return \"Fizz\"\r\n- If the number can divide by 5 (but not divide by 3) -\u003e Return \"Buzz\"\r\n- If the number can divide by both 3 and 5 -\u003e Return \"FizzBuzz\"\r\n\r\n### Example of Traditional FizzBuzz \r\n- 1 -\u003e 1\r\n- 2 -\u003e 2  \r\n- 3 -\u003e Fizz  \r\n- 4 -\u003e 4  \r\n- 5 -\u003e Buzz\r\n- 6 -\u003e Fizz \r\n- 7 -\u003e 7\r\n- 8 -\u003e 8\r\n- 9 -\u003e Fizz\r\n- 10 -\u003e Buzz\r\n- 11 -\u003e 11\r\n- 12 -\u003e Fizz\r\n- 13 -\u003e 13 \r\n- 14 -\u003e 14 \r\n- 15 -\u003e FizzBuzz \r\n- 16 -\u003e 16 \r\n- 17 -\u003e 17 \r\n\r\n## FuzzBizz (Dark FizzBuzz)\r\n- If the number can divide by 3 or 5 -\u003e Return the number\r\n- If the number can't divide by 3 (but can divide by 5) -\u003e Return \"Fuzz\"\r\n- If the number can't divide by 5 (but can divide by 3) -\u003e Return \"Bizz\"\r\n- If the number can't divide by both 3 and 5 -\u003e Return \"FuzzBizz\"\r\n\r\n### Example of FuzzBizz (Dark FizzBuzz) \r\n- 1 -\u003e FuzzBizz\r\n- 2 -\u003e FuzzBizz\r\n- 3 -\u003e Bizz \r\n- 4 -\u003e FuzzBizz\r\n- 5 -\u003e Fuzz\r\n- 6 -\u003e Bizz\r\n- 7 -\u003e FuzzBizz\r\n- 8 -\u003e FuzzBizz\r\n- 9 -\u003e Bizz\r\n- 10 -\u003e Fuzz\r\n- 11 -\u003e FuzzBizz\r\n- 12 -\u003e Bizz\r\n- 13 -\u003e FuzzBizz\r\n- 14 -\u003e FuzzBizz\r\n- 15 -\u003e 15 \r\n- 16 -\u003e FuzzBizz \r\n- 17 -\u003e FuzzBizz\r\n\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flebrancconvas%2Ffuzzbizz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flebrancconvas%2Ffuzzbizz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flebrancconvas%2Ffuzzbizz/lists"}