Your Cybersecurity 101 Guide to Home and Business

  • 17 December 2021
  • Emma

As technology continues to evolve and we spend more time on our computers and cell phones, we not only have more convenience but also more of a threat from cybercriminals that want to steal your data and your identity. If you are a business owner or a home user, you must be careful, or you could easily fall for a cybercrime scam. Here at the ADMFactory, we know about tech and security and the importance of it, and we have some common-sense tips and advice for securing your devices.


HP Microserver Gen8 - Install ClearOS remotely

  • 31 October 2020
  • ADM

HP Microserver Gen8 - Install ClearOS on SSD Drive remotely. Step by step installation instructions.


Switch case statements in Golang

  • 20 April 2020
  • ADM

The switch statement is an easier way to have a sequence of if-else statements. In Golang you don't need to have break at the end of each case, it breaks implicitly. Also the golang switch statement work on values of any type.


For loop examples in Golang

  • 13 April 2020
  • ADM

How to write a for loop using Golang programming language. Similar with other programing languages, the basic for loop has three components separated by semicolons.


How to check the JDK version of a class file

  • 17 March 2020
  • ADM

When running a Java application it is mandatory that the JRE version to match or to be higher that the JDK version used to compile the application.

You will get the "Unsupported major.minor version 52.0" error when trying to run an Java 1.8 application using a lower version of Java.


Abstract keyword in Java

  • 10 March 2020
  • ADM

The abstract keyword is used in Java for abstraction. The abstraction is the process of selecting data and displaying only the relevant details to the object. If helps to reduce the programing complexity and the efort.