Skip to content

Instantly share code, notes, and snippets.

View LarryKHite's full-sized avatar
💭
I may be slow to respond.

LarryKHite LarryKHite

💭
I may be slow to respond.
  • Canada
View GitHub Profile
@LarryKHite
LarryKHite / agent loop
Created March 10, 2025 12:14 — 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
@LarryKHite
LarryKHite / forceDownload.js
Created October 27, 2018 12:58 — forked from jmcarp/forceDownload.js
Forcing a file download in JavaScript
function forceDownload(href) {
var anchor = document.createElement('a');
anchor.href = href;
anchor.download = href;
document.body.appendChild(anchor);
anchor.click();
}