Plot XY Graph in Julia Using Data Points

Plotting numbers in the XY graph in Julia can help us create the big picture. This post shows how to plot data points in a graph using the Plots and GR packages. These data points are our x-y coordinates. Install

Rust Array Size Limit To 32 No More In 1.47.0 Release

Before 1.47.0, there is the Rust array size limit size of 32. This is evident when we get the E0277 error that has the following message.

When Do We Get The Error? Personally, I have never encountered this error

Rust Generics With Structs, Functions, Methods, and Enums

Rust Generics is a language feature for code reuse in multiple contexts using different actual types for Structs, Functions, Methods, and Enums. Moreover, they allow for concise and clean codes by minimizing boilerplates while providing type-safety.  When we use Generics,

Rust IDE Plugin For Visual Studio Code – Install And Use

Have you been looking for a Rust IDE? Unfortunately, there are no IDEs specifically written for Rust. There are, however, Rust IDE plugins (or extensions) for IntelliJ IDEA and Visual Studio Code IDE. This post shows how to install and

Java Null Pointer Exception Processing With Try-Catch

In Java, we can handle exceptional events using the try-catch. But not all exceptions are the same. Java Null Pointer Exception processing requires using try-catch in a way that is unchecked during compilation. Checked And Unchecked Java Exceptions We refer

Run Ballerina On Command-Line Without Installing Java

This post shows how to run Ballerina On Command-Line without installing the Java Development Kit (JDK) in Windows 10 64-bit. Instead, we use a zip distribution of Java with only two environment variables. This distribution of Java is self-contained that

Work on Ballerina Projects Using CLI Tools

Ballerina is a new programming language that shows a lot of promise, especially for microservice and cloud-based development. It is a general-purpose programming language for distributed applications. Since it is relatively new, many IDEs are yet to fully support it

Create Java Project Using Maven in Command Line

This post shows how to create a Java project with Apache Maven in the command line. The content may be old, and a myriad of people may already know how this, but it is still worth learning the basics. Requirements

Spring Dependency Injection Examples Without Spring Boot

The Spring Framework has come a long way. Nowadays, it is way easier to start a Java project with the Spring Framework using Spring Boot. In the past, we used to download Spring individual jar files and configure the dependencies