Skip to content
View atoko's full-sized avatar
🦈
🧶💻
🦈
🧶💻

Highlights

  • Pro
Block or Report

Block or report atoko

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. gh-pages-snake gh-pages-snake Public

    HTML/JS snake game. Self hosted on GH pages.

    JavaScript

  2. Arduino-Dice-Board Arduino-Dice-Board Public

    (C++) Dice board software for use with the TM1637 7-Segment Display and the Arduino Uno.

    C++ 1 1

  3. 1999-neo4j-webflux 1999-neo4j-webflux Public

    Webflux implementation of a 1 to many relational graph API service via HTTP

    Java

  4. rust-tetris rust-tetris Public

    Tetris clone written in Rust, playable at https://atoko.github.io/rust-tetris/

    Rust 3

  5. briscas-functions briscas-functions Public

    Azure Functions implementation of my favorite coding exercise

    TypeScript

  6. socket-saga.js socket-saga.js
    1
    
                  
    2
    function* forwardEventsToReducer(channel) {
    3
        while (true) {
    4
            const action = yield take(channel);
    5
            yield put(action);