Martin Vích's blog


Hi I'm Martin Vích. For a long time I was working as a ASP.NET developer, now I'm focusing mainly on the front end.

How to instal Elasticsearch and Kibana on Docker

Elasticsearch and Kibana are pretty popular way to store, visualise and analyze data from your application. In this post I want to provide a fast and easy guide how to setup Elasticsearch and Kibana on Docker. I will not go deep with each parameter…

Advanced git commands

I'm just going to store this here for my personal usage... Reset Resets state of branch to origin/branch. The --hard option throws away any changes, --soft only moves HEAD, keeping the changes. git reset --hard origin/mybranch Revert Reverts…

How to install Ruby on Rails on Mac

Install homebrew run xcode-select --install Install & init rbenv with brew install rbenv && brew install rbenv && rbenv init List available ruby versions with rbenv install -l Install preferred version with rbenv install 2.5.1 Check installed…

Using git on Windows

Motivation For a long time I was using Visual Studio with TFS to control my code. So when company I was working at that time wanted to move to git I continued to use integreated tools as well. And in a small team it was fine, basicly I couldn't tell…

Paged index with Wyam.io

I've decided to create new blog to share experiences I have with various peaces of software and since I'm doing a lot of .NET development Wyam.io project caught my eye. It comes with everything I expected to need for a "begginers" blogging tool so…