N8n

n8n is an open-source workflow automation tool that allows you to automate tasks across different applications and services. It provides a visual interface that allows you to create workflows by connecting different nodes to perform specific tasks. n8n is built on top of Node-RED, a popular open-source programming tool for wiring together hardware devices, APIs, and online services. It is designed to be easy to use and suitable for a wide range of use cases, including integration with CRM systems, data analysis, and automation of social media tasks....

July 26, 2022 · 1 min · 88 words · Omer Segev

OpenSSL Generate self signed certificate

This is a one liner on how to create SSL Self signed certificate with OpenSSL openssl req -new -newkey rsa:4096 -days 365 \ -nodes -x509 -keyout server.key -out server.crt

July 26, 2022 · 1 min · 29 words · Omer Segev