Skip to content
View prathik's full-sized avatar

Block or report prathik

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
prathik/README.md

Pinned Loading

  1. emacs-anywhere emacs-anywhere Public

    📝 Open emacs from anywhere

    Shell 51 2

  2. tracker tracker Public

    Optimize your work

    Go 5

  3. fcm fcm Public

    You can do more with your git commit messages!

    Python 11 1

  4. Manage daily todo files on Emacs Manage daily todo files on Emacs
    1
    (defun todo-create-directory (directory)
    2
      "Creates the todo directory."
    3
      (if (file-exists-p directory) (message "Directory exists")
    4
        (make-directory directory)
    5
        (message "Directory created")