Recently I was doing some ETL with Apache NiFi. But after a few minutes of drawing my flow, I saw that the component ConvertJSONToSQL was replacing the underscore ('_') from the field name in the where condition (I was preparing an Update SQL). That was weird because, at the set …



So, you use Entity Framework Core, and you usually code your selects like the following, maybe you are getting too much data.

var products = Products
    .Where(p => p.UnitsInStock > 0)
    .OrderBy(p => p.ProductName)
    .ToList()

Running the query above, on my table, you'll get the following output, take a look …


Zabbix Running on Low Memory Mode

Hey folks, another Zabbix post today. This one it's about increasing the Zabbix Server Cache. It's pretty common (if you have the default settings only) get a warning about your Zabbix value cache running on low memory mode at your dashboard or logs.

Zabbix Dashboard warning about the memory problem Zabbix Dashboard cache graph 70% used

To solve, go back to your Zabbix …


I've been migration some bash scripts that I have to PowerShell, and it's time to migrate a script that monitors the replication of a MySQL database. The credit for the original script goes to Paweł. It's a simple script where I seek a few tags/fields that we get from …


Microsoft Against Covid

Has your job been affected by covid? Well, last week I've posted on Grepora about a Free Certification Voucher that Microsoft was giving away at the Microsoft Ignite event. After that, I found that they were also giving a huge discount to people who have had their job affected by …


The power of PowerShell

As a long time Linux user, I've automated a few things with bash scripts and stayed away from PowerShell... I've moved to a Windows environment a few years ago and still, haven gave a shot to PS. But why not? I've made a few scripts to automate some tasks at …


Top Level Statement in C# 9

Hey folks, I'm coming along to tell you a few things about the new feature of C# 9. Every time you want to start a new project, you always have the same Main File, with the same structure. At the next version of C# (version 9), we'll have a new …


1 2 3 »