#!/bin/bash
echo "Quick analysis incident $1"
echo "\nTCP connections from specific IPs"
cat $1/*tcp-connections.txt | grep -v 127.0.0.1 | awk '{print $5}' | cut -d ':' -f1 | sort | uniq -c | sort -n | tail -n 20
echo "\nCPU-intensive processes:"
sort -nk4 $1/*process-list.txt | tail -n3
This file contains 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
Removed dependency on MSI modules | |
@package smile/elasticsuite | |
@link https://github.com/Smile-SA/elasticsuite/issues/1222 | |
diff --git src/module-elasticsuite-catalog/Model/Product/Indexer/Fulltext/Datasource/InventoryData.php src/module-elasticsuite-catalog/Model/Product/Indexer/Fulltext/Datasource/InventoryData.php | |
index ca4557d..f07e059 100644 | |
--- src/module-elasticsuite-catalog/Model/Product/Indexer/Fulltext/Datasource/InventoryData.php | |
+++ src/module-elasticsuite-catalog/Model/Product/Indexer/Fulltext/Datasource/InventoryData.php | |
@@ -14,7 +14,6 @@ |
This file contains 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
// ==UserScript== | |
// @name Fitchef to MyFitnessPal | |
// @version 0.1 | |
// @description Voeg link toe aaan Fitchef.nl om een recept aan MyFitnessPal toe te voegen | |
// @author Peter Jaap Blaakmeer | |
// @match https://fitchef.nl/weekschema/*/* | |
// @grant GM_addStyle | |
// @grant GM_xmlhttpRequest | |
// ==/UserScript== |
This file contains 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 | |
// Run with the URL pointing to a require-config.js as the first argument; | |
// php identify.php http://magento2demo.firebearstudio.com/pub/static/frontend/Magento/luma/en_US/requirejs-config.js | |
$content = file_get_contents($argv[1]); | |
preg_match_all( | |
'/(?P<quote>\'|")(?P<extension>[[:alnum:]]+_[[:alnum:]]+)\/js\/.+?(?P=quote)/m', | |
$content, | |
$matches |
This file contains 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 | |
# Move duplicate themes files to new theme | |
OLDVENDOR="Vendor" | |
NEWVENDOR="Newvendor" | |
NEWTHEMENAME="Themename" | |
find app/design/frontend ! -empty -type f -exec md5sum {} + | sort | uniq -w32 -dD | cut -d' ' -f3 | while read a; | |
do |
This file contains 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
DELETE FROM core_config_data WHERE config_id IN (SELECT config_id | |
FROM (SELECT DUPS.* | |
FROM core_config_data ORIG | |
LEFT JOIN core_config_data DUPS | |
ON ORIG.path = DUPS.path AND (ORIG.value = DUPS.value OR (ORIG.value IS NULL AND DUPS.value IS NULL)) | |
AND DUPS.scope != "default" AND DUPS.scope_id != 0 | |
WHERE ORIG.scope = "default" | |
AND ORIG.scope_id = 0 | |
AND DUPS.path IS NOT NULL) as tmp) |
This file contains 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 | |
set_time_limit(0); | |
//THIS SCRIPT JUST INITIALS THE PROFILE TO BE RUN VIA MAGENTO ADMIN "RUN PROFILE IN POPUP". Its the same thing as click just via this file that you can run via cron | |
$profileId = $argv[1]; // SYSTEM - IMPORT/EXPORT - DATAFLOW PROFILES PROFILES <-- you need to go into your magento admin and grab the exact profile ID | |
require_once 'app/Mage.php'; | |
umask(0); | |
Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID); |
This file contains 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
find app/design/frontend/Limburgia/default -maxdepth 1 -type d | grep -vE "web|etc|i18n|media" | |
app/design/frontend/Limburgia/default | |
app/design/frontend/Limburgia/default/Magento_Customer | |
app/design/frontend/Limburgia/default/Magento_ConfigurableProduct | |
app/design/frontend/Limburgia/default/Magento_LayeredNavigation | |
app/design/frontend/Limburgia/default/Magento_ReCaptchaCustomer | |
app/design/frontend/Limburgia/default/Magento_Wishlist | |
app/design/frontend/Limburgia/default/Magento_Checkout | |
app/design/frontend/Limburgia/default/Magento_CatalogSearch | |
app/design/frontend/Limburgia/default/Magento_Tax |
This file contains 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
{ | |
"exception":{ | |
"values":[ | |
{ | |
"type":"ReferenceError", | |
"value":"Unable to process binding \"if: function(){return isMsrpApplicable($row()) }\"\nMessage: isMsrpApplicable is not defined", | |
"stacktrace":{ | |
"frames":[ | |
{ | |
"colno":30, |
Put this in your ~/.zshrc
. Be sure to have your API token in IMGIX_API_TOKEN
;
export IMGIX_API_TOKEN=yourtokenhere
purge() {
URL=$1
echo "Purging ${URL}"