Skip to content
View atomgomba's full-sized avatar

Organizations

@get-bridge
Block or Report

Block or report atomgomba

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. othello othello Public

    Othello game for Android

    Kotlin

  2. hurok hurok Public

    Yet another UDF loop implementation for KMP

    Kotlin

  3. ekezet-rs ekezet-rs Public

    Source code of my personal site

    Rust

  4. orangebox orangebox Public

    A Cleanflight/Betaflight blackbox log parser written in Python 3.

    Python 12 4

  5. Finish/cancel GCode snippet for 3D p... Finish/cancel GCode snippet for 3D printers
    1
    M104 S0; Set Hot-end to 0C (off)
    2
    M140 S0; Set bed to 0C (off)
    3
    G91; Relative positioning
    4
    G0 Z50; Move +50 units on Z
    5
    G1 Y180 F9000; Feed the bed forward making removal easy
  6. A way to generate a tiny bit more us... A way to generate a tiny bit more useful random numbers on Arduino
    1
    long rand(int min, int max) {
    2
      long result;
    3
      for (int i = 0; i < analogRead(A0); i++)
    4
      {
    5
        randomSeed(analogRead(A0));