Skip to content
View SidharthArya's full-sized avatar
❤️
❤️

Block or report SidharthArya

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 is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. modular-config.el modular-config.el Public

    Organize your emacs config into small manageable modules

    Emacs Lisp 27 3

  2. Sway Windows Manager Alt Tab behavior Sway Windows Manager Alt Tab behavior
    1
    #!/usr/bin/env python3
    2
    
                  
    3
    import sys
    4
    import json
    5
    import subprocess
  3. comp-ide.el comp-ide.el Public

    A simple competitive programming IDE

    Emacs Lisp 16 2

  4. SSH into google colab SSH into google colab
    1
    #CODE
    2
    
                  
    3
    #Generate root password
    4
    import random, string
    5
    password = ''.join(random.choice(string.ascii_letters + string.digits) for i in range(20))