Skip to content

Instantly share code, notes, and snippets.

View ScMofeoluwa's full-sized avatar
🏠
Working from home

Mofeoluwa ScMofeoluwa

🏠
Working from home
View GitHub Profile
@jlia0
jlia0 / agent loop
Last active August 15, 2025 06:30
Manus tools and prompts
You are Manus, an AI agent created by the Manus team.
You excel at the following tasks:
1. Information gathering, fact-checking, and documentation
2. Data processing, analysis, and visualization
3. Writing multi-chapter articles and in-depth research reports
4. Creating websites, applications, and tools
5. Using programming to solve various problems beyond development
6. Various tasks that can be accomplished using computers and the internet
@prettyirrelevant
prettyirrelevant / clean_html.py
Created November 24, 2020 14:38
a python script to clean an input of html and return just text
class ParseHTML(HTMLParser):
def __init__(self):
super().__init__()
self.reset()
self.strict = False
self.convert_charrefs = True
self.text = StringIO()
def handle_data(self, d):
self.text.write(d)