posts found in this keyword

    Allan 18 articles

    How to customize your App and still get all updates

    How to customize your App and still get all updates

    By Allan

    In this article, we will look at several problems that every developer who uses a boilerplate can face: * How to customize your project * How to store it in your repository and still be able to pull all updates All app templates and boilerplates are built to implement all possible functions

    A Primer on NMAP

    A Primer on NMAP

    By Allan

    NMAP is a powerful network exploration and security auditing tool that is commonly used by network administrators and cybersecurity professionals. It is an open source tool that allows users to easily scan large networks to identify active hosts, open ports, services, and their associated versions. NMAP uses a variety of

    A DNS Primer

    A DNS Primer

    By Allan

    For more primers like this, subscribe to get notifications about them as they are released. What is DNS? Domain Name System (DNS) makes the Internet usable to humans by providing a naming structure for online resources and mapping those names to the addresses where the resources reside. Without it, websites

    The 7 Software “-ilities” You Need To Know.

    The 7 Software “-ilities” You Need To Know.

    By Allan

    In the world of software architecture, there are many “-ilities” you must take into consideration with every project. Prioritizing them is necessary because the client will optimistically ask that you do all of them. To help you out, here is a quick list outlining my top 7 default “-ilities” in

    Hello World in the REPL

    By Allan

    When called without arguments, Node.js starts a REPL (Read-Eval-Print-Loop), also known as the “Node shell”. At a command prompt, type node. $ node > At the Node shell prompt > type "Hello World!" > "Hello, World!" 'Hello World!' And that's it, really