Unlock the Power of Windows Keyboard Shortcuts: The Ultimate Cheatsheet

  • 25 April 2023
  • ADM

Discover the most useful Windows keyboard shortcuts to save time and boost productivity. Master system, text editing, and web browsing shortcuts with this comprehensive guide.


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.


Install and use firewalld on Ubuntu

  • 11 May 2020
  • ADM

Firewalld is one of the Linux firewall management tool and it is available on the in the Ubuntu's default repositories, therefore it is available to be installed from these repositories using the apt packaging system.


Strings functions in Golang

  • 19 April 2020
  • ADM

List of Golang string functions tested example and short description.

The strings package provides many useful string-related functions.


Maps in Golang

  • 14 April 2020
  • ADM

Golang maps implements a hash table. Hash tables are one of the most used data structure. A hash table is an unordered collection of key-value pairs, where each key is unique.


Arrays in Golang

  • 12 April 2020
  • ADM

An array is a data structure with a fixed size containing elements (items) of the same type. Iterate over an array using for loop or for range loop.