Skip to main content

6 posts tagged with "automation"

automation tag description

View All Tags

N8n, Make, or Zapier: Complete Comparison Guide, Features, and Pricing

7 min read
Serhii Hrekov
Senior Software Engineer & System Architect specializing in Python, Web Systems, Cloud Infrastructure & Automation

Choosing the right workflow automation platform is a critical business decision that impacts everything from efficiency and cost to data security and technical control. There is no single "best" platform; the final verdict depends entirely on your specific use case, technical skills, and budget [1, 2].

N8n vs. Make (formerly Integromat)

8 min read
Serhii Hrekov
Senior Software Engineer & System Architect specializing in Python, Web Systems, Cloud Infrastructure & Automation

n8n and Make (formerly Integromat) are two of the most powerful workflow automation platforms available, but they have fundamentally different approaches. While both allow you to build complex automations with a visual interface, they cater to different users and use cases. Choosing between them comes down to a trade-off between accessibility and raw technical power [1].

N8n for AI and LLM automations

6 min read
Serhii Hrekov
Senior Software Engineer & System Architect specializing in Python, Web Systems, Cloud Infrastructure & Automation

As the automation landscape evolves, the integration of Artificial Intelligence (AI) and Large Language Models (LLMs) into workflows has become a game-changer. n8n is particularly well-suited for this, thanks to its open, flexible architecture that allows you to connect AI services to virtually any other tool in your stack [2]. This article will explore how to leverage n8n for AI and LLM automations, providing practical examples and use cases.

Foundation for building production-ready n8n automations

7 min read
Serhii Hrekov
Senior Software Engineer & System Architect specializing in Python, Web Systems, Cloud Infrastructure & Automation

For mission-critical automations, simply creating a workflow is not enough. To ensure your n8n workflows are reliable, scalable, and secure, you must implement proper error handling, leverage custom code for advanced logic, and choose a robust deployment strategy. This article will cover these critical topics, setting the foundation for building production-ready n8n automations.

N8N: creating your first complex automation

7 min read
Serhii Hrekov
Senior Software Engineer & System Architect specializing in Python, Web Systems, Cloud Infrastructure & Automation

At its core, n8n uses a node-based workflow system. Think of a workflow as a visual flowchart. Each step in the automation is represented by a node, and these nodes are connected to each other to define the flow of data [1]. Data flows from the output of one node to the input of the next, allowing you to build complex logic visually.

Each node performs a specific task, like:

  • Triggers: The starting point of a workflow. This could be a webhook, a scheduled time, or an event in an external app.
  • Actions: The workhorse nodes that perform an action, such as sending an email, creating a record in a database, or uploading a file.
  • Logic: Nodes that control the flow, like a conditional IF statement, a loop, or a data transformation node.

The ability to chain these nodes together is what gives n8n its immense flexibility.

How to Remove Text Under Barcode with `python-barcode`

3 min read
Serhii Hrekov
Senior Software Engineer & System Architect specializing in Python, Web Systems, Cloud Infrastructure & Automation

By default, the python-barcode library renders human-readable text (usually the encoded number) under the barcode. If you're building a minimal barcode-only label or want to embed the barcode without additional text, you'll need to disable that feature.

Here's how to do it.