Programming

Building Go Applications for Different Operating Systems and Architectures — step-by-step Programming tutorial on Progressive Robot

Building Go Applications for Different Operating Systems and Architectures

Go supports cross-platform compiling by building support for multiple platforms directly into the go build tool. By using the GOOS and GOARCH environment variables and build tags, you can control which OS and architecture your final binary is built for. In this tutorial, you will build binaries for multiple operating systems and system architectures on your own system.

Read more
Connection Pooling in Java — step-by-step Programming tutorial on Progressive Robot

Connection Pooling in Java

Connection pooling means a pool of Connection Objects. Connection pooling is based on an object pool design pattern. Object pooling design pattern is used when the cost (time & resources like CPU, Network, and IO) of creating new objects is higher. As per the Object pooling design pattern, the application creates an object in advance […]

Read more
DAO Design Pattern — step-by-step Programming tutorial on Progressive Robot

DAO Design Pattern

DAO stands for Data Access Object. DAO [Design Pattern](/community/tutorials/java-design-patterns-example-tutorial) is used to separate the data persistence logic in a separate layer. This way, the service remains completely in dark about how the low-level operations to access the database is done. This is known as the principle of Separation of Logic. DAO Design Pattern With DAO […]

Read more
eclipse.ini vm arguments - eclipse.ini File Location Mac, Windows — step-by-step Programming tutorial on Progressive Robot

eclipse.ini vm arguments – eclipse.ini File Location Mac, Windows

eclipse.ini is the configuration file used to control the Eclipse startup. We can configure Eclipse VM arguments such as JDK to be used (eclipse.ini vm), permgen space, maximum and minimum heap size using Xms, Xmx parameters. eclipe.ini File Location For windows, it's in the same directory as eclipse.exe file, as shown in below image. ![eclipse.ini […]

Read more
How to generate XSD from Java Class — step-by-step Programming tutorial on Progressive Robot

How to generate XSD from Java Class

In last few posts, we learned about [Java JAXB](/community/tutorials/jaxb-example-tutorial "JAXB Example Tutorial") and how to generate [java class from XSD](/community/tutorials/jaxb2-maven-plugin-xjc-example-generate-java-classes-xsd "How to Generate Java Classes from XSD using XJC Maven Plugin"). Today we will learn how to generate XSD from java classes. Generate XSD from Java Class ![generate xsd from java, xsd generator, java class […]

Read more
How To Add Bootstrap to a Ruby on Rails Application — step-by-step Programming tutorial on Progressive Robot

How To Add Bootstrap to a Ruby on Rails Application

If you are developing a Ruby on Rails application, you may be interested in adding styles to your project to facilitate user engagement. Bootstrap is an HTML, CSS, and JavaScript framework designed to simplify the process of making web projects responsive and mobile ready. By implementing Bootstrap in a Rails project, you can integrate its layout conventions and components into your application to make user interactions with your site more engaging.

Read more
Cómo crear bucles for en Go — step-by-step Programming tutorial on Progressive Robot

Cómo crear bucles for en Go

En el ámbito de la programación informática, un bucle es una estructura de código que forma un ciclo para ejecutar parte de un código de forma repetida, a menudo hasta que se cumple una condición. Usar bucles en el terreno de la programación informática le permite…

Read more
CHAT