Skip to content

Instantly share code, notes, and snippets.

{
"version": "0.9.7",
"description": "A faster way to navigate your filesystem",
"homepage": "https://github.com/ajeetdsouza/zoxide",
"license": "MIT",
"architecture": {
"64bit": {
"url": "https://github.com/ajeetdsouza/zoxide/releases/download/v0.9.7/zoxide-0.9.7-x86_64-pc-windows-msvc.zip",
"hash": "d2f7640e977170d58c3f7057a9ecbfe6597de1a3dbbd992fb2fea1255e6098e4"
}
@HUMORCE
HUMORCE / agent loop
Created March 10, 2025 10:30 — 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
@HUMORCE
HUMORCE / test.ps1
Created July 11, 2023 02:13
Tests of get-manifest()
. "$(scoop prefix scoop)\lib\core.ps1"
$main_bucket = Resolve-Path "$(scoop prefix scoop)\..\..\..\buckets\main\bucket"
scoop uninstall app appd localmanifest ag
clear-host
# create manifest for test
$manifest_1 = '{
"version": "1",
@HUMORCE
HUMORCE / scoop.wsb
Last active January 21, 2024 16:18
<Configuration>
<MappedFolders>
<MappedFolder>
<HostFolder>%USERPROFILE%\scoop\apps\scoop\current</HostFolder>
<SandboxFolder>C:\Users\WDAGUtilityAccount\scoop\apps\scoop\current</SandboxFolder>
<ReadOnly>true</ReadOnly>
</MappedFolder>
<MappedFolder>
<HostFolder>%USERPROFILE%\scoop\buckets</HostFolder>
<SandboxFolder>C:\Users\WDAGUtilityAccount\scoop\buckets</SandboxFolder>
@HUMORCE
HUMORCE / trackers-converter.ps1
Created June 10, 2022 17:58
Convert BitTorrent Trackers Uri from domain to IP via PowerShell.
[CmdletBinding()]
param (
[Parameter()]
[string]
$Trackers,
[Parameter()]
[string]
$Server
)
# useage:
# scoop-import <exported_list_file>
param(
$exported
)
$apps = (
Get-Content -Path $exported | Select-String '(?<app>.*)\s\(v:(?<version>.*)\)\s\[(?<bucket>.*)\]' -AllMatches |
Foreach-Object {$_.Matches} |
Foreach-Object {($_.Groups["bucket"].Value)+"/"+($_.Groups["app"].Value)}