Programming

How To Use JSON in Go — step-by-step Programming tutorial on Progressive Robot

How To Use JSON in Go

Programs need to store data their own data and communicate with each other. JSON is a popular way to do both. In this tutorial, you will use Go’s `encoding/json` package to enode and decode JSON data so that you can save your own JSON data and interact with APIs.

Read more
How To Use the Fat Free PHP Framework — step-by-step Programming tutorial on Progressive Robot

How To Use the Fat Free PHP Framework

[Fat Free Framework](http://www.fatfreeframework.com) is a PHP *micro-framework* that was started in 2009 by Bong Cosca. Following a minimalistic approach, it tends to avoid adding code and structure that are not strictly necessary, while focusing on what really matters. Here’s our tutorial on how to use the Fat Free PHP framework.

Read more
How To Work with Numbers in PHP — step-by-step Programming tutorial on Progressive Robot

How To Work with Numbers in PHP

Being able to effectively perform mathematical operations in programming is an important skill to develop because of how frequently you’ll be working with numbers. This tutorial will go over many different operators that can be used with numerical data types in PHP, as well as how PHP handles “type juggling” and built-in math functions.

Read more
Написание пакетов в Go — step-by-step Programming tutorial on Progressive Robot

Написание пакетов в Go

Пакет состоит из файлов Go, которые находятся в том же каталоге и имеют одинаковое выражение пакета в начале. Вы можете добавить дополнительные функции из пакетов, чтобы усложнить программы. Некоторые пакеты доступны в стандартной библиотеке Go и устанавливаются вместе с Go. Другие можно…

Read more
Импорт пакетов в Go — step-by-step Programming tutorial on Progressive Robot

Импорт пакетов в Go

Иногда для вашего кода могут потребоваться дополнительные функции вне текущей программы. В подобных случаях вы можете использовать пакеты, чтобы сделать программу более функциональной. Пакет представляет собой все файлы в одном каталоге на диске. Пакеты могут определять функции,…

Read more
Java 8 Functional Interfaces — step-by-step Programming tutorial on Progressive Robot

Java 8 Functional Interfaces

URL: https://www.progressiverobot.com/java-8-functional-interfaces/ Welcome to the Java 8 functional interfaces example tutorial. Java has always been an Object Oriented Programming language. What is means that everything in java programming revolves around Objects (except some primitive types for simplicity). We don't have only functions in java, they are part of Class and we need to use the […]

Read more
Java ClassNotFoundException - java.lang.ClassNotFoundException — step-by-step Programming tutorial on Progressive Robot

Java ClassNotFoundException – java.lang.ClassNotFoundException

URL: https://www.progressiverobot.com/java-classnotfoundexception-java-lang-classnotfoundexception/ Java ClassNotFoundException Java ClassNotFoundException occurs when the application tries to load a class but [Classloader](/community/tutorials/java-classloader) is not able to find it in the classpath. Common causes of java.lang.ClassNotFoundException are using Class.forName or ClassLoader.loadClass to load a class by passing String name of a class and it's not found on the classpath. ClassNotFoundException is […]

Read more
Java equals() and hashCode() — step-by-step Programming tutorial on Progressive Robot

Java equals() and hashCode()

URL: https://www.progressiverobot.com/java-equals-hashcode/ Java equals() and hashCode() methods are present in Object class. So every java class gets the default implementation of equals() and hashCode(). In this post we will look into java equals() and hashCode() methods in detail. Java equals() Object class defined equals() method like this: public boolean equals(Object obj) { return (this == […]

Read more
Java Interview Questions — step-by-step Programming tutorial on Progressive Robot

Java Interview Questions

URL: https://www.progressiverobot.com/java-interview-questions/ — If you are preparing for a Java-based interview, it's a good idea to go through Java Interview Questions. I have written a lot of interview questions articles in Core Java, Java EE to popular frameworks. Java Interview Questions FAQs Let's go through some common questions before you read articles that focus on […]

Read more
Java printf() - Print Formatted String to Console — step-by-step Programming tutorial on Progressive Robot

Java printf() – Print Formatted String to Console

URL: https://www.progressiverobot.com/java-printf-method/ We've already discussed [Java println()](/community/tutorials/system-class-java-properties-out-println) method in a previous tutorial. Today, we'll discuss the printf() method and its various implementations in detail. Ready. Get. Set. Go! Java printf() printf() method is not only there in C, but also in Java. This method belongs to the PrintStream class. It's used to print formatted strings […]

Read more
CHAT