Finding Peace on the Prairies: Why I Chose Winnipeg

Sipping a coffee at any cafe in the city or walking through Assiniboine Park, I’m always struck by a profound sense of calm. This feeling was a major reason my family and I chose to build our life here in Winnipeg. For us, it was a conscious choice for safety, and a significant part of that was Canada’s sensible approach to guns.

The statistics on gun violence globally are sobering. While no country is perfect, the data shows a clear difference. In many places, gun violence is a leading cause of fear and tragedy. Here in Canada, strong regulations like the ban on assault-style firearms and strict licensing create a different reality. The focus is on responsibility and community safety, which results in a far lower rate of gun-related deaths compared to our neighbour to the south.

Living in Winnipeg, I appreciate this balanced approach. I know that hunters and sport shooters can still pursue their activities safely and legally, but the most dangerous weapons are not in general circulation. This isn’t about politics for me; it’s about peace of mind. It’s about feeling secure in my community, whether I’m downtown at The Forks or in my own neighbourhood. By the way, I am aware of the statistics saying that Winnipeg is one of the most dangerous cities of Canada, but based on the facts that I lived in Peru most of my life, there is no comparison, here I feel much more safe than in any city of Peru or South America.

Choosing Canada, and specifically Winnipeg, meant choosing a life where me and my family will have peace of mind, in addition, Winnipeg is not a big city, it was super clear for us that we don’t want to live in a big city anymore. Winters are hard but nothing compared with living in peace.

Hasta siempre Mario Vargas Llosa

Mario Vargas Llosa

I am doing an exception, this post will be in spanish because I feel I will express better using my mother tongue

Ayer, domingo 13 de abril, estaba viendo el partido de mi amado Universitario de Deportes contra el Melgar de Arequipa. Íbamos perdiendo 1-0 cuando uno de los comentaristas anunció una noticia terrible: Mario Vargas Llosa había fallecido en Lima a los 89 años. Sentí un shock inicial, pero seguí viendo el partido. Curiosamente, Mario Vargas Llosa, al igual que yo, era hincha de Universitario. Nuestro equipo remontó y ganó por un contundente 4-1.

Hoy reflexioné sobre la partida de MVLL. Lo conocí a través de “Los Cachorros”, y el personaje de “Pichulita” Cuéllar me impactó profundamente. Yo tendría 12 o 13 años y me había convertido en un lector voraz. Luego leí “La ciudad y los perros”, “Pantaleón y las visitadoras”, “La casa verde”, y creo que tenía 18 o 19 años cuando leí la que, para mí, es su obra cumbre: “La guerra del fin del mundo”. Fue realmente impactante y convirtió a MVLL en una especie de superhéroe para mí. Me volví un fan incondicional. En ese momento, ya había perdido las elecciones presidenciales contra el nefasto Alberto Fujimori. Si hubiera podido votar, no habría dudado en hacerlo por Mario.

Con el paso de los años, seguí leyendo su obra, confirmando que era un escritor excepcional, el mejor escritor peruano que había leído. Sin embargo, con el tiempo, leí menos, influenciado por internet. Esto hizo que disminuyera mi lectura de libros y, por ende, no pude leer la obra completa de MVLL, aunque leí 11 de sus obras.

Con los años, mi superhéroe se fue desdibujando. Siempre se dice que hay que separar al artista de la obra, pero me resultaba difícil conciliar al Mario escritor, intachable y uno de mis favoritos, con el hecho de que defendiera la tauromaquia, algo que repruebo. Además, Mario fue un feroz crítico de Alberto Fujimori, pero años después apoyó a su hija Keiko Fujimori en su intento por alcanzar la presidencia. Esto me decepcionó profundamente. Recientemente, aceptó una condecoración de Dina Boluarte, después de que su gobierno asesinara a 50 personas en protestas pacíficas. Mario, crítico de las dictaduras, terminó apoyando a quienes compartían sus características.

El día que anunciaron su Premio Nobel, me alegré mucho. Siempre pensé que merecía ese reconocimiento. Este justo premio confirmó públicamente su monumental obra, que perdurará en el tiempo. Tu legado es enorme, aunque me apena que se vea manchado por tus decisiones políticas. Hasta siempre, Mario.

 

Super Whisper: Ditch the Keyboard, Chat with Your Computer 

Tired of typing everything out? Seriously, in this day and age, shouldn’t we be talking to our computers more? Well, guess what? You can! Say hello to Super Whisperer (www.superwhisper.com), the tool that lets you ditch the keyboard and just… talk.

This is my 1st week using Super Whisper and I am so happy 🙂

Why Yell at Your Screen Instead of Typing?

Look, we all know typing is a drag. It slows you down, messes with your flow, and can even hurt your wrists. With Super Whisperer, you can:

  • Get Stuff Done Faster: Ideas flow way quicker when you just say ’em out loud, right?
  • Save Your Wrists: No more carpal tunnel worries!
  • Multitask Like a Boss: Talk while you, like, make coffee or something.
  • Make Life Easier: Super helpful for anyone who finds typing tricky.

Apps Galore – Your Voice, Your Way

Super Whisperer plays nice with tons of apps. Wanna dictate emails in Gmail? Done. Need to voice-code in VS Code? Easy peasy. You can use it with:

  • Office stuff (Word, Excel, the whole gang)
  • Email (Gmail, Outlook, you name it)
  • Browsers (Chrome, Firefox, etc.)
  • Code editors (VS Code, PyCharm, and more)
  • And way more apps!

Make it Yours – Custom Profiles

This is where it gets cool. You can create profiles to fit your exact needs. Coders, writers, project managers – everyone wins.

  • Code with Your Voice: Imagine saying, “make a Python function, name it calculate area…” and boom, code appears! Works with Python, Java, JavaScript, and more.
  • Speak Your Language: Add your own industry terms so it gets you perfectly.
  • Custom Shortcuts: Create voice commands for anything you do a lot.

Example of Python Code Dictation:

Python
# Voice command: "define function calculate area, parameters width and height, return width times height."
def calculate_area(width, height):
    return width * height

Right now, Super Whisperer is rocking it on macOS. But don’t worry, Windows users the native version is coming soon, you can sign for the beta here: https://superwhisper.com/windows

Super Whisperer is more than just speech-to-text; it’s a whole new way to work. Now I am trying to combine Super Whisper with Cursor to talk directly with different LLMs,  I will keep you posted!

How-to install Chrome in Windows with a oneline Powershell

If you face the situation where you need a browser in a Windows system and you don’t have any or the only browser is Internet Explorer.

You can try this one-line Powershell command:

$LocalTempDir = $env:TEMP; $ChromeInstaller = "ChromeInstaller.exe"; (new-object System.Net.WebClient).DownloadFile('http://dl.google.com/chrome/install/375.126/chrome_installer.exe', "$LocalTempDir\$ChromeInstaller"); & "$LocalTempDir\$ChromeInstaller" /silent /install; $Process2Monitor = "ChromeInstaller"; Do { $ProcessesFound = Get-Process | ?{$Process2Monitor -contains $_.Name} | Select-Object -ExpandProperty Name; If ($ProcessesFound) { "Still running: $($ProcessesFound -join ', ')" | Write-Host; Start-Sleep -Seconds 2 } else { rm "$LocalTempDir\$ChromeInstaller" -ErrorAction SilentlyContinue -Verbose } } Until (!$ProcessesFound)

Problema entre módulo de AWS EKS y Terraform 14

Hice el upgrade a la versión 14 de Terraform y me encontré con un problema a la hora de intentar levantar un cluster en EKS de AWS, el error es el siguiente:

[cc lang=”bash”]Error: Unsupported Terraform Core version
on .terraform/modules/vpc/versions.tf line 2, in terraform:
2: required_version = “>= 0.12.7, > 0.14″[/cc]

Revisando el código encontré el culpable

[cc lang=”php”]module “vpc” {
source = “terraform-aws-modules/vpc/aws”
version = “2.47.0”


}[/cc]

La versión del módulo de AWS no era compatible con Terraform 14, asi que me puse a buscar una nueva versión que la soportará y resultó ser la versión 2.58 https://github.com/terraform-aws-modules/terraform-aws-vpc/releases/tag/v2.58.0

Y con eso el problema fué resuelto, espero les sirva 🙂

Lo bueno, lo malo y lo feo del 2020

El año 2020 fué un año que todo el mundo quiere olvidar porque ha sido un año nefasto y terrible, por primera vez en la historia hemos tenido una pandemia de escala global, incluso cuando ya se sabía que el virus del COVID19 se extaba expandiendo en China pocos creíamos que esto iba a salirse de control, este 2021 es el año en el que esperamos las vacunas, de cualquier forma quise hacer un resumen del 2020 en un formato que ya he usado antes en el blog.

Lo bueno
– Ningún miembro de mi familia cercana a enfermado de COVID, todos estamos sanos felizmente.
– Tengo un nuevo y fantástico trabajo como SRE (Site Reliability Engineer)
– Saqué 2 certificaciones: LFSA (Linux Foundation Certified System Administrator) y Terraform
– He estudiado mucho e incluso inicié un curso de Data Science en HarvardX
– La pandemia ha hecho que este más cerca de mi amada esposa
– La pandemia ha provocado que tenga menos gastos y pueda ahorrar un poco más
– Invertí en criptomonedas por primera vez

Lo malo
– La pandemia
– Las muertes de Eddie Van Halen, Sean Malone(Cynic), Sean Reinert (Cynic), Diego Maradona, Chadwick Boseman (Black Panther), Seann Connery, Enio Morricone, Neil Peart (Rush)
– La gente crédula que cree en conspiraciones y los antivacunas
-´Subí de peso en vez de bajar
– La U tuvo todo para campeonar pero nuevamente Gremco nos saboteó al contratar a Comizzo como entrenador.

Lo feo
– La gran cantidad de muertos por COVID19
– Las fake news, demasiada desinformación, especialmente desde el lado de la extrema derecha.
– La poca responsabilidad de la gente para seguir los cuidados propios de la pandemia, demasiado egoísmo y falta de sentido común ha campeado a escala global.
– La forma totalmente desorganizada e irresponsable en la que el gobierno peruano, encabezado por Martin Vizcarra, manejó la pandemia luego del confinamiento inicial.
– La vacancia de Vizcarra, presidencia temporal de Merino y nueva presidencia de Sagasti, todo por culpa de nuestro nefasto congreso.
– La codicia y especulación de precios durante la etapa inicial de la pandemia, hubo mucha gente que se llenó de dinero aprovechandose de la desgracia y necesidad del resto.
– Las vacunas van a tardar en llegar al Perú fruto de la ineficiencia del gobierno.