Skip to content

Instantly share code, notes, and snippets.

View technusm1's full-sized avatar
😁
Working from home

Maheep Kumar technusm1

😁
Working from home
  • SAS Nagar, Punjab, India
  • 17:00 (UTC +05:30)
View GitHub Profile
@technusm1
technusm1 / logger_to_md.py
Created March 22, 2024 05:43
Tinymesh stuff
import argparse
import readline
def main(log_file_path, markdown_file_path):
print("Enter a command (af <text>, as <text>, cc, cl) or press Ctrl + D to exit.")
while True:
try:
user_input = input("\n\033[94m> \033[0m")
except EOFError:
print("\033[91m\nExiting the application.\033[0m")