Skip to content
View nikto-b's full-sized avatar
🦾
Running tea binary
🦾
Running tea binary
  • Newt.team
  • Moscow, Russia

Block or report nikto-b

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 Loading

  1. avr-api Public

    API library for Atmel AVR [Project abandoned]

    C++ 3

  2. Bash one-liner that summs integers d...
    1
    #it's important to have space after last integer
    2
    echo "1 2 3 4 5 " | tee a | sed 's/\s/\/3\n/g' | bc -l | sed 's/00//g' | sed 's/.$//g' | nl | grep -v '\.' | awk '{print $1}' > b; export A=$(cat a | sed 's/\s/\n/g'); export B=$(cat b); for i in $B; do echo -e "$A" | sed "${i}q;d" ; done | tr '\n' ' ' | rev | cut -c 2- | rev | sed 's/\s/+/g' | bc
  3. fantastic-train Public

    Library for a searching shortest way in a field of obstacles [Project abandoned]

    C++

  4. avr-gcc automatic makefile
    1
    BUILD_DIR=Build
    2
    SRC_DIR=Src
    3
    INC_DIR=Inc
    4
    CC=avr-gcc
    5
    LD=avr-ld
  5. mcuterminaltranslator Public

    Library for parsing commands for communication of MCUs [Project abandoned]

    C++

  6. mdprint
    1
    from rich.console import Console
    2
    from rich.markdown import Markdown
    3
    
                  
    4
    
                  
    5
    if __name__ == "__main__":