Skip to content

Instantly share code, notes, and snippets.

View khoimm92's full-sized avatar
🏠
Working from home

Khoi Ngo khoimm92

🏠
Working from home
View GitHub Profile
@khoimm92
khoimm92 / Testing in Magento 2.md
Created April 16, 2022 10:24 — forked from ProcessEight/Testing in Magento 2.md
M2: Notes on setting up PHPUnit and writing/troubleshooting tests in Magento 2
@khoimm92
khoimm92 / catalog_dump.sql
Last active October 1, 2021 06:23 — forked from markshust/catalog_dump.sql
magento2 dump all catalog tables
mysqldump -uUSER -p DATABASE catalog_category_entity catalog_category_entity_datetime catalog_category_entity_decimal catalog_category_entity_int catalog_category_entity_text catalog_category_entity_varchar catalog_category_product catalog_category_product_cl catalog_category_product_index catalog_category_product_index_replica catalog_category_product_index_store1 catalog_category_product_index_store1_replica catalog_category_product_index_tmp catalog_compare_item catalog_eav_attribute catalog_product_attribute_cl catalog_product_bundle_option catalog_product_bundle_option_value catalog_product_bundle_price_index catalog_product_bundle_selection catalog_product_bundle_selection_price catalog_product_bundle_stock_index catalog_product_category_cl catalog_product_entity catalog_product_entity_datetime catalog_product_entity_decimal catalog_product_entity_gallery catalog_product_entity_int catalog_product_entity_media_gallery catalog_product_entity_media_gallery_value catalog_product_entity_media_gallery_value_
@khoimm92
khoimm92 / 2019-https-localhost.md
Created August 7, 2021 11:03 — forked from cecilemuller/2019-https-localhost.md
How to create an HTTPS certificate for localhost domains

How to create an HTTPS certificate for localhost domains

This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.

Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).

@khoimm92
khoimm92 / README.md
Created April 17, 2021 04:26 — forked from e-cloud/README.md
Install mysql 8.0 on wsl
wget -c "https://gist.github.com/e-cloud/34acbefe0597a02f9a081a01eff6dd24/raw/3bad7148f60ab70659b0be14ef07b0bd4d019f62/install-mysql8-on-wsl.sh" install-mysql8-on-wsl.sh
chmod 740 install-mysql8-on-wsl.sh
./install-mysql8-on-wsl.sh
@khoimm92
khoimm92 / product.liquid
Created September 3, 2020 11:15 — forked from resistorsoftware/product.liquid
You Might Like This! Shopify Related Products App
<!--
* a simple HTML DOM element for rendering related products.
* Style with CSS to make the <ul> look like whatever you want.
* place this snippet in your product.liquid where you would like the related products to appear
-->
<div id="related-products-container">
<h1>YOU MIGHT LIKE THIS!</h1>
<div id="related">
<ul class="related">
@khoimm92
khoimm92 / curl.md
Created February 14, 2019 07:05 — forked from subfuzion/curl.md
curl POST examples

Common Options

-#, --progress-bar Make curl display a simple progress bar instead of the more informational standard meter.

-b, --cookie <name=data> Supply cookie with request. If no =, then specifies the cookie file to use (see -c).

-c, --cookie-jar <file name> File to save response cookies to.