Skip to content

Instantly share code, notes, and snippets.

View ngtrphuong's full-sized avatar

Phương Nguyễn ngtrphuong

  • HCM - Viet Nam
View GitHub Profile
@renschni
renschni / Manus_report.md
Last active May 7, 2025 00:40
In-depth technical investigation into the Manus AI agent, focusing on its architecture, tool orchestration, and autonomous capabilities.

I wrote an in-depth research prompt to conduct a GPT-Deep-Research on the Manus topic, seeking to replicate it with currently available open source tools. This is the result:

TLDR: Manus AI Agent Report

Manus is an autonomous AI agent built as a wrapper around foundation models (primarily Claude 3.5/3.7 and Alibaba's Qwen). It operates in a cloud-based virtual computing environment with full access to tools like web browsers, shell commands, and code execution. The system's key innovation is using executable Python code as its action mechanism ("CodeAct" approach), allowing it to perform complex operations autonomously. The architecture consists of an iterative agent loop (analyze → plan → execute → observe), with specialized modules for planning, knowledge retrieval, and memory management. Manus uses file-based memory to track progress and store information across operations. The system can be replicated using open-source components including CodeActAgent (a fine-tuned Mistral model), Docker for sandbox

@jlia0
jlia0 / agent loop
Last active May 8, 2025 13:56
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
@spotnic
spotnic / Windows-11-activation-keys.md
Last active May 7, 2025 17:38 — forked from rvrsh3ll/windows-keys.md
Windows Product Keys

NOTE

These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.

Looking to buy Windows 11 Pro keys?

Head over to krbkeys.com. They are trustworthy, and their customer service is top-notch. If you run into any trouble activating Windows 11, their team is ready to help, and also they have a great Trustpilot score.

For a direct purchase of a Windows 11 Pro key, use this link: https://www.krbkeys.com/product/windows-11-professional-cd-key-digital-download/

@ngtrphuong
ngtrphuong / ABC.md
Created April 16, 2024 03:40 — forked from jdnichollsc/ABC.md
The Job Interview Guide

The Job Interview Guide 💼

And English is a Work in Progress ⌛

@robin-collins
robin-collins / userscript.js
Last active January 12, 2025 02:04
Claude.ai-ChatDownloader - userscript to download claude.ai chats to a text file.
// ==UserScript==
// @name Claude.ai-ChatDownloader
// @namespace http://tampermonkey.net/
// @version 1.9
// @description Download all chats from Claude.ai as a single file
// @match https://claude.ai/*
// @match https://claude.ai/chats
// @match https://claude.ai/chat/*
// @grant GM_setValue
// @grant GM_getValue
@disler
disler / standards_for_true_ai_coding_assistants.md
Created January 21, 2024 16:30
Standards For True AI Coding Assistants

What is an AI Coding Assistant?

If the coding assistant can't run ITERATIVE CRUD on ALL of your code, it's not a True AI Coding Assistant (TACA)

Standards for TRUE AI Coding Assistants

  1. Must work on existing codebases
  2. Must have a file context mechanism
  3. Must be iteratively controllable
@robin-collins
robin-collins / windows-11-activation.txt
Created October 7, 2023 11:05
Windows 11 Activation
# How to Activate Windows 11 for FREE
## Step 1: Click on the Start button, search for “cmd“, and click on “Run as Administrator“.
## Step 2: Type: slmgr /ipk [KEY]
Replace the [KEY] with your key as per your windows version as mentioned below.
The following is the list of Windows 11 Volume license keys.
* Home: TX9XD-98N7V-6WMQ6-BX7FG-H8Q99
@juanmc2005
juanmc2005 / diart_whisper.py
Last active April 26, 2025 12:22
Code for my tutorial "Color Your Captions: Streamlining Live Transcriptions with Diart and OpenAI's Whisper". Available at https://medium.com/@juanmc2005/color-your-captions-streamlining-live-transcriptions-with-diart-and-openais-whisper-6203350234ef
import logging
import os
import sys
import traceback
from contextlib import contextmanager
import diart.operators as dops
import numpy as np
import rich
import rx.operators as ops
Windows 11 Home Product Key
4BKNH-D2VBJ-HQCHQ-47RR2-4RG3V
B4J96-7NXHJ-DG92W-WX887-JQKQV
3HP6K-9N8Q6-BY7VG-P8KCW-WB47H
9NW26-K7PD9-WJBTX-9XTCW-9TPHH
9QJFK-MNQ2Y-KJG2J-P7GPD-G83DV
Windows 11 Pro Product key
XGWR7-NX2JM-CKF9Q-BYGVP-6JF9M
69HCR-4NTVC-K94M3-GRBWP-YKMQB

Build a flutter app in WSL2

Install, build and debug a flutter app in WSL2 (Windows Subsystem for Linux).

Linux setup

Install Java

To install the JDK, execute the following command, which will also install the JRE:

sudo apt install default-jdk

Add the following two lines to /etc/profile (setting the JAVA_HOME environment variable):