Custom linting rules in NuxtJS and eslint

Wojtek on nuxtjs, vuejs, eslint, chkconfig · · Comments · 1 min read

NuxtJS is a fantastic framework for creating VueJS applications. It comes bundled with Vue Router, Vuex, Vue Server Renderer and many more. All configured for you out of the box. The problem I have with it, it comes with linting options set to force 2 spaces as indentation. I'm a "tab" guy, so making me use spaces for... Read more »

How to make sure service is running after restart

Wojtek on bash, chkconfig, Linux · · Comments · 1 min read

If you want to avoid situation when after server restart you have to start lots of services manually, a little thing like chkconfig would come in handy. First you might want to take a look at a list of services handled by chkconfig: chkconfig --list You should see something like this: mysql 0:off 1:off 2:on 3:on... Read more »