I quit TV

In 2021, after literally spending years trying to sell our apartment in search of more space, the opportunity appeared. Our apartment was not exceptionally small, although the family had grown since the initial purchase. It was not giant either and in practice it seemed to be smaller than it really was in the harshest moments of the pandemic quarantine. In the apartment, the TV played an important implicit role in our lives. In fact, in my case, it was one of the first things I did when I woke up, turning on the TV to watch the news. A fundamental part of family breakfasts, lunches and dinners. The TV was always on, known, expected, watched programs and other moments where, with no one paying attention, it continued to be on in the background covering up the silence. ...

February 23, 2025 · 3 min · Mario Moreno

Not enough mana

I know people who can work for hours without seemingly needing to take a break, eat or even drink something. They can stay long hours working on a task or several tasks. That is not my case In my case I learned or understood I work best in bursts. A cycle of actions, achieve something or several things and then rest for a while while thinking about the work done, the next priorities and preparations for next cycle ...

May 14, 2022 · 3 min · Mario Moreno

If you know Kung Fu

I remember in my childhood situations when my mom or dad explicitly told me or somehow demonstrated I was special or very good at something, little subjects in some cases. Like tinkering things, at school, running fast.. I think it is the right thing to do, especially with your kids, to show recognition, pride, explicitly show how much you love them and how her/his effort at the school, playing a sport, specific activity, etc doesn’t go unnoticed. Contribute to her/his emotional bank account ...

March 26, 2022 · 3 min · Mario Moreno

The Manager's Path™

Two years and a half ago I accepted a position as an IT Manager. Before that I was working on different technology companies with positions like developer, devops, software architect and technical lead. Since 2013 also working on positions that involved different levels of management, always technical and working mainly with remote teams These are some notes about my learnings on the path to become a better manager (work in progress), personal experience and challenges ...

March 5, 2022 · 6 min · Mario Moreno

Intel Stick

On my last vacation, I took the opportunity to spend more time with my family, go to the beach, read some books and resume old software projects (and also start new ones..) On of those technological adventures included the opportunity to buy at a very good price an used Intel Stick I have to recognize that I didn’t know about their existence until I saw a picture in the marketplace and start to read about their technical specifications. Surely considering the form factor they seemed fairly good at release date (Q1 2015) but for 2022 they seem limited at least ...

February 20, 2022 · 6 min · Mario Moreno

Net Core Ubuntu Dev Server

Well, continuing with the series of post years in draft.. this is from 2018/2019. How to provision, setup and publish a .Net Core development server (Ubuntu 1804) in Azure VM Provision In this example I’m using Azure but the same steps could be applied to any Ubuntu 1804 server We will skip some steps here Home > Virtual Machines > Add In this case I have created a Standard B2s (2 vcpus, 4 GB memory) ...

October 31, 2021 · 3 min · Mario Moreno

Old Hardware Debian 9

This post have at least two years in draft mode. Does not have anything special, a short story and a list of command hope someone will find useful Back in 2019 I found an old laptop in my house LG S1 (Intel Core 2 duo from 2006) battery long dead but I conected it to AC power and it started. Originally shipped with Windows XP (and Vista Ready :)) Nostalgia + willigness to learn Golang => this post ...

October 30, 2021 · 3 min · Mario Moreno

Tips

The following are just some ’tips’ that helped me (and most of them are still helping me) in my professional career. They don’t pretend to be an exhaustive list nor absolute truths relevant to any situation and context. Also I don’t pretend to get credit as the ‘creator’ of these techniques, some (maybe most) of them could sound like just common sense for a lot of people. It is just a small compilation from mentors I was lucky to have throughout my career, articles or blog posts or even tweets that since several years ago I was particularly interested in and of course personal experience. We can maybe even don’t agree in some of them and that is fine, maybe in the comments section we can start a respectful conversation and in my case discover other points of view ...

October 3, 2021 · 20 min · Mario Moreno

SonarQube Email Report Application

In this short blog post I want to present a little application I made around three years ago. At that moment I was working on a small team developing a .NET full framework application and we used SonarQube to measure technical metrics. You can always explicitly navigate to the project dashboard but I wanted to have a daily summary in my inbox. The version of SonarQube that we had didn’t support that functionality so based on a previous full .NET framework application were I was playing with the SonarQube server rest API I built this little .NET Core application to get SonarQube metric email reports in my inbox ...

May 1, 2021 · 3 min · Mario Moreno

Base Windows Script

Continuing with the series of old MS Windows stories I found a shell script that I used as a base for several scripts mainly to automatize CI/CD tasks This script was made from reviewing other coworkers scripts and example scripts from the Internet echo off SETLOCAL @REM ---------------------------------------------------------------------------- @REM @REM author: [email] @REM @REM ---------------------------------------------------------------------------- echo. echo ========================================================= echo [script_name]] echo ========================================================= echo. @REM set local variables set start_time=%time% @REM ------------------------------------------------ @REM Shorten the command prompt for making the output @REM easier to read. @REM ------------------------------------------------ set savedPrompt=%prompt% set prompt=$$$g$s rem do stuff pushd %CD% @if %ERRORLEVEL% NEQ 0 GOTO Error echo process successfully finished. GOTO End :Error echo an error has ocurred. :End echo start time: %start_time% echo end time: %time% pause :finish popd set prompt=%savedPrompt% ENDLOCAL echo on As an example here is a poor man’s way to generate a daily metric report from a Silverlight report application (that old) ...

April 29, 2021 · 2 min · Mario Moreno