Skip to content
View AdminBenni's full-sized avatar

Highlights

  • Pro

Block or report AdminBenni

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

    C++

  2. MoodD3 MoodD3 Public

    Final project for RU's computer graphics course

    Python

  3. SeamCarving SeamCarving Public

    C++

  4. SFML-car-party-game SFML-car-party-game Public

    C++

  5. p5GameTools p5GameTools Public

    p5 Game Tools Is A Small Pet Project Between Me And My Friend To Make Some Tools For Us To Practise Programming And Have Fun By Making Browser Games

    JavaScript

  6. Subnet Maker That I Made Subnet Maker That I Made
    1
    from blib import indexOfNth
    2
    
                  
    3
    def binIpToDec(binIp):
    4
        return str(int(binIp[0:8], 2)) + "." + str(int(binIp[8:16], 2)) + "." + str(int(binIp[16:24], 2)) + "." + str(int(binIp[24:], 2))
    5