master, Author at Exotic Digital Access - Page 92 of 96
  • Kangundo Road, Nairobi, Kenya
  • support@exoticdigitalaccess.co.ke
  • Opening Time : 07 AM - 10 PM
Reading and Writing JSON to a File in Python

Reading and Writing JSON to a File in Python

Introduction In this guide, we’ll take a look at how to read and write JSON data from and to a file in Python, using the json module. JSON (JavaScript Object Notation) is an extremely popular format for data serialization, given how generally applicable and lightweight it is – while also being fairly human-friendly. Most notably, […]

Read More
How to Internationalize Numbers with JavaScript

How to Use Storage in Web Extensions

Working on a web extension is an interesting experience — you get to taste web while working with special extension APIs. One such API is storage — the web extension flavor of persistence. Let’s explore how you can use session and local storage within your Manifest V3 web extensions! Enabling Extension Storage The extension storage […]

Read More
Guide to Exception Handling in Express

Guide to Exception Handling in Express

Introduction Exceptions and errors are bound to occur while users interact with any application, it is up to software engineers to choose a means to handle any error that might arise – knowingly or unknowingly. As a result, backend developers who build APIs with Express find themselves working to ensure that they are building a […]

Read More
MPLS TE Tunnel Reoptimization

MPLS TE Tunnel Reoptimization

Changes in an MPLS TE network are possible. Metrics can change, interfaces can go down or up, etc.  It’s possible that an already established tunnel doesn’t use the most optimal path anymore. MPLS TE uses reoptimization to calculate the best path for a tunnel. There are two options: Periodic reoptimization. Manual reoptimization. We’ll discuss both […]

Read More
The Significance of the Design Phase in SDLC

The Significance of the Design Phase in SDLC

In a software development life cycle, the design phase is a stage wherein the technical specifications and approach for every detail of the tool are researched and narrated by software programmers in software development companies. The design phase in SDLC, depending on the project objectives and complexities, may mention the user interface, database design, UML […]

Read More
Get Feature Importances for Random Forest with Python and Scikit-Learn

Get Feature Importances for Random Forest with Python and Scikit-Learn

Introduction The Random Forest algorithm is a tree-based supervised learning algorithm that uses an ensemble of predicitions of many decision trees, either to classify a data point or determine it’s approximate value. This means it can either be used for classification or regression. When applied for classification, the class of the data point is chosen […]

Read More
How to Save Command Output as Variable in Bash?

How to Save Command Output as Variable in Bash?

Introduction In bash scripts, assigning the output of a command to variables can be convinient by storing the outputs of the commands and using them later. In this short guide, we will take a look at how you can store the output of a command as a variable in Bash. The Basics To Set Up […]

Read More
How to Internationalize Numbers with JavaScript

Skip or Only Run a Test with JavaScript Mocha

Whenever I start to feel anxiety about a big change I’m making, I start writing more unit tests. I’ll write down my fear and then write a test that attacks, and eventually relaxes, that fear. There are two actions that I’ve been frequently using with test writing: skipping all but one test or single tests. […]

Read More