Skip to content
View ashaindlin's full-sized avatar

Block or report ashaindlin

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

    a twitterbot for whales

    JavaScript 6

  2. Calculate how far along you are in a... Calculate how far along you are in a knitting project, assuming linear rate of increases
    1
    #!/usr/bin/env python3
    2
    
                  
    3
    def calculate(castOn: int, bindOff: int, totalRows: int, curRow: int):
    4
        incPerRow = (bindOff - castOn)/totalRows; # stitches increased per row
    5
        totalStitches = sum([castOn + incPerRow*r for r in range(1, totalRows)])