Blog Logo
TAGS

Role Based Authorization in Azure Functions with Azure AD and App Roles

In this article, Philipp Bauknecht explains how to limit access to restful APIs in Azure Functions with .NET Core by assigning users to app roles in Azure Active Directory. While discussing the drawba...

Read more...

Authenticate and authorize Static Web Apps

Azure Static Web Apps simplifies authentication with pre-configured providers like GitHub, Twitter, and Azure AD with no extra setup required. Learn about default behavior, custom providers, setting u...

Read more...

How to secure your Azure Functions

Azure Functions, a central part of Microsoft’s serverless offering, provides a lot of functionality to quickly develop and deploy code to your solution. In this blog post, Vidar Kongsli sheds some lig...

Read more...

Tagged Strings in Visual Studio and .NET 7

As part of .NET 7, developers now have the ability to tag strings using the StringSyntax attribute. These tags inform tools such as Visual Studio as to the nature of the string. Since StringSyntax is ...

Read more...

Tutorial: Create a React single-page app that uses auth code flow

In this tutorial, you will create a React single-page application that signs in users and calls Microsoft Graph API by using the authorization code flow with PKCE. You will use the Microsoft Authentic...

Read more...

Ben Goertzel: Artificial General Intelligence | Lex Fridman Podcast #103

Ben Goertzel: Artificial General Intelligence | Lex Fridman Podcast #103

Ben Goertzel is one of the most interesting minds in the artificial intelligence community. He is the founder of SingularityNET, designer of OpenCog AI framework, formerly a director of research at th...

Read more...

dagger.ioDagger 0.4: service containers, secrets scrubbing, and more

Dagger is a programmable CI/CD engine that runs your pipelines in containers. Develop your pipelines as code, in the same programming language as your application. Choose your SDK and start coding! Da...

Read more...

A from-scratch tour of Bitcoin in Python

In this blog post, Andrej Karpathy takes us on a tour of Bitcoin in Python. He explains how blockchain extends open source software development to open source + state, and how Bitcoin represents value...

Read more...

C# 11 and .NET 7 Bring Generic Parsing

Before C# 11 and .NET 7, there was no way to create an interface that accommodated static Parse function. The introduction of Static Abstract Methods in interfaces feature now makes it possible. The I...

Read more...

C# Support in Fleet Public Preview

Recently, JetBrains launched the Public Preview for Fleet - a new distributed polyglot editor and IDE which supports multiple programming languages. This JSON structure focuses on C# support in Fleet,...

Read more...

AWS Announces Native AOT Tooling Support for .NET Applications on AWS Lambda

Today, AWS announced the general availability of tooling support to build and deploy native AOT compiled .NET 7 applications on AWS Lambda. Native AOT allows .NET applications to be pre-compiled to a ...

Read more...

Azure Functions: Timeout value of 00:05:00 exceeded by function

When running Azure functions, if the function is timed out, an error is encountered. By default, Azure function timeouts in 5 minutes. The maximum for consumption plan is 10 minutes. To avoid time-out...

Read more...

Bye bye Azure Functions, Hello Azure Container Apps: Introduction

Azure Functions have been a good choice for asynchronous and reactive workloads, but have significant drawbacks when building HTTP APIs, notably cold start times. Azure Container Apps provide an alter...

Read more...

Dapr and Azure Functions: Part 1 – Hello World

This series of articles explores how to build Functions based microservices running in Dapr. The goal is to help folks new to Docker and containers better understand what’s happening under the hood wi...

Read more...

Dealing With Unprocessed Storage Queue Poison Messages in Azure Functions

If an Azure Function that is triggered by a message on a Storage Queue throws an exception, the message will automatically be returned to the queue and retried again in the future. In addition to spec...

Read more...

Why we ditched GraphQL for tRPC

At Echobind, were always looking for ways to improve our processes. After trying out tRPC, weve decided to adopt it as the official API layer for Bison. Both tRPC and GraphQL serve the same purpose of...

Read more...

Stephen Wolfram: Fundamental Theory of Physics, Life, and the Universe | Lex Fridman Podcast #124

Stephen Wolfram: Fundamental Theory of Physics, Life, and the Universe | Lex Fridman Podcast #124

Stephen Wolfram is a computer scientist, mathematician, and theoretical physicist. Please check out our sponsors to get a discount and to support this podcast: - SimpliSafe: https://simplisafe.com/lex...

Read more...

LinqGen - Optimize Linq Queries using Source Generation

LinqGen is a library that optimizes Linq queries using source generation of user code. It aims to create allocation-free, specialized Linq queries per your type. The library can be installed from NuGe...

Read more...

Securing Azure Functions using certificate authentication

Learn how to secure your Azure Functions using X509 certificates in this comprehensive guide. The article walks you through the process of setting up the Azure Function to require certificates and the...

Read more...

Twitter clone built in Next.js + TypeScript + Tailwind CSS using Cloud Firestore and Storage

![](/.github/assets/presentation.png) A Twitter clone built in Next.js, TypeScript, and Tailwind CSS, utilizing Cloud Firestore for data storage and Cloud Storage for storing uploaded images. Features...

Read more...