13Jan/23

Solving the ‘tail: inotify resources exhausted’ Error on Ubuntu

The “tail: inotify resources exhausted” error usually occurs when you are using the tail command to follow a file that is being actively written to, and the inotify watch limit has been reached. To fix this issue, you can try increasing the inotify watch limit by modifying the /proc/sys/fs/inotify/max_user_watches file. …

The post Solving the ‘tail: inotify resources exhausted’ Error on Ubuntu appeared first on Anto ./ Online.

13Jan/23

Update Ubuntu using Apt & Cron

There are several methods to update Ubuntu. These methods include package updates via the desktop, the unattended upgrade script, and good old Apt. As the title suggests, this post explores the last option using Cron. Using the Apt command via Cron is mainly intended if you have installed a cut-down, …

The post Update Ubuntu using Apt & Cron appeared first on Anto ./ Online.

13Jan/23

How to set up CORS for an AWS Lambda Proxy REST API resource

Let’s see how you set up CORS using a Lambda Proxy API and AWS SAM. Heads up! This guide will also help fix a CORS error that fails in the browser but works in CURL. About CORS Cross-Origin Resource Sharing (CORS) is a way to tell browsers which domain, HTTP …

The post How to set up CORS for an AWS Lambda Proxy REST API resource appeared first on Anto ./ Online.

13Jan/23

How to choose the right tool for your web scraping project?

Many people in different fields have employed Python to do web scraping. The most common purposes for this are data science and mining large amounts of structured or unstructured information from the Internet, which can be difficult without appropriate software tools. Python is excellent for web scraping because Python allows …

The post How to choose the right tool for your web scraping project? appeared first on Anto ./ Online.

13Jan/23

Entering the Job Market? Here Are the Most In-Demand Programming Languages for 2022

As we enter 2022, you might be looking for a new job. The Great Resignation proves beneficial to job hunters or switchers, as employers are willing to provide higher pay and more benefits to stem labor shortages. Now is an excellent time for anyone wanting to launch, boost, and even …

The post Entering the Job Market? Here Are the Most In-Demand Programming Languages for 2022 appeared first on Anto ./ Online.

13Jan/23

OpenFaaS: Classic and of-watchdog templates

OpenFaaS (Function as a Service) is a popular serverless framework. However, unlike other serverless function providers, OpenFaaS has very few restrictions on providing and receiving data. This guide will show you the primary differences between the Classic and of-watchdog templates. Let’s get started! OpenFaaS provides two types of templates: Classic Watchdog …

The post OpenFaaS: Classic and of-watchdog templates appeared first on Anto ./ Online.

13Jan/23

OpenFaaS: How to Add Python Requirements and Dependencies

This guide will show you how to add requirements and dependencies for a Python project using OpenFaaS. Python dependencies are software components that your project needs for it to work. You can manually use PyPI (the Python Package Index) to provide packages that you need, but OpenFaaS can automate this …

The post OpenFaaS: How to Add Python Requirements and Dependencies appeared first on Anto ./ Online.