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
| Browser MCP Server Comparison | |
| Tool Count | |
| - browsermcp: 12 tools | |
| - playwright: 21 tools | |
| Detailed Comparison | |
| Core Navigation |
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 | |
| source /home/lucas/.bash_profile | |
| CONTAINER=$1 | |
| MCP=$2 | |
| cd $PROJECT_PATH | |
| # If WORKING_DIR is set, change to that directory inside the container |
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 | |
| ES_HOST="http://localhost:9200" # Replace with your ES host | |
| INDEX_PATTERN="magento2_default_catalog_product_*" | |
| # Get all aliases (used indexes) === | |
| echo "Fetching all aliases in use..." | |
| USED_INDEXES=$(curl -s "$ES_HOST/_cat/aliases?h=index" | sort | uniq) | |
| # Get all indexes matching the pattern === |
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
| <?php | |
| namespace ProxiBlue\MigrateTasks\Console\Command; | |
| use Magento\Framework\App\ResourceConnection; | |
| use Magento\Framework\Console\Cli; | |
| use Magento\Framework\DB\Adapter\AdapterInterface; | |
| use Magento\Framework\Exception\LocalizedException; | |
| use Magento\Framework\Serialize\Serializer\Json; | |
| use Symfony\Component\Console\Command\Command; |
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/with-contenv bashio | |
| # shellcheck shell=bash | |
| # ref: https://github.com/alexbelgium/hassio-addons/discussions/1467#discussioncomment-11699236 | |
| # this script will look for your immich database backup file placed in path | |
| # /share/postgresql_immich_restore.sql | |
| # | |
| # it must not be gzipped. | |
| # requires: Terminal add-on to place files, a way you knwo how to place your .sql on HAOS server. | |
| # I used an external USB I mounted. |
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
| # | |
| # udev rule | |
| # Mount USB drive to the media directory using the partition name as mount point | |
| # | |
| # Description: | |
| # Created for Home Assistant OS, this rule mounts any USB drives | |
| # into the Hassio media directory (/mnt/data/supervisor/media). | |
| # When a USB drive is connected to the board, the rule creates one directory | |
| # per partition under the media directory. The newly created partition is named | |
| # as the partition name. If the partition does not have a name, then the following |
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
| <?php | |
| namespace Uptactics\PpsTheme\Test\Unit; | |
| use PHPUnit\Framework\TestCase; | |
| class CronListTest extends TestCase | |
| { | |
| private $filePath; |
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/env bash | |
| # Requires HTTPie and JQ | |
| ORG_NAME='xxxxxx' | |
| API_KEY='xxxxxx' | |
| SLEEP_S=0.5 | |
| # End of variables that need to change | |
| package_url="https://app.repman.io/api/organization/${ORG_NAME}/package" |
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
| commands: | |
| N98\Magento\Command\System\CheckCommand: | |
| php: | |
| required-extensions: | |
| - bcmath | |
| - ctype | |
| - dom | |
| - fileinfo | |
| - json | |
| - mbstring |
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
| Add the following to plugins/index.js | |
| module.exports = (on, config) => { | |
| on('task', { | |
| log (message) { | |
| console.log(message) | |
| return null | |
| } | |
| }) | |
| } |
NewerOlder