Skip to content

Instantly share code, notes, and snippets.

View peterjaap's full-sized avatar

Peter Jaap Blaakmeer peterjaap

  • elgentos ecommerce solutions / Blaakmeer Webdevelopment
  • Groningen, the Netherlands
View GitHub Profile
@peterjaap
peterjaap / Elastic-no-msi.patch
Created October 22, 2022 14:35
Patch elastic suite without msi
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 @@
@peterjaap
peterjaap / fitchef-to-myfitnesspal.user.js
Created September 12, 2022 18:15
Fitchef to MyFitnessPal Greasemonkey script
// ==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==
@peterjaap
peterjaap / identify.php
Last active September 6, 2023 08:12
Identify used Magento 2 frontend extensions in a Luma install
<?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
@peterjaap
peterjaap / move-duplicate-theme-files.sh
Created September 22, 2021 11:55
Magento 2 - move duplicate themes files to new theme
#!/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
@peterjaap
peterjaap / clean-core-config-data-duplicate-values.sql
Last active June 7, 2022 08:49
Delete core_config_data values where the fallback value in scope 0 is the same
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)
@peterjaap
peterjaap / run-profile.php
Created May 22, 2021 18:42
Run Magento export profile CLI
<?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);
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
{
"exception":{
"values":[
{
"type":"ReferenceError",
"value":"Unable to process binding \"if: function(){return isMsrpApplicable($row()) }\"\nMessage: isMsrpApplicable is not defined",
"stacktrace":{
"frames":[
{
"colno":30,
@peterjaap
peterjaap / hypernode-incident-quick-analysis.md
Created December 18, 2020 18:39
Hypernode incident quick analysis

Quick analysis script to check an incident.

Script

#!/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
@peterjaap
peterjaap / purge-imgix.md
Created December 16, 2020 13:17
Purge Imgix through bash function

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}"