Skip to content

Instantly share code, notes, and snippets.

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

Aleksander Grygier allozaur

🏠
Working from home
View GitHub Profile
@allozaur
allozaur / keybase.md
Last active November 26, 2024 09:18
keybase

|---------|------|--------|--------| | 2023-11 | 1665 | 19 499 | 18 481 | | 2023-12 | 1678 | 19 986 | 18 990 | | 2024-01 | 1713 | 20 407 | 19 467 | | 2024-02 | 1729 | 20 711 | 19 687 | | 2024-03 | 2097 | 21 192 | 20 212 | | 2024-04 | 2392 | 21 444 | 20 669 | | 2024-05 | 2541 | 21 395 | 20 890 | | 2024-06 | 2867 | 21 240 | 20 833 | | 2024-07 | 3124 | 21 651 | 21 000 |

@allozaur
allozaur / m2-setup-install.sh
Created October 7, 2018 23:15 — forked from matt-bailey/m2-setup-install.sh
Example Magento 2 setup:install command
php bin/magento setup:install --base-url=http://mysite.dev --db-host=localhost --db-name=mysite --db-user=root --admin-firstname=Magento --admin-lastname=User --admin-email=my@email.com --admin-user=admin --admin-password=password123 --language=en_GB --currency=GBP --timezone=Europe/London --use-rewrites=1 --backend-frontname=admin
@allozaur
allozaur / netlify.vcl
Created March 4, 2021 00:35 — forked from paramdeo/netlify.vcl
Varnish Cache Example Config for Use with Netlify
vcl 4.1;
# Based on: https://github.com/mattiasgeniar/varnish-6.0-configuration-templates/blob/master/default.vcl
import std;
import directors;
backend netlify {
.host = "104.198.14.52";
.port = "80";
.max_connections = 300;

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example