Intro In this post you will get familiar with basics of benchmark tool for elixir. As the title mentioned I am going to test elixir collection types: tuple and list. A note. For my tests I chose Benchee. But there are other benchmark tools, for example Benchfella and Bmark. Benchmark tool setup Setup is quite straight forward. Create a new t... Read more 28 Feb 2017 - 5 minute read
The problem Dull and difficult to read rails console output. Example: > Movie.first Movie Load (0.3ms) SELECT "movies".* FROM "movies" ORDER BY "movies"."id" ASC LIMIT ? [["LIMIT", 1]] => #<Movie id: 1, title: "Batman", year: 1989, genre: "Action, Adventure", director: "Tim Burton", production: "USA, Great Britain", boxoffice... Read more 23 Jul 2016 - 4 minute read
Css position property is powerful and it allows to create great layouts. But setting position of css elements can often be very confusing. In this post I will be writing about static, absolute and relative positions of page elements. By default page elements have static position. Static Static positioned elements are not affected by the top... Read more 07 May 2016 - 1 minute read
What would be a web application without a server. First and one of the most important decisions in creating web application is a web host choice. We need to take into consideration many factors: deployment options price scalability security hardware There are many more like: good tech support, add-ons, email options or customer rev... Read more 04 Mar 2016 - 1 minute read