Recent Posts

My First TensorFlow Experience

1 minute read

I am planning to make a PhD in Machine Learning if I will get accepted of course :) Therefore, these days I am planning to be attached to TensorFlow. Firstly...

A Gradle Challenge

1 minute read

At work we had a situation that some of our used shared project should be in the artifactory, but we do not have any artifactory yet :) So what we were doin...

Java Generics

less than 1 minute read

Generics occured in https://www.hackerrank.com/challenges/30-generics/problem this challenge, so that I quickly want to remember that. Generic Types Generics...

Introduction to RabbitMQ

4 minute read

Let’s temper into RabbitMQ. Installation: Firstly, Erlang is required to install RabbitMQ server. Link is here: http://www.erlang.org/downloads. After su...

Sorting: Bubble Sort

1 minute read

Today’s Cracking the Coding Interview Challenge is Sorting: Bubble Sort. Sorting is one of the most important topics in SE. Bubble sort is the easiest sort...