Explore my Pulumi workshop for Infrastructure as Code and Azure enthusiasts. This lab, available on this GitHub repository👉 buff.ly/3A8gukM, provides self-paced learning with TypeScript, C#, and Python code solutions.
#IaC#InfrastructureasCode#pulumi#devops#azure
I'm thrilled to unveil Nuxt UI v3-alpha to the world! 🚀
✨ Completely rebuilt from the ground up
🎨 Powered by Tailwind CSS v4-alpha
🧩 Integrated with Radix Vue for accessible primitives
🔧 Enhanced with Tailwind Variants for flexible styling
ui3.nuxt.dev/
Aspire 9 upcoming features 🧵:
First, you'll be able to use Aspire 9 with .NET 8 and .NET 9! It will no longer require a call to dotnet workload install, and instead uses an MSBuild SDK. This should simplify CI/CD integration and getting started immensely! All you need is NuGet!
#dotnet#aspire
@glaforge I came across a blog post (teckbootcamps.com/learn-text…) which seems to be a plagiarism of your article "Text classification with Gemini and LangChain4j". An AI may have been used to reformulate some words but it's the same article otherwise.
I've just published a new blog post on using any Terraform provider in Pulumi, featuring a hands-on guide with the Netlify provider! 🌐✨
Check it out and learn how to generate a local Pulumi SDK from any Terraform or OpenTofu provider! 💻🔧
Read more: buff.ly/47BAAQE
💡Tip of the day for developers working on APIs for mobile applications or webhooks:
Microsoft Dev Tunnels tool allows you to securely expose your localhost to the internet
🚀Introducing Pulumi Insights 2.0! Get asset management, compliance remediation, resource visualizations, and AI insights over any infrastructure. 🧵
hubs.ly/Q02QjmPb0
Pulumi ESC is very convenient. I like the ability to retrieve short cloud access tokens using OpenID Connect. Combined with Pulumi IaC, managing your stack configuration becomes as simple as importing an ESC Environment.
🚀Introducing Pulumi ESC! Centralized secrets management & orchestration. Tame secrets sprawl and configuration complexity securely across all your cloud infrastructure and applications. 🧵
Learn more at hubs.ly/Q02QhZGw0
Even when applying DRY principle, we frequently copy bits of code so:
💡Tip of the day to find a piece of code previously copy-pasted into your IDE 👇
Most IDEs have a history of your clipboard, allowing you to find code pasted a while ago.
#productivity#tipoftheday
➡️ In JetBrains IDEs and in Visual Studio it's called Clipboard history/ring and you can use the shortcut Ctrl Shift V (Windows)
➡️ If you're on Windows, there's a built-in clipboard history (Windows V) that can be combined with the utility Advanced Paste from Power Toys
💡Today's tip if you work on Windows and start your day by always opening the same applications:
Microsoft Power Toys' Workspaces utility lets you launch a set of applications in predefined locations with a single click.
➡️It works very well with Fancy Zones to quickly have your applications positioned in their usual place on your screen(s)
➡️You can define multiple workspaces to switch easily from one work configuration to another (particularly handy if you have various setups)
Today's tip for debugging your Azure Functions locally without an HTTP trigger:
You can still trigger your function with a POST request 😉
➡️ request format: POST hostname/admin/functions/functionName
➡️ the request body: { “input”: “<TRIGGER_INPUT>” }
👉 It also works to run an Activity Function if you use Durable Functions
👉 It also works to run an Azure Function deployed under Azure, but you'll need an “x-functions-key” header as well
👉 You can store these requests in HTTP files in your git repo and run them from your IDE