Skip to content

Instantly share code, notes, and snippets.

@euvl
euvl / agent loop
Created March 13, 2025 14:57 — 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
@khoantd
khoantd / agent loop
Created March 13, 2025 14:57 — 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
@jangia
jangia / test_spies.py
Created March 13, 2025 14:57
create_autospec – easily ensure that mocked objects are called correctly (Spies)
from unittest.mock import MagicMock, create_autospec
class MyCRMService:
def sync_user(self, *, first_name: str, last_name: str, email: str) -> None:
print("Calling MyCRM's REST API to send data there. That's slow and unreliable.")
class CreateUser:
def __init__(self, *, crm_service: MyCRMService) -> None:
<html><head><meta content="text/html; charset=UTF-8" http-equiv="content-type"><style type="text/css">ol{margin:0;padding:0}table td,table th{padding:0}.c1{color:#000000;font-weight:400;text-decoration:none;vertical-align:baseline;font-size:11pt;font-family:"Arial";font-style:normal}.c0{padding-top:0pt;padding-bottom:0pt;line-height:1.15;orphans:2;widows:2;text-align:left;height:11pt}.c2{padding-top:0pt;padding-bottom:0pt;line-height:1.15;orphans:2;widows:2;text-align:left}.c3{background-color:#ffffff;max-width:468pt;padding:72pt 72pt 72pt 72pt}.c6{background-color:#cc4125;color:#783f04}.c4{background-color:#45818e;color:#00ffff}.c5{background-color:#8e7cc3}.title{padding-top:0pt;color:#000000;font-size:26pt;padding-bottom:3pt;font-family:"Arial";line-height:1.15;page-break-after:avoid;orphans:2;widows:2;text-align:left}.subtitle{padding-top:0pt;color:#666666;font-size:15pt;padding-bottom:16pt;font-family:"Arial";line-height:1.15;page-break-after:avoid;orphans:2;widows:2;text-align:left}li{color:#000000;font-
@tenlifuirf241
tenlifuirf241 / Xfer Serum
Created March 13, 2025 14:56
Xfer Serum Crack
Xfer Serum Cracked
@choco-bot
choco-bot / 1.RegistrySnapshot.xml
Created March 13, 2025 14:56
taskinfo v10.0.0.3361678 - Passed - Package Tests Results
<?xml version="1.0" encoding="utf-8"?>
<registrySnapshot xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<user>S-1-5-21-2554630235-701135798-1881170629-1000</user>
<keys>
<key installerType="InnoSetup" displayName="TaskInfo 10.0.0.336" displayVersion="10.0.0.336">
<RegistryView>Registry64</RegistryView>
<KeyPath>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\TaskInfo 10_is1</KeyPath>
<DefaultValue />
<InstallLocation><![CDATA[C:\Program Files\Iarsn\TaskInfo 10.x\]]></InstallLocation>
<UninstallString><![CDATA["C:\Program Files\Iarsn\TaskInfo 10.x\uninst\unins000.exe" /SILENT]]></UninstallString>
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created March 13, 2025 14:56
Rimworld output log published using HugsLib
Log uploaded on Thursday, March 13, 2025, 3:56:06 PM
Loaded mods:
Prepatcher(zetrith.prepatcher): 0Harmony(2.3.3), 0PrepatcherAPI(1.2.0), 0PrepatcherDataAssembly(1.0.0), PrepatcherImpl(1.0.0), Prestarter(1.0.0)
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1)
Core(Ludeon.RimWorld): (no assemblies)
Royalty(Ludeon.RimWorld.Royalty): (no assemblies)
Ideology(Ludeon.RimWorld.Ideology): (no assemblies)
Biotech(Ludeon.RimWorld.Biotech): (no assemblies)
Possessed Weapons(BotchJob.PossessedWeapons): (no assemblies)
Use This Instead(Mlie.UseThisInstead)[mv:1.5.56]: UseThisInstead(av:1.0.0,fv:1.5.38), VersionFromManifest(0.0.0)
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created March 13, 2025 14:56
Rimworld output log published using HugsLib
Log uploaded on Thursday, March 13, 2025, 4:56:15 PM
Loaded mods:
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1)
Core(Ludeon.RimWorld): (no assemblies)
Biotech(Ludeon.RimWorld.Biotech): (no assemblies)
HugsLib(UnlimitedHugs.HugsLib)[ov:11.0.4]: 0Harmony(av:2.3.3,fv:1.2.0.1), HugsLib(av:1.0.0,fv:11.0.4)
Advanced Raiders (Continued)(Mlie.AdvancedRaiders)[mv:1.5.0]: AdvancedRaiders(av:1.0.0,fv:1.5.0), VersionFromManifest(0.0.0)
Active Harmony patches:
Building_TurretGun.IsValidTarget: post: AdvancedRaiders.TurretPatch.DontShootPawnsWithBlueScreenBelt
@jangia
jangia / test_stubs.py
Created March 13, 2025 14:55
create_autospec – easily ensure that mocked objects are called correctly (Stubs)
import time
from unittest.mock import MagicMock, create_autospec
class SentimentClassifier:
def predict(self, text: str) -> str:
# Imagine that prediction is taking a long time
time.sleep(5)
return "positive"
@HugsLibRecordKeeper
HugsLibRecordKeeper / output_log.txt
Created March 13, 2025 14:55
Rimworld output log published using HugsLib
Log uploaded on Thursday, March 13, 2025, 10:55:30 PM
Loaded mods:
Harmony(brrainz.harmony)[mv:2.3.1.0]: 0Harmony(2.3.3), HarmonyMod(2.3.1)
Core(Ludeon.RimWorld): (no assemblies)
Royalty(Ludeon.RimWorld.Royalty): (no assemblies)
Biotech(Ludeon.RimWorld.Biotech): (no assemblies)
HugsLib(UnlimitedHugs.HugsLib)[ov:11.0.4]: 0Harmony(av:2.3.3,fv:1.2.0.1), HugsLib(av:1.0.0,fv:11.0.4)
Allow Tool(UnlimitedHugs.AllowTool): AllowTool(av:3.6.0,fv:3.13.1)
Active Harmony patches: