Llama 3.1 The open source AI model you can fine-tune, distill and deploy anywhere. Our latest models are available in 8B, 70B, and 405B variants.
Announcing .NET Conf: Focus on AI - August 20th 2024 - .NET Blog We're thrilled to announce the upcoming .NET Conf: Focus on AI, happening on August 20th! This one-day, virtual event will be packed with insightful sessions from both the community and Microsoft teams, showcasing how you can infuse your .NET applications...
CockroachDB and Postgres - Releasing Locked Rows with idle_in_transaction_session_timeout | no dogma blog CockroachDB and Postgres let you lock a row with a select if you intend to update it, but what if the transaction gets stuck and the row remains locked? The idle_in_transaction_session_timeout setting can help with this.
CockroachDB and Postgres SELECT FOR UPDATE and SKIP LOCKED | no dogma blog With CockroachDB and Postgres, combining the SELECT FOR UPDATE and SKIP LOCKED statements can help you handle concurrent access to the same table.
Doing Background Work with a Hosted Service in Web API | no dogma blog Adding a background service to Web API is easy to do, here's how. (Not saying you should do this!)
Running Postgres in Docker | no dogma blog A simple example of running Postgres in Docker with a password set, and a port exposed.
Running CockroachDB on Windows, Linux, or Mac with a Single Executable | no dogma blog In a previous post I showed how to run CockroachDB locally using Docker, but there is an even easier way - run the executable for your operating system.
CSS Grid Areas A fresh look at the CSS grid template areas and how to take advantage of its full potential today.
Finding the command used to start a Docker container | no dogma blog I recently wanted to find the command I had run to start a Docker container, it is not as easy as it should be!
GenAI for Developers It's hard to imagine the year is nearly half over, and this is the first Blog post I have written. As someone who works in technology, you can imagine I have been buried in talks about Generative AI with customers. We spend a lot of time discussing d...
What's new in .NET Aspire 8.1 for cloud native developers! - .NET Blog Let's take a look at what is new with .NET Aspire 8.1 for building cloud native applications!
Protect your AWS Webservers from Port Scanning attacks When I started working with AWS a little over 8 years ago, one of the first things I did was set up a simple web server. Being a "Windows Guy," I created an EC2 instance running Windows Server, installed IIS, put it into a public subnet in the defaul...
Unquoted service paths: The new frontier in script kiddie security vulnerability reports - The Old New Thing Usually not exploitable, but the script kiddies don't know that.
Database Design for Google Calendar: a tutorial Author: Alexey Makhotkin squadette@gmail.com. Introduction In this database design tutorial (~9000 words) I’m going to show how to design the database tables for a real-world project of substantial complexity. We’ll design a clone of Google Calendar. We w...
July 2024 Update on Instability Reports on Intel Core 13th and 14th Gen Desktop Processors Based on extensive analysis of Intel Core 13th/14th Gen desktop processors returned to us due to instability issues, we have determined that elevated operating voltage is causing instability issues in some 13th/14th Gen desktop processors. Our analysis of...
GitHub - linuxmint/timeshift: System restore tool for Linux. Creates filesystem snapshots using rsync+hardlinks, or BTRFS snapshots. Supports scheduled snapshots, multiple backup levels, and exclude filters. Snapshots can be restored while system is running or from Live CD/USB. System restore tool for Linux. Creates filesystem snapshots using rsync+hardlinks, or BTRFS snapshots. Supports scheduled snapshots, multiple backup levels, and exclude filters. Snapshots can be re...
Add a SignalR hub to ASP.NET Core & connect using JavaScript Learn how to add a SignalR hub to an ASP.NET Core app and how to connect to it by using a WebSocket through JavaScript.
A quick look at large language models with Node.js, Podman desktop, and the Granite model | Red Hat Developer Explore large language models (LLMs) by trying out the Granite model on Podman AI Lab.
Web Styles in Native Apps Styles meant for web apps can be easily shared with native mobile/desktop apps—developers also have the flexibility to tinker with styling on the fly.
Overriding MSAL's HttpClient with IHttpClientFactory Increase the reliability of MSAL.NET with IHttpClientFactory, benefiting from automatic DNS lookup, TCP connection reuse, and HttpMessageHandler pipeline extensibility.
Stop a script when an error occurs in PowerShell - Gérald Barré In this post, I describe how to stop a PowerShell script when an error occurs using the $ErrorActionPreference and $PSNativeCommandUseErrorActionPreference variables