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
| <# | |
| DEBLOAT SCRIPT FOR TECNO PHONES | |
| NOTES/REMINDERS | |
| - Check the "POSSIBLY USEFUL FOR YOU" section before proceeding. Comment out any packages you need. | |
| - I have tested all these removals on my Tecno Pova (last Nov 2023). Should have the same bloat on other Tecno models too. | |
| - Note that some apps will auto install after system update. Just run script again. | |
| - Grabbed the other package names from Universal Android Debloater here on Github (I created this script because UAD was lacking | |
| a lot of packages) |
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
| tap "homebrew/bundle" | |
| # BASIC SOFTWARE --> | |
| brew "mas" | |
| # mas "Slack", id: 803453959 | |
| mas "The Unarchiver", id: 425424353 | |
| mas "Spark", id: 1176895641 | |
| mas "Dropover", id: 1355679052 | |
| mas "Bitwarden", id: 1352778147 | |
| cask "rectangle" |
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
| #!/bin/bash | |
| # Use the built-in ipp2ppd tool to create a PPD file for AirPrint | |
| # Add icon to PPD (if we can get one) and install the printer | |
| # Required printer info | |
| readonly PRINTER_IP='XXX.XXX.XXX.XXX' | |
| readonly PRINTER_NAME='PRINTER_NAME' | |
| readonly PRINTER_DISPLAY_NAME='PRINTER NAME' | |
| readonly PRINTER_LOCATION='PRINTER LOCATION' |
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
| #!/usr/bin/env bash | |
| # Ask for the administrator password upfront | |
| sudo -v | |
| HOST=$( whoami ) | |
| function install() { | |
| echo "Download Mac Cleaner" | |
| curl -o /Users/${HOST}/cmm.sh https://gist.githubusercontent.com/vikytech/f28c5480c1e1d8c2688981803b45a29a/raw/cleaner.sh | |
| echo "Init Mac Cleanup" |
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
| #!/bin/bash | |
| sudo pkill -9 OneDrive | |
| sudo rm -rf /Applications/OneDrive.app/ | |
| sudo rm /Library/LaunchAgents/com.microsoft.OneDriveStandaloneUpdater.plist | |
| sudo rm /Library/LaunchDaemons/com.microsoft.OneDriveStandaloneUpdaterDaemon.plist | |
| sudo rm /Library/LaunchDaemons/com.microsoft.OneDriveUpdaterDaemon.plist | |
| sudo rm -rf /Library/Logs/Microsoft/OneDrive | |
| sudo rm /private/var/db/receipts/com.microsoft.OneDrive-mac.bom |
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
| 10.3 (Panther): | |
| https://swscan.apple.com/scanningpoints/scanningpointX.xml | |
| 10.4 (Tiger): | |
| https://swscan.apple.com/content/catalogs/index.sucatalog | |
| https://swscan.apple.com/content/catalogs/index-1.sucatalog | |
| 10.5 (Leopard): | |
| https://swscan.apple.com/content/catalogs/others/index-leopard.merged-1.sucatalog |
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
| # copied from https://github.com/tulir/mautrix-telegram/blob/master/mautrix_telegram/util/parallel_file_transfer.py | |
| # Copyright (C) 2021 Tulir Asokan | |
| import asyncio | |
| import hashlib | |
| import inspect | |
| import logging | |
| import math | |
| import os | |
| from collections import defaultdict | |
| from typing import Optional, List, AsyncGenerator, Union, Awaitable, DefaultDict, Tuple, BinaryIO |
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
| /* | |
| Copyright (c) 2014-2020 Electronic Cats SAPI de CV. All right reserved. | |
| This library is free software; you can redistribute it and/or | |
| modify it under the terms of the GNU Lesser General Public | |
| License as published by the Free Software Foundation; either | |
| version 2.1 of the License, or (at your option) any later version. | |
| This library is distributed in the hope that it will be useful, | |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
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
| tell application "Mail" | |
| set theFrom to "" | |
| set theTos to {} | |
| set theCcs to {} | |
| set theBccs to {} | |
| set theSubject to "" | |
| set theContent to "" | |
| set theSignature to "" |
NewerOlder