Skip to content

Instantly share code, notes, and snippets.

@temtomk
temtomk / agent loop
Created June 12, 2025 09:07 — forked from jlia0/agent loop
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
@temtomk
temtomk / stock.py
Created April 26, 2021 08:07
free_onboarding_project
import pandas as pd
import os
# csv 파일 읽어오기
# index_col = 0으로 설정해서 Symbol이 있는 열을 index로 지정
stock_price = pd.read_csv('./srcs/stock.adj_close.csv', index_col=0)
# 숫자로 변환할 수 없는 데이터를 NaN 값으로 변경
stock_price = stock_price.apply(pd.to_numeric, errors='coerce')
🌞 Morning 18 commits ██▍░░░░░░░░░░░░░░░░░░ 11.8%
🌆 Daytime 41 commits █████▋░░░░░░░░░░░░░░░ 27.0%
🌃 Evening 85 commits ███████████▋░░░░░░░░░ 55.9%
🌙 Night 8 commits █░░░░░░░░░░░░░░░░░░░░ 5.3%