{"id":41733903,"url":"https://github.com/bartossh/bzz","last_synced_at":"2026-01-24T23:46:03.334Z","repository":{"id":215438277,"uuid":"738886214","full_name":"bartossh/bzz","owner":"bartossh","description":"Bzz is to bzzzzzz!","archived":false,"fork":false,"pushed_at":"2024-03-17T16:23:53.000Z","size":5828,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-03-17T17:35:07.461Z","etag":null,"topics":["ai","c","educational","fun","game","nn","raylib"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bartossh.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}},"created_at":"2024-01-04T09:20:16.000Z","updated_at":"2024-01-18T14:03:19.000Z","dependencies_parsed_at":"2024-03-17T17:42:25.736Z","dependency_job_id":null,"html_url":"https://github.com/bartossh/bzz","commit_stats":null,"previous_names":["bartossh/bzz"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bartossh/bzz","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bartossh%2Fbzz","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bartossh%2Fbzz/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bartossh%2Fbzz/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bartossh%2Fbzz/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bartossh","download_url":"https://codeload.github.com/bartossh/bzz/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bartossh%2Fbzz/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28739127,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T22:12:27.248Z","status":"ssl_error","status_checked_at":"2026-01-24T22:12:10.529Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["ai","c","educational","fun","game","nn","raylib"],"created_at":"2026-01-24T23:46:02.385Z","updated_at":"2026-01-24T23:46:03.330Z","avatar_url":"https://github.com/bartossh.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BZZ\n\nBzz is to bzzzzz. Teach your bee to bzzzzz safely.\n\n![BZZ Logo](https://github.com/bartossh/bzz/blob/main/artefacts/logo.png)\n\n\n## Build / install dependencies\n\nBZZ depends on:\n \n- [Raylib](https://www.raylib.com/index.html) - raylib is a simple and easy-to-use library to enjoy videogames programming.\n\n### Raylib - build from source OSX developemnt\n\nDownload version [4.0.0](https://github.com/raysan5/raylib/releases/tag/4.0.0) -\u003e source code.\n\n```sh\ntar -xf raylib-4.0.0.tar.gz\n```\n\n```sh\ncd raylib-4.0.0\n```\n\n```sh\ncmake -Wno-dev .\n```\n\n```sh\ncmake --build .\n```\n\nFinally:\n\nCopy `libraylib.a`, `raudio.h`, `raylib.h`, `raymath.h`, `rlgl.h` to `./lib/` folder in this repo root.\n\n\n### Raylib - Web Assembly compilation with emscripten\n\nFollow instruction from [Emscripten web page](https://emscripten.org/docs/getting_started/downloads.html).\n\nIf you are using OSX just brew the Emscripten `brew install emscripten`.\n\nBuild raylib using emscripten compiler.\n\n```sh\nemcc -c rcore.c -Os -Wall -DPLATFORM_WEB -DGRAPHICS_API_OPENGL_ES2\nemcc -c rshapes.c -Os -Wall -DPLATFORM_WEB -DGRAPHICS_API_OPENGL_ES2\nemcc -c rtextures.c -Os -Wall -DPLATFORM_WEB -DGRAPHICS_API_OPENGL_ES2\nemcc -c rtext.c -Os -Wall -DPLATFORM_WEB -DGRAPHICS_API_OPENGL_ES2\nemcc -c rmodels.c -Os -Wall -DPLATFORM_WEB -DGRAPHICS_API_OPENGL_ES2\nemcc -c utils.c -Os -Wall -DPLATFORM_WEB\nemcc -c raudio.c -Os -Wall -DPLATFORM_WEB\n\nemar rcs libraylib.a rcore.o rshapes.o rtextures.o rtext.o rmodels.o utils.o raudio.o\n```\n\nCopy `libraylib.a`, `raudio.h`. `raylib.h`, `raymath.h`, `rlgl.h` to `./wasm_lib/` folder in this repo root.\n\nYou are ready to go.\n\n## Development\n\nThis software is still in the beginning of development stage. Keep your expectations low.\n\n### Testing \n\n - When creating new files, add this  `*.c` files into `TFILES` in `makefile`.\n - Create tests in `*_test.c` file, and add this file into `TFILES` in `makefile`.\n - Run command: `make test`, to run all the tests.\n - Run command: `make memcheck`, tu run memcheck tests.\n\n### Running in development mode.\n \n - Add new `*.c` files with new functionalities to `CFILES` in `makefile`.\n - For development run command: `make run`.\n\n## Build\n\n### OS PLATFORM\n\n- To build for your current machine OS and architecture run command: `make build`.\n- Now only MAC OS is supported, this will change.\n\n### WASM\n\n- To build for Wab Assembly run command: `make wasm`.\n- To check build `cd` in to `web_build` directory and run `python -m http.server 8080` go in your browser to [http://localhost:8080](http://localhost:8080)\n\n\n## Thanks and inspiration\n\n - Thanks to [rexim](https://github.com/rexim) for Tsoding/nn.h -\u003e `https://github.com/tsoding/nn.h/blob/master/nn.h` an amazing Neural Network library and great streaming on how to code and hack things in `C`. I was truly inspired. I will blend this library in to my code simply because of the project requirements.\n - [Lingon Studios](https://twitter.com/lingonstudios) for high level description of graphical design.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbartossh%2Fbzz","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbartossh%2Fbzz","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbartossh%2Fbzz/lists"}