Davi's Tech & Trends

Brother MFC-J1010DW Wireless All-in-One Printer Review

Where to Buy Ready to enhance your printing experience? Purchase the Brother MFC-J1010DW Wireless Color Inkjet All-in-One Printer on Amazon today! Click here to buy now! Overview The Brother MFC-J1010DW is a compact, all-in-one inkjet printer designed for home and small office use. It offers a range of features including

Useful command to check the available and used space in Ubuntu

Use the following command to view total disk space availability and usage: df -h --total Use the following command to view the size of a specific folder: du -sh <folder_name> Use the following command to list the sizes of all subfolders and ordered by size: du -hs

How to Enable Remote Desktop on Kali from Window 11

In this guide, I will walk through setting up SSH and XRDP on Kali Linux to allow for secure remote access from another machine. I'll cover updating your system, ensuring SSH service is running, installing and configuring XRDP for graphical remote access, and enabling access for Windows users.

Create a function in JavaScript

In JavaScript, there are three primary ways to create a function: Function Declaration, Function Expression, and Arrow Function. 1. Function Declaration: Example Code: function sayHello() { console.log("Hello, World!"); } Characteristics: One of the major features of function declarations are hoisted to the top of their scope. Which mean,

How to dynamically add or remove object properties in JavaScript

To add a new property: There are four ways to add a new property to an object in JavaScript: 1. Using Dot notation: const obj = {name: "daviblog", age: 29 }; obj.job = "Programmer"; // obj = {name: "daviblog", age: 29, job: "Programmer"} 2. Using Bracket

Davi's Tech & Trends © 2026