Programming

AtomicInteger in Java — step-by-step Programming tutorial on Progressive Robot

AtomicInteger in Java

Today we will look into AtomicInteger in Java. Atomic operations are performed in a single unit of task without interference from other operations. Atomic operations are necessity in multi-threaded environment to avoid data inconsistency. AtomicInteger ![AtomicInteger, java atomicinteger, atomic integer](images/atomicinteger-java-section-1.png) Let's create a simple multi-threaded program where every thread increments the shared count variable 4 […]

Read more
Top 100+ Core Java Interview Questions — step-by-step Programming tutorial on Progressive Robot

Top 100+ Core Java Interview Questions

Core Java interview questions help you in preparing for java based interviews. Whether you are a fresher or highly experienced professional, core java plays a vital role in any Java/JEE interview. Core Java is the favorite area in most of the interviews and plays a crucial role in deciding the outcome of your interview. This […]

Read more
Definir métodos en Go — step-by-step Programming tutorial on Progressive Robot

Definir métodos en Go

Las funciones le permiten organizar la lógica en procedimientos repetibles que pueden usar diferentes argumentos cada vez que se ejecutan. Durante la definición de las funciones, a…

Read more
Google Search from Java Program Example — step-by-step Programming tutorial on Progressive Robot

Google Search from Java Program Example

Sometime back I was looking for a way to search Google using Java Program. I was surprised to see that Google had a web search API but it has been deprecated long back and now there is no standard way to achieve this. Basically google search is an HTTP GET request where query parameter is […]

Read more
Cómo convertir tipos de datos en Go — step-by-step Programming tutorial on Progressive Robot

Cómo convertir tipos de datos en Go

En Go, los tipos de datos se utilizan para clasificar un tipo de dato concreto y determinan los valores que puede asignar al tipo y las operaciones que puede realizar en él. Cuando realice tareas de programación, a veces deberá aplicar conversiones de valores entre tipos para…

Read more
Определение и вызов функций в Go — step-by-step Programming tutorial on Progressive Robot

Определение и вызов функций в Go

Функция — это часть кода, которая после определения может многократно использоваться. Функции используются для упрощения понимания кода путем разделения его на небольшие понятные задачи, которые могут использоваться многократно в вашей программе. Go поставляется с мощной…

Read more
How To Insert New Database Records in Laravel Eloquent — step-by-step Programming tutorial on Progressive Robot

How To Insert New Database Records in Laravel Eloquent

In the second part of our Practical Introduction to Laravel Eloquent Series, you’ll learn how to insert records in the database using Eloquent models. One of the biggest advantages of using an ORM system is the ability to manipulate rows in a database table as objects within your codebase. With Eloquent, as with other ORMs, the object itself provides methods that can be used to persist it to the database, saving you the work of writing SQL statements.

Read more
CHAT