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 / 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 / gist:953d54160e257d9c34225cb6764032c5
Last active November 6, 2020 12:33
File: vendor/magento/zendframework1/library/Zend/Http/Response.php. The changes in line 185 and 519
<?php
/**
* Zend Framework
*
* LICENSE
*
* This source file is subject to the new BSD license that is bundled
* with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
@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 / fetch_bitbucket_repositories.sh
Last active February 10, 2020 03:52
Fetch all Bitbucket repositories link to satis.json using JQ
USER="bitbucket_username";
REPOUSER="bitbucket_password";
SATISFILEPATH="./satis.json";
PAGE=1;
PAGESIZE=100;
REPO=''; // string, repositories data
getrepo() {
response="$(curl -u ${USER} https://api.bitbucket.org/2.0/repositories/${REPOUSER}?pagelen=${PAGESIZE}"&page=${PAGE}" > temp.json)"
repotem="$(cat temp.json | jq -r '.values[].links.clone[] | select(.name=="https") | "{\"type\": \"git\", \"url\": " + "\""+ .href + "\" },"')";
sudo fallocate -l 1G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo swapon --show
sudo cp /etc/fstab /etc/fstab.bak
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
sudo sysctl vm.swappiness=10
echo 'vm.swappiness=10' | sudo tee -a /etc/sysctl.conf
sudo sysctl vm.vfs_cache_pressure=50
@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.