Skip to content

Instantly share code, notes, and snippets.

@DominicWatts
DominicWatts / stripe-test-card-details.md
Created March 27, 2024 14:16
Stripe Test Card Details
BRAND NUMBER CVC DATE
Visa 4242424242424242 Any 3 digits Any future date
Visa (debit) 4000056655665556 Any 3 digits Any future date
Mastercard 5555555555554444 Any 3 digits Any future date
Mastercard (2-series) 2223003122003222 Any 3 digits Any future date
Mastercard (debit) 5200828282828210 Any 3 digits Any future date
Mastercard (prepaid) 5105105105105100 Any 3 digits Any future date
American Express 378282246310005 Any 4 digits Any future date
American Express 371449635398431 Any 4 digits Any future date
@DominicWatts
DominicWatts / elavon-test-card-details.md
Last active March 27, 2024 14:19
Elavon test card details
Card Card Number CardType Response from Opayo 3D Secure Response from Opayo CV2 Value DATE
VISA 4929000000006 VISA Y 123 Any future date
VISA 4929000005559 VISA N 123 Any future date
VISA 4929000000014 VISA U 123 Any future date
VISA 4929000000022 VISA E 123 Any future date
VISA Corporate 4484000000002 VISA N 123 Any future date
VISA Debit 4462000000000003 DELTA

Enable MSI

php bin/magento module:status | grep Magento_Inventory | grep -v List | grep -v None | grep -v -e '^$' | xargs php bin/magento module:enable

Disable MSI

php bin/magento module:status | grep Magento_Inventory | grep -v List | grep -v None | grep -v -e '^$' | xargs php bin/magento module:disable

@DominicWatts
DominicWatts / windows-pageant-startup-with-keys.md
Created February 6, 2024 20:13
windows pageant startup with keys

startup app

Win + R

Run box

shell:startup

Copy Pageant shortcut

@DominicWatts
DominicWatts / debug-template-binding-errors-for-KnockoutJS.md
Created December 19, 2023 14:38
debug template binding errors for KnockoutJS

what data is available at a certain scope

<div data-bind="text: ko.toJSON($data)"></div>

more readable version

``

@DominicWatts
DominicWatts / onvert .ppk-key-to-OpenSSH-key-under-Linux.md
Created November 29, 2023 16:46
How to convert .ppk key to OpenSSH key under Linux?
sudo apt-get install putty-tools
puttygen key.ppk -O private-openssh -o key
@DominicWatts
DominicWatts / center-align-image-in-container.md
Created November 21, 2023 15:48
center-align-image-in-container
<div style="position:relative; width: 100%; aspect-ratio:1; display:block; overflow:hidden;">
    <img src="blah" style="height: 100%; width:auto; position: absolute; left: 50%; top: 50%; transform:translate(-50%,-50%)"/>
</div>
@DominicWatts
DominicWatts / product-repository-cheatsheet.md
Created October 13, 2023 09:42
magento 2 product repository cheatsheet

Product Repository Cheatsheet

Import Statement

use Magento\Catalog\Api\ProductRepositoryInterface;
use Magento\Catalog\Api\Data\ProductInterfaceFactory;

Constructor

@DominicWatts
DominicWatts / product-collection-cheatsheet.md
Last active November 24, 2023 10:30
magento 2 product collection cheatsheet

Product Collection Cheatsheet

Import statement

use Magento\Catalog\Model\ResourceModel\Product\CollectionFactory as ProductCollectionFactory;

/**
 * @var ProductCollectionFactory
 */
@DominicWatts
DominicWatts / magento-2-category-collection-cheatsheet.md
Created October 13, 2023 09:40
magento 2 category collection cheatsheet

Category Collection Cheatsheet

Import statement

use Magento\Catalog\Model\ResourceModel\Category\CollectionFactory as CategoryCollectionFactory;

/**
 * @var CategoryCollectionFactory
 */