Introduction to GitHub
This post explains how to set up a GitHub project. What is GitHub? GitHub is a repository service based on code control version system (CVS) Git. GitHub has many things in common with Git, so it is important to be…
This post explains how to set up a GitHub project. What is GitHub? GitHub is a repository service based on code control version system (CVS) Git. GitHub has many things in common with Git, so it is important to be…
A process modeling language allows to describe processes through diagrams with text. There are different modelling languages used in the market. Software will be classified depending on the modelling language they support and their purpose. List of Process Modeling Languages…
This post summarizes some Graphical User Interfaces (GUI) widget toolkits or libraries for the video game Python module Pygame. List of GUIs for Pygame GUI widget toolkits for Pygame: Pygame GUI is one of the newest, as it was released…
This post gives some hints about how to use a GNU license (GPL, LGPL, AGPL) in a software project. Free Software Foundation (FSF) explains what it needs to be done on this external link. There are some additional instructions on…
NetBeans is a IDE for Java. As of 2023, it is maintained by Apache. Things you need to Configure when creating a Project in NetBeans Setting the License Header of Source Code Files Right click on the project, select “Properties”…
This post summarizes some Build Automation Tools List of Build Automation Tools Build Automation Tools featured on this post: Apache Maven Maven is a build automation tool used primarily for Java projects. Its purpose is the management and build of…
This post explains some aspects related to Java programming language. If you want to read a more general introduction to the Java and not only the language itself (including how to learn Java or getting support on Java), please read…
This post covers some aspects related to software license Apache License, version 2.0. Introduction to Apache License, version 2.0 Apache License, version 2.0 is a permissive open-source license. Apache orginal license was a copy of BSD. Among the most popular…
This post summarizes how to create your first program in Java programming language without an IDE. Steps to create your first Java Program This section summarizes how to create your first Java Program. 1. Ensure you have an OpenJDK Implementation…
This post explains how to make a multilingual Java application. Introduction to Property files in Java As language changes depending on each computer and the region, it is considered locale specific. Locale-specific information in Java is stored in .property files…