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
| {"browser":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36","version":"0.0.6","createDate":1739592807164,"bookmarks":[{"children":[{"title":"Bookmarks","url":"chrome://bookmarks/"},{"children":[{"title":"SourceForge - Download, Develop and Publish Free Open Source Software","url":"http://sourceforge.net/"},{"title":"SitePoint – Learn HTML, CSS, JavaScript, PHP, Ruby & Responsive Design","url":"http://www.sitepoint.com/"},{"title":"InfoQ - 促进软件开发领域知识与创新的传播","url":"http://www.infoq.com/cn/"},{"title":"DailyJS: A JavaScript Blog","url":"http://dailyjs.com/"},{"title":"②ality – JavaScript and more","url":"http://www.2ality.com/"},{"dateLastUsed":1669720128296,"title":"Medium","url":"https://medium.com/"},{"dateLastUsed":1722685041226,"title":"36氪_让创业更简单","url":"http://36kr.com/"},{"title":"V8 JavaScript Engine","url":"http://v8project.blogspot.hk/"},{"title":"The Changelog - Open source moves fast. Keep up.","url":"https://changelog.com/"},{"title": |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>SVG viewBox Attribute</title> | |
| <style type="text/css"> | |
| svg { | |
| border: 1px solid #aaa; | |
| } | |
| </style> |
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 fs = require('fs'); | |
| const tabGroups = require('./keptab_backup.json'); | |
| const groups = tabGroups.map((group) => { | |
| const tabs = group.tabs.map((tab) => `${tab.url} | ${tab.title}`); | |
| return tabs.join('\n'); | |
| }); | |
| const tab = groups.join('\n\n'); |
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 DEFAULT_TASK_LIMIT = 1; | |
| type Task = () => Promise<unknown>; | |
| enum AsyncTaskEvent { | |
| ADD = 'task:add', | |
| DONE = 'task:done', | |
| IDLE = 'idle', | |
| } |
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
| /** | |
| * @param {Date} date | |
| */ | |
| const formatTime = (date) => { | |
| return `${date.getMinutes()}:${date.getSeconds()} ${date.getMilliseconds()}`; | |
| }; | |
| async function connectToDB(url) { | |
| return new Promise((resolve) => { | |
| setTimeout(() => { |
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
| ##################################################### | |
| # ZoFE Original People On Action Events | |
| # By Kolyn | |
| ##################################################### | |
| namespace = original_people_on_action | |
| ### Remove district | |
| planet_event = { | |
| id = original_people_on_action.1 |
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 precedences = { | |
| Binary: 100, | |
| Logical: 10, | |
| Comma: 1, | |
| }; | |
| export function tokenize(expression: string) { | |
| const tokens = []; | |
| let current = 0; | |
| while (current < expression.length) { |
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
| function constructSchemaTree({ name, required, path }, schema, uiSchema = {}) { | |
| const { | |
| type, | |
| required: requiredProperties = [], | |
| properties, | |
| oneOf, | |
| anyOf, | |
| allOf, | |
| dependencies, | |
| items, |
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
| // from: https://github.com/webpack-contrib/mini-css-extract-plugin/blob/master/src/loader.js#L40 | |
| function evalModuleCode(loaderContext, code, filename) { | |
| const module = new NativeModule(filename, loaderContext); | |
| module.paths = NativeModule._nodeModulePaths(loaderContext.context); // eslint-disable-line no-underscore-dangle | |
| module.filename = filename; | |
| module._compile(code, filename); // eslint-disable-line no-underscore-dangle | |
| return module.exports; | |
| } |
NewerOlder