#Python – Update all Python Packages using pip with #PowerShell

Hi ! Here is a small script that I always go back to search in my notes. I found this on internet sometime ago, and is the easiest way to update all packages in a specific environment using pip and PowerShell: pip freeze | %{$_.split(‘==’)[0]} | %{pip install –upgrade $_} Depending on your environment, it…… Continue reading #Python – Update all Python Packages using pip with #PowerShell

#Coding4Fun – How to control your #drone with 20 lines of code! (4/N)

Hi! The DJI Drone is a great device, you can have a lot of fun and also learn a lot. However, because the main way to interact with the device is via WIFI and UDP, you need to connect to the device WIFI. And, connecting and disconnecting to the is some times not a very…… Continue reading #Coding4Fun – How to control your #drone with 20 lines of code! (4/N)

#RaspberryPi – How to solve the SSH warning: WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!

Hi ! When you test and play around with your Raspberry Pi, you may need to format again your Raspbian SD Card, and then start everything from scratch. This is a trivial process, and is usual to setup the device to connect automatically to a Wifi network and also enable SSH (I wrote about this,…… Continue reading #RaspberryPi – How to solve the SSH warning: WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!

#Windows10 – Cleaning some disk space, Windows SDK and #dotnetcore installs

Hi! I’m very careful with my disk space, however my C: drive in Windows 10 started to claim about low space. I got 3 disks on my machine, 2 SSDs and a regular one; and I always check to install all my software on my D: drive. So, that’s why running low space on C:…… Continue reading #Windows10 – Cleaning some disk space, Windows SDK and #dotnetcore installs

#Flow – Detener el salva pantallas utilizando botones Flic, procesos con @microsoftflow, @powershell y mucho mas ! (gracias @ShortcutLabs)

Buenas ! Llevar adelante un Centro de Innovación es una experiencia que es 50% de problemas y 50% de diversión. En estos momentos estamos actualizando nuestro IC en Toronto, y esto significa que tenemos muchas nuevas screens (entre otras cosas) y esto también supone un desafío al momento de pensar en ahorro de energía. Por…… Continue reading #Flow – Detener el salva pantallas utilizando botones Flic, procesos con @microsoftflow, @powershell y mucho mas ! (gracias @ShortcutLabs)

#CustomVision – Analizando imágenes en una Console App utilizando un proyecto de #CustomVision en #Docker Container

Buenas ! Este es un post especial, ya que es el 1ro que escribo completamente desde mi . Estoy seguro que  Javier (@jsuarezruiz), Yeray (@JosueYeray), Braulio (@braulio_sl), Luis, Sara, Roberto y otros mac users estarían orgullosos de mi 😀 Basado en el post anterior, he compilado y ejecutado mi proyecto Custom Vision Marvel en Docker…… Continue reading #CustomVision – Analizando imágenes en una Console App utilizando un proyecto de #CustomVision en #Docker Container

#CustomVision – Analyzing images in a Console App using a #CustomVision project in a #Docker Container

Hi ! This is a special post. It’s the 1st one I write completely in my MacBook, so I’m sure that Javier (@jsuarezruiz), Yeray (@JosueYeray), Braulio (@braulio_sl), Luis, Sara, Roberto and other mac users will be proud of me 😀 So, I build and run my Custom Vision Marvel project in Docker for Mac. Smooth…… Continue reading #CustomVision – Analyzing images in a Console App using a #CustomVision project in a #Docker Container

#CustomVision – Utilizando un proyecto Custom Vision en un #Docker Container local

Buenas ! Ahora que ya tengo en funcionamiento Docker en Windows 10 es tiempo de exportar un proyecto de CustomVision y ejecutarlo dentro de un container. Cuando exportamos hay 2 version disponibles: Linux or Windows En mi caso no pude compilar la versión de Windows, asi que trabajare con la versión de Linux. El zip…… Continue reading #CustomVision – Utilizando un proyecto Custom Vision en un #Docker Container local

#CustomVision – Running a Custom Vision project in a local #Docker Container

Hi ! So now that I have Docker running in Windows 10, it’s time to use a Custom Vision model in Windows hosted in Docker container. There are 2 version available to export from CustomVision.ai for each one the projects: Linux or Windows I could not sucessfully built the Windows version, so I’ll work with…… Continue reading #CustomVision – Running a Custom Vision project in a local #Docker Container

#PowerShell – Download all MS Ignite videos and slides in a single click (thanks @mderooij!)

Hi ! Last week I shared a powershell script created by Jon Galloway to download videosn from Channel 9. So, Microsoft Ignite is finished, and someone pick the idea and created a similar one which also includes video and slides download features. We need to thanks to Michel de Rooij (@mderooij), who is the author…… Continue reading #PowerShell – Download all MS Ignite videos and slides in a single click (thanks @mderooij!)