27 Jan 2017
|
rabbit-mq
Once you start getting serious with RabbitMQ, around the time you graduate from running small tests on your laptop to actually processing real production data, is usually the time
you start to wonder about reliability; How will my server behave once it fails and restarts? And what will happen to my messages? You may have met the terms durability and persistency,
which sound like they have somewhat similar meaning. Why do we need both? and what are the differences between them?
18 Jan 2017
|
node-js
This is part 2 of my atempt to provide answers to the questions presented at How well do you know Node.js? blog post.
part 1 is here in case you missed it.
14 Jan 2017
|
node-js
Recently I came across a blog post titled How well do you know Node.js?. In it, Samer Buna lists 48
questions which be expects a Node.js developer to be able to answer. This post is part 1 of my attempt to provide answers to these questions.
11 May 2016
|
rails
ActiveAdmin is an administration framework for Ruby on Rails applications. It allows to easily create admin pages to manage rails entities, offering out-of-the-box CRUD functionality.
Sometimes, however, you need some bit of funcionality that is out of scope of a single resource.
17 Apr 2015
|
java
When interacting with some REST API, we often deal with serialization of Java objects to JSON strings.
Lately, I came across a requirement to conditionally skip an object’s field, according to its value.