Skip to content

Instantly share code, notes, and snippets.

@manuelzi
manuelzi / agent loop
Created March 10, 2025 14:08 — 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
@manuelzi
manuelzi / private_fork.md
Created January 30, 2025 03:49 — forked from 0xjac/private_fork.md
Create a private fork of a public repository

The repository for the assignment is public and Github does not allow the creation of private forks for public repositories.

The correct way of creating a private frok by duplicating the repo is documented here.

For this assignment the commands are:

  1. Create a bare clone of the repository. (This is temporary and will be removed so just do it wherever.)

git clone --bare [email protected]:usi-systems/easytrace.git

@manuelzi
manuelzi / Search my gists.md
Created April 22, 2024 14:15 — forked from santisbon/Search my gists.md
How to #search gists

Enter this in the search box along with your search terms:

Get all gists from the user santisbon.
user:santisbon

Find all gists with a .yml extension.
extension:yml

Find all gists with HTML files.
language:html

@manuelzi
manuelzi / migrate-npm-to-pnpm.md
Created March 15, 2024 00:21 — forked from mmyoji/migrate-npm-to-pnpm.md
Migrate npm to pnpm
@manuelzi
manuelzi / semantic-commit-messages.md
Created November 10, 2023 12:28 — forked from joshbuchea/semantic-commit-messages.md
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@manuelzi
manuelzi / SelfSignWindowsExecutable.md
Created November 2, 2023 15:07 — forked from PaulCreusy/SelfSignWindowsExecutable.md
How to self-sign a Windows executable created with Pyinstaller

How to self-sign a Windows package created with Pyinstaller

This document aims to explain all the necessary steps to self-sign a Windows executable.

⚠️ Warning
Some of the commands provided need to be completed. The fields to complete are indicated by the characters < and >.

Prerequisites

Please make sure to match all the prerequisite before starting the process of signing the package.

Setup

  • Create a developer account with Apple
  • Download and install X-Code from the Apple App Store
  • Open and run X-Code app and install whatever extras it requires
  • Open the preferences pane (cmd+,)
    • click the + in the lower right corner
    • choose Apple ID
    • enter your apple ID and password
@manuelzi
manuelzi / 1_ecs_note.md
Created September 21, 2023 20:25 — forked from ejlp12/1_ecs_note.md
ECS Best Practices Notes
@manuelzi
manuelzi / source-cfg.sublime-syntax
Created March 11, 2023 16:48 — forked from Steffo99/source-cfg.sublime-syntax
Source .cfg files syntax highlighting for Sublime Text 3
%YAML 1.2
---
# See http://www.sublimetext.com/docs/3/syntax.html
name: Source game config
file_extensions:
- cfg
scope: source.source-config
contexts:
main:
- match: '\s*\/\/'
@manuelzi
manuelzi / SpinlockTestTests.swift
Created February 2, 2023 09:52 — forked from steipete/SpinlockTestTests.swift
Updated for Xcode 8, Swift 3; added os_unfair_lock
//
// SpinlockTestTests.swift
// SpinlockTestTests
//
// Created by Peter Steinberger on 04/10/2016.
// Copyright © 2016 PSPDFKit GmbH. All rights reserved.
//
import XCTest