Skip to content

Instantly share code, notes, and snippets.

View tanmaychimurkar's full-sized avatar
:electron:
Steady Progress

Tanmay Chimurkar tanmaychimurkar

:electron:
Steady Progress
View GitHub Profile
@tanmaychimurkar
tanmaychimurkar / normcore-llm.md
Created August 22, 2023 08:44 — forked from veekaybee/normcore-llm.md
Normcore LLM Reads
@tanmaychimurkar
tanmaychimurkar / search_and_move_files.py
Created October 28, 2022 07:05
A short python script to recursively search for files starting with a name and a format, and then move them to a destination folder
import os
import shutil
import logging
logging.basicConfig(format='%(levelname)s:%(name)s: %(message)s (%(asctime)s; %(filename)s:%(lineno)d)',
datefmt='%Y-%m-%d %H:%M:%S',
level=logging.INFO)
LOGGER = logging.getLogger(__name__)