Davi's Tech & Trends

Useful JS Cheat Sheet

1. Array Methods 1: [1, 2, 3].length; // 3 [1, 2, 3].push(4); // [1, 2, 3, 4] [1, 2, 3].unshift(0); // [0, 1, 2, 3] [1, 2, 3].pop(); // [1, 2] [1, 2, 3].shift(); // [2, 3] [1, 2, 3].at(2); // 3 [1, 2, 3].indexOf(3)

How to Install Portainer with docker-compose on Ubuntu

Managing Docker containers can sometimes feel overwhelming, especially when juggling multiple services. Portainer is a fantastic tool designed to simplify the process by providing an intuitive web-based interface for managing your Docker environment. In this guide, we'll walk through installing Portainer using Docker Compose on an Ubuntu system.

How to Store Ghost Blog Images on Amazon S3 to Optimize Hosting Storage

By default, Ghost stores any images uploaded to Ghost Admin locally to its filesystem, and delivers them via the same Ghost front-end service which delivers Ghost themes. It’s possible to replace this layer entirely using a custom storage adapter. Ghost Storage Adapter S3: This module allows you to read

Jackery Explorer 100 Plus: The Ultimate Portable Power Station

Where to Buy Ready to power your adventures? Get the Jackery Explorer 100 Plus now for only $128 on Amazon, plus an additional $40 off with a coupon! Overview The Jackery Explorer 100 Plus is a compact and lightweight portable power station designed for outdoor enthusiasts and travelers. With a

Useful Docker Commands to troubleshoot a container

Inspect container details: Provides detailed configuration and state information about the container, including network settings, mounts, and environment variables. docker inspect <container_name> Find where the volume is stored: docker volume inspect <volume_name> Check logs: Displays the log of the container. docker logs <container_

Davi's Tech & Trends © 2026