Skip to content
View pringon's full-sized avatar
🤖
Beep, boop!
🤖
Beep, boop!

Organizations

@HackaSoton

Block or report pringon

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. macbook-dotfiles macbook-dotfiles Public

    A `dotfile` is a `file` prefixed with a `dot`

    Vim Script 1

  2. linux-dotfiles linux-dotfiles Public

    A `dotfile` is a `file` prefixed with a `dot`

    Emacs Lisp 1

  3. email-agent email-agent Public

    Python

  4. express-auto-route express-auto-route Public template

    TypeScript 8 5

  5. Order Book Order Book
    1
    from copy import deepcopy
    2
    from datetime import datetime
    3
    import heapq
    4
    from uuid import uuid4, UUID
    5
    
                  
  6. spreadsheet.py spreadsheet.py
    1
    from collections import deque
    2
    from typing import Callable, Optional, Union
    3
    
                  
    4
    CellValue = Union[str, int]
    5
    class Spreadsheet: