viernes, 29 de agosto de 2025

Alibaba: Exciting developments in the AI chip landscape!

Due to trade tensions, first was not to sell some GPUs to China and then was 50% tax on revenue when NVDA sells GPUs to China.

Now, Alibaba is performing a broader range of inference tasks with their own new chips. This strategic shift seems to be paying off, as the company just reported a impressive 26% jump in revenue within its cloud computing segment!
hashtagAI hashtagArtificialIntelligence hashtagAlibaba hashtagCloudComputing hashtagTechInnovation hashtagGPUs
 

diagram 

viernes, 22 de agosto de 2025

Update frigate docker image


If the docker image is running currently. First we need to try download the latest or stable version:
docker pull ghcr.io/blakeblackshear/frigate:stable

Or this option:
docker pull ghcr.io/blakeblackshear/frigate:0.16.0

Then if you are running with docker compose:
docker compose down frigate

Then run docker compose up:
docker compose up -d


martes, 19 de agosto de 2025

A future with VMware?

 A future with VMware? 🤔

The reality many IT leaders are facing today with VMware:
-Licensing changes that complicate budgeting
-Endless price increases squeezing margins

Reports indicate that some customers have faced price hikes ranging from three to six times their previous costs, with the most extreme case being a reported twentyfold increase!

More and more IT teams are making migration plans, exploring open-source solutions like Proxmox or moving to public cloud platforms. The question isn't if companies will migrate from VMware, but when.

Ready to discuss life after VMware? 🤝 The future of virtualization is changing—I am here to help you:
www.delrioworks.com

hashtagVMware hashtagBroadcom hashtagVirtualization hashtagITStrategy hashtagCloudMigration hashtagProxmox hashtag

No alternative text description for this image

jueves, 14 de agosto de 2025

Today, saw something exciting in my Blog Analytics: traffic from ChatGPT!

This is not only a click. It is the AI web browser visiting the blog, essentially using my content as a trusted source to answer user questions.

A huge vote of confidence. The content is not just reaching people; it is informing the plataforms are changing how people get information!


 No alternative text description for this image

miércoles, 13 de agosto de 2025

This meeting is being recorded for quality purposes

"This meeting is being recorded for quality purposes." Sound familiar? 🎙️

While companies rush to record every meeting, they're creating massive security vulnerabilities. ⚠️ What's really being captured in those recordings:
-Confidential business strategies and financial data
-Personal conversations and sensitive HR discussions
-Client and proprietary details
-Internal passwords and security protocols

The risks:
🔹 Data breach exposure - One compromised system = thousands of sensitive recordings leaked
🔹 Insider threats - More people accessing recordings than attended the meeting
🔹 Compliance issues - GDPR, HIPAA violations around recorded data
🔹 Poor storage security - Recordings stored indefinitely without proper controls

Recent breaches show recorded meetings are goldmines for attackers, yet many treat them as low-risk data.
Better approach: ✅ Record only when absolutely necessary ✅ Strict access controls and retention policies ✅ Encrypt everything and audit regularly

Concerned about your organization's recording policies? 🤝 Repost to raise awareness! 🔄

 chart, line chart

martes, 12 de agosto de 2025

 

Cloud growth report, Amazon's stock took a 7% hit following their latest earnings call.

-AWS remains the undisputed leader in cloud infrastructure, but here's what caught investors' attention: growth has decelerated to around 18% year-over-year. While still solid growth by most standards, it's the slowest pace we've seen from AWS in recent quarters.

-The competitive landscape is tightening. Microsoft Azure, though still about 60% the size of AWS, continues to close the gap with aggressive growth rates.

Are we seeing the beginning of a new chapter in enterprise infrastructure?

chart, line chart

viernes, 8 de agosto de 2025

My ubuntu workstation setup

Just to take notes about my ubuntu setup. This weekend, I did a fresh install of Ubuntu on my MiniPC. 

sudo apt update

sudo apt upgrade 

sudo apt install nmap

sudo apt install curl

sudo apt install solaar vim

sudo apt install remmina

sudo snap connect remmina:audio-record :audio-record
sudo snap connect remmina:avahi-observe :avahi-observe
sudo snap connect remmina:cups-control :cups-control
sudo snap connect remmina:mount-observe :mount-observe
sudo snap connect remmina:password-manager-service :password-manager-service
sudo snap connect remmina:ssh-keys :ssh-keys
sudo snap connect remmina:ssh-public-keys :ssh-public-keys 

sudo apt install gnome-shell-extension-gsconnect 

 

sudo add-apt-repository ppa:solaar-unifying/stable

sudo apt update

sudo apt install solaar 

cd /etc/udev/rules.d 

sudo curl -O https://raw.githubusercontent.com/pwr-Solaar/Solaar/master/rules.d-uinput/42-logitech-unify-permissions.rules 

cd


Install python requirements

sudo apt install python3-venv
sudo ln -s /usr/bin/python3 /usr/bin/python

# Download and install nvm:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash

# in lieu of restarting the shell
\. "$HOME/.nvm/nvm.sh"

# Download and install Node.js:
nvm install 24

# Verify the Node.js version:
node -v # Should print "v24.11.1".

# Verify npm version:
npm -v # Should print "11.6.2".


 

Upgrade nodejs

sudo npm install n -g

For the latest stable version:

n stable

For the latest version:

n latest

 

Install terraform

sudo apt-get update && sudo apt-get install -y gnupg software-properties-common
 
wget -O- https://apt.releases.hashicorp.com/gpg | \
gpg --dearmor | \
sudo tee /usr/share/keyrings/hashicorp-archive-keyring.gpg > /dev/null
 
gpg --no-default-keyring \
--keyring /usr/share/keyrings/hashicorp-archive-keyring.gpg \
--fingerprint
 
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/hashicorp-archive-keyring.gpg] https://apt.releases.hashicorp.com $(grep -oP '(?<=UBUNTU_CODENAME=).*' /etc/os-release || lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/hashicorp.list
 
sudo apt update
 
sudo apt-get install terraform


Install L2TP

sudo add-apt-repository ppa:nm-l2tp/network-manager-l2tp

sudo apt-get install network-manager-l2tp network-manager-l2tp-gnome

 

Install Docker

# Add Docker's official GPG key:
sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/ubuntu/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc

# Add the repository to Apt sources:
echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/ubuntu \
  $(. /etc/os-release && echo "${UBUNTU_CODENAME:-$VERSION_CODENAME}") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update

 

sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin 

sudo docker run hello-world

sudo groupadd docker

sudo usermod -aG docker $USER 

newgrp docker

 

Install indicator multiload

sudo apt install indicator-multiload 

 

Install aws-cli and aws sam 

snap install aws-cli --classic 

Download the AWS SAM CLI .zip file to a directory of your choice.

unzip aws-sam-cli-linux-x86_64.zip -d sam-installation

sudo ./sam-installation/install 

sam --version 

npm install -g aws-cdk


Install OBS Studio

sudo add-apt-repository ppa:obsproject/obs-studio
sudo apt update
sudo apt install obs-studio


 


Windsurf installation 

sudo apt-get install wget gpg
wget -qO- "https://windsurf-stable.codeiumdata.com/wVxQEIWkwPUEAGf3/windsurf.gpg" | gpg --dearmor > windsurf-stable.gpg
sudo install -D -o root -g root -m 644 windsurf-stable.gpg /etc/apt/keyrings/windsurf-stable.gpg
echo "deb [arch=amd64 signed-by=/etc/apt/keyrings/windsurf-stable.gpg] https://windsurf-stable.codeiumdata.com/wVxQEIWkwPUEAGf3/apt stable main" | sudo tee /etc/apt/sources.list.d/windsurf.list > /dev/null
rm -f windsurf-stable.gpg 

sudo apt install apt-transport-https
sudo apt update

sudo apt install windsurf


From App Center install
gimp

vscode

vlc

 

From websites install

zoom

webex

winbox 

 

On vscode install

platformio

python

postman

hashicorp


Install k6

sudo gpg -k
sudo gpg --no-default-keyring --keyring /usr/share/keyrings/k6-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys C5AD17C747E3415A3642D57D77C6C491D6AC1D69
echo "deb [signed-by=/usr/share/keyrings/k6-archive-keyring.gpg] https://dl.k6.io/deb stable main" | sudo tee /etc/apt/sources.list.d/k6.list
sudo apt-get update
sudo apt-get install k6 

 

jueves, 7 de agosto de 2025

My email was found on 8 different data breaches. This isn't just my story...

Here's what's really concerning me recently how people normalized recording every call, every brainstorm, every confidential discussion creating massive digital footprints of sensitive conversations.

Crazy, so more data to be scrapped!

Other one, a staggering 16 billion passwords were recently exposed in what's being called a record-breaking breach.

People don't know the danger that this represent; More with AI entering the field. 

graphical user interface, application 

 

How to check if your email is on data breaches?

One popular website is https://haveibeenpwned.com

This site serves two primary purposes for me: firstly, it obviously provides a service to the public. Data breaches are rampant and many people don't appreciate the scale or frequency with which they occur. By aggregating the data here I hope that it not only helps victims learn of compromises of their accounts, but also highlights the severity of the risks of online attacks on today's internet.

Secondly, the site provided me with an excellent use case for putting a number of technologies through their paces and keeping my hands-on skills somewhat current. Projects like this are an excellent way of staying relevant as my day job increasingly focuses more on software management and less on actually building things (which I happen to love doing!) It's been an enormously fulfilling journey that I've invited others to join me on by way of often blogging in depth about the process, something I intend to keep up as the site inevitably evolves over time.