Problem: How to write Fizz Buzz in Java? The problem is as follows: Write a program that prints the numbers from 1 to 100. But for multiples of three print ‘Fizz’ instead of the number and for the multiples of five print ‘Buzz’. For numbers which are multiples of both three and five print ‘FizzBuzz’. …
Continue reading Fizz Buzz in JavaProblem: Bash allows to define functions, which is very good way to reuse parts of shell scripts. This tutorial shows how to define Bash functions and apply in scripts.
Continue reading Bash define functionProblem: How to write to a text file in Java 8?
Continue reading Java 8 write to a text fileProblem: What are sizes of Java primitive types?
Continue reading Java primitive types sizesProblem: What are default values of Java primitive types?
Continue reading Java primitive types default valuesProblem: How to read file into a String in Java 8?
Continue reading Java 8 read file into a StringProblem: How to read lines from a text file in Java 8?
Continue reading Java 8 read lines from a text fileProblem: How to write “Hello, world!” in Java?
Continue reading Java “Hello world!”Problem: Bash alias is a great way to create a simple name for complex commands. Use it to make your life in Bash command line simpler!
Continue reading Bash command alias