brew install fish
Set it as default macOS shell https://stackoverflow.com/questions/453236/how-to-set-my-default-shell-on-mac/20506404#20506404
| { | |
| "name": "trntv/yii2-starter-kit", | |
| "description": "Yii2 Starter Kit Application Template", | |
| "keywords": [ | |
| "yii2", | |
| "framework", | |
| "start", | |
| "cms", | |
| "application template", | |
| "yii2 advanced" |
brew install fish
Set it as default macOS shell https://stackoverflow.com/questions/453236/how-to-set-my-default-shell-on-mac/20506404#20506404
| /** | |
| * Address Auto Fill based on Postcode | |
| * | |
| * Author: | |
| * Rafael Patro <rafaelpatro@gmail.com> | |
| * | |
| * Intallation: | |
| * Add a CMS Static Block applying the entire script below. | |
| * Add a Widget to pages with address forms. | |
| * |
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
| { | |
| "name": "mortenson/example", | |
| "minimum-stability": "dev", | |
| "authors": [ | |
| { | |
| "name": "Samuel Mortenson", | |
| "email": "[email protected]" | |
| } | |
| ], | |
| "repositories": [ |
| docker exec -it container-name redis-cli FLUSHALL |
| # robots.txt for Magento 1.9.x & 2.x / v1.7 2023-01-30 / [email protected] | |
| # - original version from 2015 for 1.9.x, but these rules are OK for M2 as well | |
| # - edited in 2017 to add filter query parameter disallow samples + some wildcards | |
| # - edited in 2018 to add query params blocking to Yandex as named User-agent does not read * | |
| # - edited in 2023 to remove unneeded stuff (license.txt, crawl-delay) and make all rules use */ prefix | |
| # based on: | |
| # https://inchoo.net/ecommerce/ultimate-magento-robots-txt-file-examples/ | |
| # https://www.hypernode.com/nl/blog/magento-robots-txt/ | |
| # https://astrio.net/blog/optimize-robots-txt-for-magento/ | |
| # |
| #!/bin/bash | |
| # | |
| # Generates client and server certificates used to enable HTTPS | |
| # remote authentication to a Docker daemon. | |
| # | |
| # See http://docs.docker.com/articles/https/ | |
| # | |
| # To start the Docker Daemon: | |
| # | |
| # sudo docker -d \ |
| location /api { | |
| rewrite ^/api/rest /api.php?type=rest last; | |
| rewrite ^/api/v2_soap /api.php?type=v2_soap last; | |
| rewrite ^/api/soap /api.php?type=soap last; | |
| } |