Skip to content

Instantly share code, notes, and snippets.

@chenzhongchen27
chenzhongchen27 / agent loop
Created March 20, 2025 04:32 — 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
{
"version": 1,
"type": "API",
"entry": "sdkQueryAdd",
"last": "output",
"nodes": [
{
"name": "sdkQueryAdd",
"type": "DISPATCH.SDK_ADD",
"parameters": {
@chenzhongchen27
chenzhongchen27 / Git push deployment in 7 easy steps.md
Created July 10, 2018 07:42 — forked from thomasfr/Git push deployment in 7 easy steps.md
7 easy steps to automated git push deployments. With small and configurable bash only post-receive hook
@chenzhongchen27
chenzhongchen27 / git-deployment.md
Created July 9, 2018 10:23 — forked from noelboss/git-deployment.md
Simple automated GIT Deployment using Hooks

Simple automated GIT Deployment using GIT Hooks

Here are the simple steps needed to create a deployment from your lokal GIT repository to a server based on this in-depth tutorial.

How it works

You are developing in a working-copy on your local machine, lets say on the master branch. Most of the time, people would push code to a remote server like github.com or gitlab.com and pull or export it to a production server. Or you use a service like my Deepl.io to act upon a Web-Hook that's triggered that service.

@chenzhongchen27
chenzhongchen27 / INSTRUCTIONS.md
Created June 21, 2018 13:15 — forked from darklight721/INSTRUCTIONS.md
Using MobX with decorators in React Native

Using MobX with decorators in React Native

The following instructions should work with React Native v0.32:

  1. Install mobx libraries.

    npm install mobx --save
    npm install mobx-react --save
@chenzhongchen27
chenzhongchen27 / gb2312-utf8-convert.js
Created August 23, 2017 00:57 — forked from fwolf/gb2312-utf8-convert.js
Convert between gb2312 and utf8 using javascript
http://freecode-freecode.blogspot.com/2008/11/how-to-gbkgb2312-and-utf-8-encoding.html
GB2312UTF8 = {
Dig2Dec : function(s){
var retV = 0;
if(s.length == 4){
for(var i = 0; i < 4; i ++){
retV += eval(s.charAt(i)) * Math.pow(2, 3 - i);
}
return retV;
@chenzhongchen27
chenzhongchen27 / 0_reuse_code.js
Created August 20, 2017 03:36
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console