Skip to content

Instantly share code, notes, and snippets.

View 1MoreBuild's full-sized avatar
🖤
Attention

Haitian 1MoreBuild

🖤
Attention
  • TikTok
  • San Jose
  • 13:58 (UTC -07:00)
View GitHub Profile
@1MoreBuild
1MoreBuild / agent loop
Created March 18, 2025 20:52 — 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
@1MoreBuild
1MoreBuild / range.js
Created August 20, 2019 13:24
Use Array.from to implement range()
const range = (start, stop, step) => Array.from({length: (stop - start) / step + 1}, (_, i) => start + (i * step));
range(0, 4, 1);
// [0, 1, 2, 3, 4]
@1MoreBuild
1MoreBuild / git-tag-delete-local-and-remote.sh
Created July 9, 2019 15:54 — forked from mobilemind/git-tag-delete-local-and-remote.sh
how to delete a git tag locally and remote
# delete local tag '12345'
git tag -d 12345
# delete remote tag '12345' (eg, GitHub version too)
git push origin :refs/tags/12345
# alternative approach
git push --delete origin tagName
git tag -d tagName
.vscode-body {
font-size: 12px;
}
.vscode-body pre {
background-color: #f6f8fa !important;
}
.hljs-attr {
color: inherit;
}
.language-yaml .hljs-attr {
@1MoreBuild
1MoreBuild / texture.css
Created December 12, 2018 03:12
Create texture using just CSS
/* Until the section is loaded make it look like rows of 4:3 photos. */
background-color: #eee;
background-image:
linear-gradient(90deg, #fff 0, transparent 0, transparent 294px, #fff 294px, #fff),
linear-gradient(0deg, #fff 0, transparent 0, transparent 220px, #fff 220px, #fff);
background-size: 298px 224px;
background-position: 0 0, 0 -4px;