⚡️ F# Weekly #16
This edition of F# Weekly highlights the latest release of Rider 2025.1 and new features in SqlHydra 3. The newsletter covers important updates and news for F# users.
♻️ Subscribe for free now!
This edition of F# Weekly highlights the latest release of Rider 2025.1 and new features in SqlHydra 3. The newsletter covers important updates and news for F# users.
♻️ Subscribe for free now!
Sergey Tihon's Blog
F# Weekly #16, 2025 – Rider 2025.1 & SqlHydra 3
Welcome to F# Weekly, A roundup of F# content from this past week: News What’s New in Rider 2025.1 SqlHydra 3.0.0 Preview 2 of the .NET AI Template Now Available – .NET Blog Build MCP R…
⚡️ Moving Song Recommendations from F# to Haskell
This article shows how an F# code base for song recommendations was changed to Haskell. It is part of a series that uses a C# base to compare solutions with functional code.
♻️ Subscribe for free now!
This article shows how an F# code base for song recommendations was changed to Haskell. It is part of a series that uses a C# base to compare solutions with functional code.
♻️ Subscribe for free now!
blog.ploeh.dk
Porting song recommendations to Haskell
An F# code base translated to Haskell.
⚡️ Tracking Time Drift in Azure Kubernetes Service for Regulated Industries
This text explains how to check for changes in time on Azure Kubernetes Service, which is important for industries that have rules about keeping the right time. It focuses on tracking time drift to meet these needs.
♻️ Subscribe for free now!
This text explains how to check for changes in time on Azure Kubernetes Service, which is important for industries that have rules about keeping the right time. It focuses on tracking time drift to meet these needs.
♻️ Subscribe for free now!
TECHCOMMUNITY.MICROSOFT.COM
Monitoring Time Drift in Azure Kubernetes Service for Regulated Industries | Microsoft Community Hub
In this blog post, I will share how customers can monitor their Azure Kubernetes Service (AKS) clusters for time drifts using a custom container image, Azure...
⚡️ How to Get Text from PDF Files Using Python
PDF files are a common way to share information. This text explains how to use Python to pull out words and sentences from PDF files for projects with large language models or tools that look up facts.
♻️ Subscribe for free now!
PDF files are a common way to share information. This text explains how to use Python to pull out words and sentences from PDF files for projects with large language models or tools that look up facts.
♻️ Subscribe for free now!
Build5Nines
Extract Text From PDF Files With Python For Use In Generative AI And RAG Solutions | Build5Nines
When building Generative AI and Retrieval-Augmented Generation (RAG) LLM-based solutions, the quality and structure of input data significantly influences the
⚡️ PowerShell Script to Delete Empty Folders
A PowerShell script can remove empty folders inside a chosen folder. The script looks through all folders, sorts them, checks if they are empty, and then deletes the empty ones.
♻️ Subscribe for free now!
A PowerShell script can remove empty folders inside a chosen folder. The script looks through all folders, sorts them, checks if they are empty, and then deletes the empty ones.
♻️ Subscribe for free now!
Meziantou's blog
Remove empty folders using PowerShell - Gérald Barré
In this post, I describe how to remove empty folders recursively using PowerShell.
⚡️ OpenAI Adds Structured Output to GPT-4o
OpenAI now lets users get responses from the GPT-4o model that follow a set JSON Schema. Users can use the sp_invoke_external_rest_endpoint feature to receive answers in a strict format instead of free text.
♻️ Subscribe for free now!
OpenAI now lets users get responses from the GPT-4o model that follow a set JSON Schema. Users can use the sp_invoke_external_rest_endpoint feature to receive answers in a strict format instead of free text.
♻️ Subscribe for free now!
Microsoft News
Predictable LLM results with Structured Output and sp_invoke_external_rest_endpoint
Transform your data handling with LLM structured output from Azure SQL and SQL Server using JSON Schema for precise responses.
⚡️ Scaling Azure Cosmos DB Vector Search to 1 Billion Vectors
The article shows how Azure Cosmos DB with DiskANN can search through 1 billion vectors and keep search times under 100 milliseconds. It also explains how this is done while keeping recall rates above 90 percent and staying cost-effective.
♻️ Subscribe for free now!
The article shows how Azure Cosmos DB with DiskANN can search through 1 billion vectors and keep search times under 100 milliseconds. It also explains how this is done while keeping recall rates above 90 percent and staying cost-effective.
♻️ Subscribe for free now!
Microsoft News
Azure Cosmos DB with DiskANN Part 2: Scaling to 1 Billion Vectors with
Introduction In the first part of our series on Azure Cosmos DB Vector Search with DiskANN, we explored the fundamentals of vector indexing and search capabilities using Azure Cosmos DB for NoSQL and demonstrated a few early performance and cost characteristics.…
⚡️ Azure Firewall Log Tables Added to Basic Monitor Plan
Azure Firewall's resource-specific log tables are now supported by the Azure Monitor Basic plan. This means these log tables can be used with the Basic monitoring service.
♻️ Subscribe for free now!
Azure Firewall's resource-specific log tables are now supported by the Azure Monitor Basic plan. This means these log tables can be used with the Basic monitoring service.
♻️ Subscribe for free now!
Microsoft
Azure updates | Microsoft Azure
Subscribe to Microsoft Azure today for service updates, all in one place. Check out the new Cloud Platform roadmap to see our latest product plans.
⚡️ Cross-Region Data Transfer in Azure Data Box Devices
Azure Data Box devices now support sending data to locations in other regions. This means users can move data across different Azure regions using these devices.
♻️ Subscribe for free now!
Azure Data Box devices now support sending data to locations in other regions. This means users can move data across different Azure regions using these devices.
♻️ Subscribe for free now!
Microsoft
Azure updates | Microsoft Azure
Subscribe to Microsoft Azure today for service updates, all in one place. Check out the new Cloud Platform roadmap to see our latest product plans.
⚡️ Azure Ultra Disk Storage Opens in Spain Central
Azure Ultra Disk Storage can now be used in the Spain Central region. This gives people in that area access to fast and steady data storage.
♻️ Subscribe for free now!
Azure Ultra Disk Storage can now be used in the Spain Central region. This gives people in that area access to fast and steady data storage.
♻️ Subscribe for free now!
Microsoft
Azure updates | Microsoft Azure
Subscribe to Microsoft Azure today for service updates, all in one place. Check out the new Cloud Platform roadmap to see our latest product plans.
⚡️ Sync Google and GitHub Users to PostgreSQL With Neon Auth
Neon Auth links user profiles from Google and GitHub logins with your PostgreSQL database in Stack Auth. This allows user information to update in the database without extra code.
♻️ Subscribe for free now!
Neon Auth links user profiles from Google and GitHub logins with your PostgreSQL database in Stack Auth. This allows user information to update in the database without extra code.
♻️ Subscribe for free now!
Anton Dev Tips
How to Sync Users Logged in by Google and GitHub to Your Database With Neon Auth for Free
Discover how Neon Auth automatically synchronizes user profiles logged in by Google and GitHub in Stack Auth - directly into your PostgreSQL database. Learn how to simplify user management, avoid writing your own sync logic, and focus on building great features.
⚡️ Exploring New Dependency Injection Scopes
This post looks at some experimental dependency injection scopes that give more features than the usual Singleton, Scoped, and Transient lifetimes. It explains how these new scopes work and what they can add.
♻️ Subscribe for free now!
This post looks at some experimental dependency injection scopes that give more features than the usual Singleton, Scoped, and Transient lifetimes. It explains how these new scopes work and what they can add.
♻️ Subscribe for free now!
Andrew Lock | .NET Escapades
Going beyond singleton, scoped, and transient lifetimes
In this post I investigate some 'experimental' dependency injection scopes that provide additional features over Singleton, Scoped, and Transient
⚡️ Azure Cosmos DB Conf 2025 Recap
On April 15, 2025, people from many countries joined a free online event about Azure Cosmos DB. The event showed how teams use Azure Cosmos DB for building apps with AI and for working on a global scale, with live demos and real stories.
♻️ Subscribe for free now!
On April 15, 2025, people from many countries joined a free online event about Azure Cosmos DB. The event showed how teams use Azure Cosmos DB for building apps with AI and for working on a global scale, with live demos and real stories.
♻️ Subscribe for free now!
Microsoft News
Azure Cosmos DB Conf 2025 Recap: AI, Apps & Scale
Discover how Azure Cosmos DB enables globally distributed applications at Azure Cosmos DB Conf 2025 with expert insights and demos.
⚡️ New Version of Azure Data Box Devices Announced
The next generation of Azure Data Box devices has been announced. These devices are used for moving and storing data with Microsoft Azure.
♻️ Subscribe for free now!
The next generation of Azure Data Box devices has been announced. These devices are used for moving and storing data with Microsoft Azure.
♻️ Subscribe for free now!
Microsoft
Azure updates | Microsoft Azure
Subscribe to Microsoft Azure today for service updates, all in one place. Check out the new Cloud Platform roadmap to see our latest product plans.
⚡️ Microsoft Shares New Sentinel Connectors at RSAC 2025
Microsoft has announced new connectors for Sentinel at RSAC 2025. These connectors help bring more data into Sentinel for better security monitoring.
♻️ Subscribe for free now!
Microsoft has announced new connectors for Sentinel at RSAC 2025. These connectors help bring more data into Sentinel for better security monitoring.
♻️ Subscribe for free now!
TECHCOMMUNITY.MICROSOFT.COM
RSAC 2025 new Microsoft Sentinel connectors announcement | Microsoft Community Hub
Microsoft Sentinel is a leading cloud-native security information and event management (SIEM) solution that helps...
⚡️ AI Dev Gallery Brings Local AI Tools to Windows
The new AI Dev Gallery is a Windows app that gives users local AI samples, lets them easily download models, and export source code. It is made with .NET AI building blocks.
♻️ Subscribe for free now!
The new AI Dev Gallery is a Windows app that gives users local AI samples, lets them easily download models, and export source code. It is made with .NET AI building blocks.
♻️ Subscribe for free now!
Microsoft News
Introducing the AI Dev Gallery: Your Gateway to Local AI Development with .NET
Discover the new AI Dev Gallery, a Windows application that provides interactive local AI samples, easy model downloads, and source code export - all built with .NET AI building blocks.
⚡️ Instance Mix for VM Scale Sets Now Generally Available
Instance Mix for Virtual Machine Scale Sets with Flexible Orchestration Mode is now generally available. This allows use of different types of virtual machines in one scale set.
♻️ Subscribe for free now!
Instance Mix for Virtual Machine Scale Sets with Flexible Orchestration Mode is now generally available. This allows use of different types of virtual machines in one scale set.
♻️ Subscribe for free now!
TECHCOMMUNITY.MICROSOFT.COM
General Availability: Instance Mix for Virtual Machine Scale Sets with Flexible Orchestration Mode
Today we're announcing the General Availability of Instance Mix on Virtual Machine Scale Sets with Flexible Orchestration Mode, enabling customers to mix &...
⚡️ Official SignalR Swift Client for iOS in Public Preview
The official SignalR Swift client is now in public preview for iOS. Before this, developers had to use community-built clients or make their own, which could cause problems with updates and working together.
♻️ Subscribe for free now!
The official SignalR Swift client is now in public preview for iOS. Before this, developers had to use community-built clients or make their own, which could cause problems with updates and working together.
♻️ Subscribe for free now!
Microsoft News
Building Real‑Time iOS Apps with SignalR: Introducing the Official Swift Client (Public Preview)
Introduction Until now, iOS developers who wanted real‑time, bi‑directional communication with SignalR had to rely on community‑built clients or roll their own Swift implementation—both of which introduced maintenance and compatibility headaches. We’re excited…
⚡️ 5 Key Insights on Data, AI, and Cloud Technology Leadership
Leaders in data, AI, and cloud technology share five main insights about changes in digital platforms. They talk about how they manage and guide teams through these big changes in technology.
♻️ Subscribe for free now!
Leaders in data, AI, and cloud technology share five main insights about changes in digital platforms. They talk about how they manage and guide teams through these big changes in technology.
♻️ Subscribe for free now!
Microsoft Azure Blog
5 insights from the front lines of the platform shift | Microsoft Azure Blog
Learn more about how leaders at the forefront of data, AI, and cloud technologies are leading through the platform shift, please listen, follow, and subscribe to Leading the Shift.
⚡️ Sync Secrets Between HashiCorp Vault and Azure Key Vault Using Terraform
This text explains how to use Terraform to move secret data between HashiCorp Vault and Azure Key Vault. It shows the steps to keep secrets in both tools the same.
♻️ Subscribe for free now!
This text explains how to use Terraform to move secret data between HashiCorp Vault and Azure Key Vault. It shows the steps to keep secrets in both tools the same.
♻️ Subscribe for free now!
TECHCOMMUNITY.MICROSOFT.COM
Syncing Secrets Between HashiCorp Vault and Azure Key Vault with Terraform | Microsoft Community Hub
In today's cloud-native world, managing secrets securely across different platforms is crucial. HashiCorp Vault and Azure Key Vault are two popular tools for...