Skip to content
View Genzer's full-sized avatar

Block or report Genzer

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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 Loading

  1. focus.sh focus.sh Public

    A simple CLI for keeping track of focuses.

    Shell 5 1

  2. termux-workspace-up termux-workspace-up Public

    Set up a workspace in Android Termux

    Shell

  3. curiosity curiosity Public

    List of my own curiosities

  4. grokhard/writing-code-comments grokhard/writing-code-comments Public

    This is a copy of antirez's "Writing system software: code comments"

  5. Quicker than typing cd .. Quicker than typing cd ..
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    #----------
    4
    # back
    5
    #   Goes back to parent directory quicker.
  6. Shorten an UUIDv4 by encoding in Base64 Shorten an UUIDv4 by encoding in Base64
    1
    import java.util.UUID;
    2
    import java.util.Base64;
    3
    import java.nio.ByteBuffer;
    4
    import java.nio.ByteOrder;
    5