Consistently particpate in the process and the outcomes take care of themselves.
14.11.2025 18:33 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
Introducing Microsoft Agent Framework: An Open-Source Engine for Agentic AIย
Innovation in recent years in the conversational and agent AI space has been wild.
Microsoft have recently shipped a new open-source engine that brings together the best bits from Semantic Kernel, AutoGen and the Process Framework.
In this blog post, I pull together some of the recent announcements, what it means for you, and weave in some of my own thoughts.
We cover:
Microsoft Agent Framework
Why Agents Need a New Foundation
The Paradox of Choice
What this means for Semantic Kernel, Process Framework and AutoGen
What This Means for Your Current Project
How long will Semantic Kernel Be Support for
Microsoftโs Official Position
Azure AI Foundry Integration
Signals to Pay Attention To
The AI Timeline and Looking Ahead
ย
An Example of the Agent Framework in Action is also included.ย Letโs dig in.
~
Why Agents Need a New Foundation
In these last 18 months, there have been many disconnected SDKs, platforms and approaches when it comes to shipping AI age
[BLOGGED]
Introducing Microsoft Agent Framework: An Open-Source Engine for Agentic AI
In this blog post, I pull together recent announcements, what it means for you, and weave in some of my own thoughts.
Examples of the Agent Framework in action is also included.
Read:
14.11.2025 18:14 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
Why I Built a SaaS Boilerplate and Why You Should Use It
I built a white-label SaaS boilerplate to save me from reinventing the wheel every time I had an itch to scratch with a SaaS idea.
Read:
https://jamiemaguire.net/index.php/2025/09/26/why-i-built-a-saas-boilerplate-and-why-you-should-use-it/
14.11.2025 06:55 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
Building an AI Home Security System Using .NET, Python, CLIP, Semantic Kernel, Telegram, and Raspberry Pi 4 โ Part 5: Refinements and Recap
In part 5 of this mini-series, we bring together all main components to form the end-to-end solution for the AI home security system.
We also refine and refactor some of the original Python code.
To recap, this home security system uses motion detection, image capture, and AI-powered person recognition to distinguish between known persons (family, friends) and potential intruders.
It sends alerts when unknown persons are detected.
~
System Components
Itโs worth a recap of the hardware and software components that form the solution.
Hardware
The hardware consists of:
Raspberry Pi 4
Camera module
PIR motion sensor connected to GPIO
Bluetooth speaker for local alerts
ย
An old laptop is also used to host a .NET API.
Software
Some of the files have been renamed to ease readability, the following software components are used in the solution:
audioplayer.py - audio alert functions
botmessage.py - Telegram messaging functions
ClipServer.py - Python server running C
[BLOGGED]
Building an AI Home Security System Part 5.
Details:
https://jamiemaguire.net/index.php/2025/08/09/building-an-ai-home-security-system-using-net-python-clip-semantic-kernel-telegram-and-raspberry-pi-4-part-5-refinements-and-recap/
14.11.2025 06:14 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
Nothing will convince me that software development must happen in an office.
13.11.2025 21:05 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
Building an AI Home Security System Using .NET, Python, CLIP, Semantic Kernel, Telegram, and Raspberry Pi 4 โ Part 4: Extending the Telegram Bot for Remote Control Image Classification
This is the fourth instalment of a miniseries where you see how to build an end-to-end AI home security and cross platform system.
To recap, the main requirements for this system are:
Detect motion and capture photo
Create message with photo attached
Send message to defined Telegram bot
Detect who is in the photo, if the person is me, then do not invoke the Telegram bot with a message and image
ย
I recommend reading the following before continuing:
Part 1 โ Introduction, Hardware, Motion Detection and Telegram Bot
Part 2 โ Creating a Local CLIP Server for Image Vectorisation
Part 3 โ Create a Local AI Custom Vision API for Training and Matching Images
ย
In part 4, we extend the existing Telegram bot.
It will be extended to allow the management of AI image functionality with the API from part 3, from a cell phone.
This means you donโt need to be at a computer to train the AI with new data or to test the image recognition capability.
~
The following detai
[BLOGGED]
Building an AI Home Security System Using .NET, Python, CLIP, Semantic Kernel, Telegram, and Raspberry Pi 4 โ Part 4: Extending the Telegram Bot for Remote Control Image Classification
In part 4, we extend the Telegram bot.
Read here.
13.11.2025 18:14 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
Capturing memories using dailytracker.co
13.11.2025 13:13 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
Building an AI Home Security System Using .NET, Python, CLIP, Semantic Kernel, Telegram, and Raspberry Pi 4 โ Part 3: Creating a Local AI Custom Vision API for Training and Matching Images
This is the third instalment of a miniseries where you will learn how to build an end-to-end AI home security and cross platform system.
I recommend reading part 1 and part 2 before reading on.
To recap, the main requirements for this system are:
Detect motion and capture photo
Create message with photo attached
Send message to defined Telegram bot
Detect who is in the photo, if the person is me, then do not invoke the Telegram bot with a message and image
ย
In part 2, we created a locally running CLIP server.ย This provided an API endpoint that could accept a single image.
The input image was then converted to vectors.ย When in vector format, the image data is much easier to run comparisons against.
~
.NET API Capabilities
In this blog post, we implement a .NET API.ย The .NET API will leverage the core CLIP functionality but will expose 2 endpoints:
/api/image/train
/api/image/match
ย
The /train endpoint will let us train the system with
[BLOGGED]
Building an AI Home Security System - Part 3: Creating a Local AI Custom Vision API for Training and Matching Images
In this blog, we create a .NET API that leverages the CLIP API from the previous blog in the series.
Code and demo
https://rpst.page.link/ErSq
13.11.2025 06:55 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
It's a great time to be a developer.
13.11.2025 06:14 โ ๐ 1 ๐ 1 ๐ฌ 0 ๐ 0
Building an AI Home Security System Using .NET, Python, CLIP, Semantic Kernel, Telegram, and Raspberry Pi 4 โ Part 2
This is the second instalment of a miniseries where I am building an end-to-end AI home security and cross platform system.
I recommend reading Part 1 before reading on.ย To recap, the main requirements for this system are:
ย
Detect motion
Capture photo
Create message with photo attached
Send message to defined Telegram bot
Detect who is in the photo, if the person is me, then do not invoke the Telegram bot with a message and image
ย
In this blog post, we implement core functionality that lets us convert images to vectors using OpenAIs free CLIP SDK and ViT-B-32 model.
These can then be used to perform real-time similarity checks against new incoming data.
~
What is CLIP
CLIP (Contrastive LanguageโImage Pre-training) is an AI model developed by OpenAI that can understand the relationship between images and text.
CLIP makes it easy for you to encode images into high-dimensional vectors (embeddings). With images in vector format, you can then perform:
[BLOGGED]
Building an AI Home Security System Using .NET, Python, CLIP, Semantic Kernel, Telegram, and Raspberry Pi 4 โ Part 2
CLIP.
Details:
https://jamiemaguire.net/index.php/2025/05/11/building-an-ai-home-security-system-using-net-python-clip-semantic-kernel-telegram-and-raspberry-pi-4-part-2/
12.11.2025 21:05 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
Got an idea?
Set a deadline.
Build it. Ship it. Market it.
See how it goes!
12.11.2025 13:13 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
Yes.
12.11.2025 12:49 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
[NEW COURSE]
ChatGPT Pro: OpenAI o3-mini
My course is live on Pluralsight.
Details:
https://jamiemaguire.net/index.php/2025/04/26/my-new-course-chatgpt-pro-openai-o3-mini-is-live-on-pluralsight/
12.11.2025 06:55 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
Building an AI Home Security System Using .NET, Python Semantic Kernel, Telegram, and Raspberry Pi 4 โ Part 1
In an earlier blog post I detailed how to create basic home security system using Raspberry Pi Zero 2.
ย
In this blog post, I show how to create an AI home security system using .NET, Python, Semantic Kernel a Telegram Bot, Raspberry Pi 4 and Open AI.
ย
This is part 1 of a 2-part series.
ย
In part 1, we learn about:
Required hardware and software
Main requirements
Installing and testing the camera module
Installing and testing the PIR sensor
Creating Python code to detect movement
Creating Python code to capture an image
Creating Python code sends a notification and image to a telegram bot
ย
Itโs a lot to cover so has been split into 2 parts.ย Letโs dive in.
~
Requirements
The main requirements for the solution are:
Detect motion
Capture photo
Create message with photo attached
Send message to defined Telegram bot
Detect who is in the photo, if the person is me, then do not invoke the Telegram bot with a message and image
&nb
[BLOGGED]
Building an AI Home Security System Using .NET, Python Semantic Kernel, Telegram, and Raspberry Pi 4 โ Part 1
Read:
https://jamiemaguire.net/index.php/2025/04/19/building-an-ai-home-security-system-using-net-python-semantic-kernel-telegram-and-raspberry-pi-4-part-1/
12.11.2025 06:14 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
[BLOGGED]
Evaluating Your Generative AI Solution Responses using Microsoft.Extensions.AI.Evaluation
Read more:
https://jamiemaguire.net/index.php/2025/03/08/evaluating-your-generative-ai-solution-responses-using-microsoft-extensions-ai-evaluation/
11.11.2025 06:14 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
ASP.NET Core | Open-source web framework for .NET
Build web apps and services that run on Windows, Linux, and macOS using C#, HTML, CSS, and JavaScript. Get started for free on Windows, Linux, or macOS.
[SOURCE-CODE] Bulk Alt-Text Generator
I hacked together a bulk alt-text generator web app.
A time saver if you need to bulk create alt-text for many images.
It uses ASP.NET and Azure AI services.
Code here: https://github.com/jamiemaguiredotnet/AltTextGenerator/tree/master
10.11.2025 13:13 โ ๐ 0 ๐ 0 ๐ฌ 0 ๐ 0
Good morning.
08.11.2025 07:09 โ ๐ 1 ๐ 0 ๐ฌ 0 ๐ 0
Indie makers and solopreneurs: Get free backlinks from high-DA SaaS directories and launch sites at ๐ https://lin-k.to !
https://rocketproof.io (SEO for SaaS)
https://chat-control.eu - Protect your privacy!
Christpilled.com
Trimlessforgmail.com
Microsoft Azure MVP | Senior Platform Engineer | Speaker | @AzureCommUG | Blog http://nicholaschangblog.com | Works at kainos.com #MVP
I consume tech, love dogs, and songs.[Tรผrkรงe / English]
Committed to the daily re-imagining of what a university press can be since 1962.
Website: https://mitpress.mit.edu // The Reader (our home for excerpts, essays, & interviews): https://thereader.mitpress.mit.edu
Helping you become a better software engineer ๐ช
YouTube: https://YouTube.com/@DevLeader
Newsletter: https://subscribe.devleader.ca
Principal Software Engineering Manager at Microsoft. Views are my own.
UK based dotnet Software engineer by day (since 1996). Dad of 1 and husband by night. Trying to be a parent while being a nerd and geek.
Check out my blog https://blog.markoliver.website & local tech meetup https://devdottalk.uk/
#Bournemouth #Dorset
MCT/MCSA/MCSE, Microsoft Specialist ... Admin from begin of life :) โฆ long live Admins ! I love automation #PowerShell #Azure #M365 #sysOps #PanMichal #MCT #AzOps #DevOps
IBM Distinguished Engineer, CTO, architect, RHCE and Mets fan.
Views are my own
computer security person. former helpdesk.
The #1 Raspberry Pi & Maker superstore! Official Raspberry Pi reseller.
๐Store - https://thepihut.com/
โ๏ธ Support - https://support.thepihut.com
โจ #ESPC25 ๐Dublin ๐
Dec 1-4 2025
https://bit.ly/3YXD73Y
๐ณ๐ฑ Microsoft Cloud and Infrastructure Architect/Consultant. MSFT. Sometimes talks in GIF. Words are my own. Also on @martijnbrant@mastodon.nl
Welcome to the M365 Show โ your essential podcast for everything Microsoft 365, Azure, and beyond. Join us as we explore the latest developments across Power BI, Power Platform,Teams, Fabric, Purview, Security, and the entire Microsoft ecosystem.
#Microsoft365 Developer Advocate @ #Microsoft, Microsoft 365 community member, #DevProxy, #CLIMicrosoft365, Microsoft 365 #Copilot
https://blog.mastykarz.nl
https://github.com/waldekmastykarz
CEO @fixant.bsky.social โข Artist โข Gen AI courses & training โข How can I help?
Serial Entrepreneur and Engineer. Trying to maximize life while building cool things. ๐จ๐ฆ Building:
๐ https://local-leads.ai
๐ https://getbluepilot.com
๐งฒ https://tactycs.io
Software Developer / Desarrollador
de Software. ๐ช๐ธ โ
#Python, #Java, #TypeScript & #JavaScript.
Embracing #CleanCode, #TDD, #XP #DDD
sergioperea.is-a.dev
๐ง๐พโ๐ปOSS Contributor (dasBlog)
๐ขPM @ Microsoft (Visual Studio, Core AI)
๐๐๐ธ
โ๏ธ
poppastring.com/blog
New kid on the Bluesky - Azure, Drums, Family
MVP Alumni - Azure Specialist
C# Developer // Part Time Solo Indie #GameDev @ Darkflux Games // #Unity // Half Man, Half Beer ๐บ // trev@darkflux.games
โญ Made Tank Warz! (https://store.steampowered.com/app/707950/Tank_Warz)
๐ https://bio.link/antisilence