Become a member
Sign in
Dmitry Astrikov
Dmitry Astrikov

Dmitry Astrikov

7 Following
9 Followers
  • Profile
  • Responses

Latest

Dmitry Astrikov
Dmitry Astrikov
Apr 10, 2017 · 1 min read

Nginx GZIP and cache settings

Add this snipped to server section inside your NGINX config file to add GZIP support on your website:

gzip on;
gzip_disable “msie6”;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss…
Dmitry Astrikov
Dmitry Astrikov
Mar 21, 2017 · 1 min read

Remove all merged branches in your git root

git branch — merged | grep -v “\*” | grep -v master | grep -v dev | xargs -n 1 git branch -d

Dmitry Astrikov
Dmitry Astrikov
Mar 21, 2017 · 1 min read

How to update all packages with PIP

Just paste this into your terminal:

pip freeze — local | grep -v ‘^\-e’ | cut -d = -f 1 | xargs -n1 pip install -U

Dmitry Astrikov
Dmitry Astrikov
Mar 21, 2017 · 1 min read

Phlorence — responsive HTML theme based on Bootstrap 3

Hi there. I finnaly finished work on my first HTML theme for sell. I called it “Phlorence”.

You can check it on BootstrapBay.

Features

1

Dmitry Astrikov
Dmitry Astrikov
Mar 21, 2017 · 1 min read

DartCMS — Content Management System based on Django Framework

Hello there! Some time ago I started work on second version of my opensource CMS — DartCMS. You can grab it from GitHub right there: https://github.com/astrikov-d/dartcms.

6

1 response