Skip to content
View chintanpokhrel's full-sized avatar

Block or report chintanpokhrel

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. Removing comments from C source - regex Removing comments from C source - regex
    1
    def remove_comments(csrc):
    2
      '''Remove comments from a c source file'''
    3
      content = csrc[:]
    4
      content = remove_block_comments(content)
    5
      content = remove_singleline_comments(content)
  2. send-to-phone send-to-phone Public

    A chrome extension to send selected text to your phone using a qr code.

    JavaScript

  3. emails emails Public

    Dataviz of my mailbox

    Python

  4. freecodecamp-challenges freecodecamp-challenges Public

    Code challenges from freecodecamp

    HTML

  5. PyTrain PyTrain Public

    Trying to design a python training session for entry - mid level programmers aged 24-34 who are new to Python

    Python

  6. timeout-queue timeout-queue Public

    A queue to call your callbacks with a uniform delay

    JavaScript