zm: fold one morezr: reduce one foldzM: fold allzR: unfold all
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // User module | |
| const enum UserActionTypes { | |
| UserRequest = 'user/user-request', | |
| UserSuccess = 'user/user-success', | |
| UserFailure = 'user/user-failure', | |
| RoleRequest = 'user/role-request', | |
| RoleSuccess = 'user/role-success', | |
| RoleFaliure = 'user/role-failure', | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { createServer } from 'service-mocker' | |
| import createRoutes from './routes/' | |
| const server = createServer() | |
| createRoutes(server.router) | |
| // ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ########## Install Shadowsocks ########## | |
| # <https://github.com/shadowsocks/shadowsocks/blob/master/README.md> | |
| apt-get update | |
| apt-get install python-pip -y | |
| pip install shadowsocks |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const glob = require('glob') | |
| const path = require('path') | |
| const execSync = require('child_process').execSync | |
| const savedDir = path.join(__dirname, '__exported_svg') | |
| execSync(`mkdir -p ${savedDir}`) | |
| const count = glob.sync(`${__dirname}/*/`) | |
| .map(typePath => { |