The Best Books for Learning MySQL Database

I prepared a list of the best books with author names for learning, optimizing, troubleshooting, and administrating your MySQL database. Most of these books are in my home library. Books for Beginners These books could be useful for beginners to learn MySQL from scratch and for developers with some experience to structure your knowledge. Murach’s … Read more

JavaScript Snake Game Tutorial

In this tutorial, you will learn how to make classic javascript snake game using HTML, CSS and vanilla JavaScript. Everyone remembers that retro game. It’s quite easy and cool. And first of all, I want to show you the result. I uploaded it to my site. In this tutorial, I will not show you all … Read more

How to Update Java on Ubuntu

It’s really simple to update Java on Ubuntu – just 2 simple commands. While you’re using PPA as I described in the installation chapter you can execute update and upgrade commands in the console and that’s it. Open Terminal (Alt+Ctrl+T) and execute: If a new version of Java is available it will be automatically updated.

Scanner Class in Java

Java Scanner is a simple text parser, it can parse a file, input stream or string into primitive and string tokens using regexp. It breaks an input into the tokens using delimiter regular expression (whitespace by default Character#isWhitespace(char)). Tokens can be converted into primitives (double, float, long, int, byte, short, boolean), number objects (BigDecimal, BigInteger) … Read more

Git Clone Branch & Repository

git clone command is the first step when you want to clone a remote repository or branch from github or bitbucket. Syntax is: As you see it’s a really big amount of options and I’ll explain to you how to implement the most popular use cases. Git Clone Repository git clone memeFirst of all, you … Read more

Top-100 Hibernate Interview Questions

It’s the 2nd part of Java interview questions series, the 1st one part is Core Java Interview Questions and 3rd part is Spring Interview Questions. My plan is to collect all the most popular questions and answers, but as the 1st step, I decided to start with questions only. When my list will be full, … Read more

Top-325 Core Java Interview Questions: Ultimate Collection

I had more than 50 interviews since 2010th. I collected all the most interesting and useful Java interview questions. This is not only basic coding interview questions or questions for experienced developers. I think this collection would be good for everyone even if you’re basic (entry level) or advanced engineer (advanced level) or even architect. … Read more

Top-150 Spring Interview Questions

This is the 3rd part of Java Interview Questions series. 1st part is Core Java Interview Questions, 2nd part is Hibernate Interview Questions. Spring interview questions is an important part of Java developer interview preparation. As I said in 2nd part – Spring and Hibernate is a jentleman set of Java programmer. I’ve divided questions … Read more