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
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 | |
/** | |
* 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: |
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
<!-- | |
* 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"> |
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
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 + "\" },"')"; |
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
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 |
NewerOlder