Skip to content

Instantly share code, notes, and snippets.

View bobir01's full-sized avatar
๐Ÿ™ƒ
I may be slow to respond.

Bobir bobir01

๐Ÿ™ƒ
I may be slow to respond.
View GitHub Profile
@bobir01
bobir01 / excel2img.py
Created March 19, 2025 07:55
A python utility to convert Excel files directly to images without using PDF as an intermediary Works across platforms without requiring additional dependencies like Poppler
import os
import platform
import tempfile
from PIL import Image, ImageDraw, ImageFont
import openpyxl
from openpyxl.utils import get_column_letter
class ExcelToImage:
"""
A utility class to convert Excel files directly to images without using PDF as an intermediary
@bobir01
bobir01 / excel2img.py
Created March 19, 2025 07:55
A utility class to convert Excel files directly to images without using PDF as an intermediary Works across platforms without requiring additional dependencies like Poppler
import os
import platform
import tempfile
from PIL import Image, ImageDraw, ImageFont
import openpyxl
from openpyxl.utils import get_column_letter
class ExcelToImage:
"""
A utility class to convert Excel files directly to images without using PDF as an intermediary
@bobir01
bobir01 / prompt.txt
Created March 7, 2025 12:16
decompose prompt with few shot learning
# Task Decomposition Prompt
## Your Role
You are a specialized task decomposition agent within a multi-LLM thinking system. Your job is to analyze complex tasks and break them down into logical, manageable subtasks that can be distributed to different specialized LLMs.
## Instructions
1. Carefully analyze the provided complex task.
2. Decompose it into 3-5 distinct subtasks.
3. Ensure each subtask is:
- Focused on a single aspect of the problem