Gallery Ecommerce with Lightslider & Simple add css
A Pen by Feri Agus Susanto on CodePen.
<div class="stone-slider owl-carousel"> | |
<div class="item"> | |
<div class="image"><img src="https://www.gettyimages.ie/gi-resources/images/Homepage/Hero/UK/CMS_Creative_164657191_Kingfisher.jpg" alt=""></div> | |
<a href="https://www.gettyimages.ie/gi-resources/images/Homepage/Hero/UK/CMS_Creative_164657191_Kingfisher.jpg">Click Image</a> | |
</div> | |
</div> |
valet stop | |
brew unlink [email protected] [email protected] [email protected] [email protected] [email protected] | |
brew link --force --overwrite [email protected] | |
brew services start [email protected] | |
composer global update | |
rm -f ~/.config/valet/valet.sock | |
valet install | |
# 1: tar (create uncompressed archive) all files and directories in the current working directory recursively into an uncompressed tarball | |
tar cvf filename.tar * | |
# 2: Untar (extract uncompressed archive) all files and directories in an uncompressed tarball recursively into the current working directory | |
tar xvf filename.tar | |
# 3: tar (create gzipped archive) all files and directories in the current working directory recursively into a tarball compressed with gzip | |
tar cvzf filename.tar.gz * | |
# 4: Untar (extract gzipped archive) all files and directories in a tarball compressed with gzip recursively into the current working directory |
Gallery Ecommerce with Lightslider & Simple add css
A Pen by Feri Agus Susanto on CodePen.
# obvisously your elastic is crashing on indexation, so allow it some more space to do the indexing with this curl call: | |
curl -XPUT -H "Content-Type: application/json" http://localhost:9200/_all/_settings -d '{"index.blocks.read_only_allow_delete": null}' |
curl -O https://files.magerun.net/n98-magerun2.phar | |
--- | |
# netz98 magerun CLI tools for Magento 2 | |
 | |
The n98 magerun cli tools provides some handy tools to work with Magento | |
from command line. |
mysql -h localhost -P 3306 --protocol=tcp -u root |
<!--------------------CSS------------------------------------------------------------------------------------------> | |
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.9.0/slick.css"> | |
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.9.0/slick-theme.css"> | |
<!---------------------------------------------------------------------------------------------------------------- > | |
<!--------------------jQuery-----------------------------------------------------------> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | |
<!-------------------------------------------------------------------------------------> | |
<!-------------------JS----------------------------------------------------------------> |
brew install --cask michaelvillar-timer |
var start = Date.now(); | |
function output(variable){console.log(variable);} | |
setInterval(function() { | |
var delta = Date.now() - start; // milliseconds elapsed since start | |
output(Math.floor(delta / 1000)); // in seconds | |
// alternatively just show wall clock time: | |
output(new Date().toUTCString()); | |
}, 1000); // update about every second |